From 946134b0ff303a1b44ae1ce5e3dcde7bfd8febcc Mon Sep 17 00:00:00 2001 From: Joona Petrell Date: Tue, 27 Apr 2010 19:06:32 +1000 Subject: Setting conflicting anchors to items inside positioners should print a warning Task-number: QTBUG-9025 Reviewed-by: Martin Jones --- .../tst_qdeclarativepositioners.cpp | 72 ++++++++++++++++++++++ 1 file changed, 72 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativepositioners/tst_qdeclarativepositioners.cpp b/tests/auto/declarative/qdeclarativepositioners/tst_qdeclarativepositioners.cpp index b4ac0e14bd..8dc1416215 100644 --- a/tests/auto/declarative/qdeclarativepositioners/tst_qdeclarativepositioners.cpp +++ b/tests/auto/declarative/qdeclarativepositioners/tst_qdeclarativepositioners.cpp @@ -41,6 +41,7 @@ #include #include #include +#include #include #include #include @@ -69,6 +70,7 @@ private slots: void test_repeater(); void test_flow(); void test_flow_resize(); + void test_conflictinganchors(); private: QDeclarativeView *createView(const QString &filename); }; @@ -620,6 +622,76 @@ void tst_QDeclarativePositioners::test_flow_resize() QCOMPARE(five->y(), 50.0); } +QString warningMessage; + +void interceptWarnings(QtMsgType type, const char *msg) +{ + Q_UNUSED( type ); + warningMessage = msg; +} + +void tst_QDeclarativePositioners::test_conflictinganchors() +{ + qInstallMsgHandler(interceptWarnings); + QDeclarativeEngine engine; + QDeclarativeComponent component(&engine); + + component.setData("import Qt 4.7\nColumn { Item {} }", QUrl::fromLocalFile("")); + QDeclarativeItem *item = qobject_cast(component.create()); + QVERIFY(item); + QVERIFY(warningMessage.isEmpty()); + + component.setData("import Qt 4.7\nRow { Item {} }", QUrl::fromLocalFile("")); + item = qobject_cast(component.create()); + QVERIFY(item); + QVERIFY(warningMessage.isEmpty()); + + component.setData("import Qt 4.7\nGrid { Item {} }", QUrl::fromLocalFile("")); + item = qobject_cast(component.create()); + QVERIFY(item); + QVERIFY(warningMessage.isEmpty()); + + component.setData("import Qt 4.7\nFlow { Item {} }", QUrl::fromLocalFile("")); + item = qobject_cast(component.create()); + QVERIFY(item); + QVERIFY(warningMessage.isEmpty()); + + component.setData("import Qt 4.7\nColumn { Item { anchors.top: parent.top } }", QUrl::fromLocalFile("")); + item = qobject_cast(component.create()); + QVERIFY(item); + QCOMPARE(warningMessage, QString("file::2:1: QML Column: Cannot specify top, bottom or verticalCenter anchors for items inside Column")); + warningMessage.clear(); + + component.setData("import Qt 4.7\nColumn { Item { anchors.left: parent.left } }", QUrl::fromLocalFile("")); + item = qobject_cast(component.create()); + QVERIFY(item); + QVERIFY(warningMessage.isEmpty()); + warningMessage.clear(); + + component.setData("import Qt 4.7\nRow { Item { anchors.left: parent.left } }", QUrl::fromLocalFile("")); + item = qobject_cast(component.create()); + QVERIFY(item); + QCOMPARE(warningMessage, QString("file::2:1: QML Row: Cannot specify left, right or horizontalCenter anchors for items inside Row")); + warningMessage.clear(); + + component.setData("import Qt 4.7\nRow { Item { anchors.top: parent.top } }", QUrl::fromLocalFile("")); + item = qobject_cast(component.create()); + QVERIFY(item); + QVERIFY(warningMessage.isEmpty()); + warningMessage.clear(); + + component.setData("import Qt 4.7\nGrid { Item { anchors.horizontalCenter: parent.horizontalCenter } }", QUrl::fromLocalFile("")); + item = qobject_cast(component.create()); + QVERIFY(item); + QCOMPARE(warningMessage, QString("file::2:1: QML Grid: Cannot specify anchors for items inside Grid")); + warningMessage.clear(); + + component.setData("import Qt 4.7\nFlow { Item { anchors.verticalCenter: parent.verticalCenter } }", QUrl::fromLocalFile("")); + item = qobject_cast(component.create()); + QVERIFY(item); + QCOMPARE(warningMessage, QString("file::2:1: QML Flow: Cannot specify anchors for items inside Flow")); +} + QDeclarativeView *tst_QDeclarativePositioners::createView(const QString &filename) { QDeclarativeView *canvas = new QDeclarativeView(0); -- cgit v1.2.1 From 07bbd16e98a24ccc22804c3766d15f9da406107a Mon Sep 17 00:00:00 2001 From: Joona Petrell Date: Tue, 27 Apr 2010 19:11:18 +1000 Subject: Delete canvas after use in positioner unit tests Task-number: Reviewed-by: Martin Jones --- .../tst_qdeclarativepositioners.cpp | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativepositioners/tst_qdeclarativepositioners.cpp b/tests/auto/declarative/qdeclarativepositioners/tst_qdeclarativepositioners.cpp index 8dc1416215..7a2377305a 100644 --- a/tests/auto/declarative/qdeclarativepositioners/tst_qdeclarativepositioners.cpp +++ b/tests/auto/declarative/qdeclarativepositioners/tst_qdeclarativepositioners.cpp @@ -102,6 +102,8 @@ void tst_QDeclarativePositioners::test_horizontal() QDeclarativeItem *row = canvas->rootObject()->findChild("row"); QCOMPARE(row->width(), 110.0); QCOMPARE(row->height(), 50.0); + + delete canvas; } void tst_QDeclarativePositioners::test_horizontal_spacing() @@ -127,6 +129,8 @@ void tst_QDeclarativePositioners::test_horizontal_spacing() QDeclarativeItem *row = canvas->rootObject()->findChild("row"); QCOMPARE(row->width(), 130.0); QCOMPARE(row->height(), 50.0); + + delete canvas; } void tst_QDeclarativePositioners::test_horizontal_animated() @@ -177,6 +181,8 @@ void tst_QDeclarativePositioners::test_horizontal_animated() QTRY_COMPARE(two->x(), 50.0); QTRY_COMPARE(three->x(), 100.0); + + delete canvas; } void tst_QDeclarativePositioners::test_vertical() @@ -203,6 +209,8 @@ void tst_QDeclarativePositioners::test_vertical() QVERIFY(column); QCOMPARE(column->height(), 80.0); QCOMPARE(column->width(), 50.0); + + delete canvas; } void tst_QDeclarativePositioners::test_vertical_spacing() @@ -228,6 +236,8 @@ void tst_QDeclarativePositioners::test_vertical_spacing() QDeclarativeItem *column = canvas->rootObject()->findChild("column"); QCOMPARE(column->height(), 100.0); QCOMPARE(column->width(), 50.0); + + delete canvas; } void tst_QDeclarativePositioners::test_vertical_animated() @@ -275,6 +285,7 @@ void tst_QDeclarativePositioners::test_vertical_animated() QTRY_COMPARE(two->y(), 50.0); QTRY_COMPARE(three->y(), 100.0); + delete canvas; } void tst_QDeclarativePositioners::test_grid() @@ -306,6 +317,8 @@ void tst_QDeclarativePositioners::test_grid() QDeclarativeItem *grid = canvas->rootObject()->findChild("grid"); QCOMPARE(grid->width(), 120.0); QCOMPARE(grid->height(), 100.0); + + delete canvas; } void tst_QDeclarativePositioners::test_grid_topToBottom() @@ -337,6 +350,8 @@ void tst_QDeclarativePositioners::test_grid_topToBottom() QDeclarativeItem *grid = canvas->rootObject()->findChild("grid"); QCOMPARE(grid->width(), 100.0); QCOMPARE(grid->height(), 120.0); + + delete canvas; } void tst_QDeclarativePositioners::test_grid_spacing() @@ -368,6 +383,8 @@ void tst_QDeclarativePositioners::test_grid_spacing() QDeclarativeItem *grid = canvas->rootObject()->findChild("grid"); QCOMPARE(grid->width(), 128.0); QCOMPARE(grid->height(), 104.0); + + delete canvas; } void tst_QDeclarativePositioners::test_grid_animated() @@ -448,6 +465,7 @@ void tst_QDeclarativePositioners::test_grid_animated() QTRY_COMPARE(five->x(), 50.0); QTRY_COMPARE(five->y(), 50.0); + delete canvas; } void tst_QDeclarativePositioners::test_grid_zero_columns() @@ -479,6 +497,8 @@ void tst_QDeclarativePositioners::test_grid_zero_columns() QDeclarativeItem *grid = canvas->rootObject()->findChild("grid"); QCOMPARE(grid->width(), 170.0); QCOMPARE(grid->height(), 60.0); + + delete canvas; } void tst_QDeclarativePositioners::test_propertychanges() @@ -536,6 +556,8 @@ void tst_QDeclarativePositioners::test_propertychanges() grid->setRows(2); QCOMPARE(columnsSpy.count(),2); QCOMPARE(rowsSpy.count(),2); + + delete canvas; } void tst_QDeclarativePositioners::test_repeater() @@ -557,6 +579,8 @@ void tst_QDeclarativePositioners::test_repeater() QCOMPARE(two->y(), 0.0); QCOMPARE(three->x(), 100.0); QCOMPARE(three->y(), 0.0); + + delete canvas; } void tst_QDeclarativePositioners::test_flow() @@ -589,6 +613,8 @@ void tst_QDeclarativePositioners::test_flow() QVERIFY(flow); QCOMPARE(flow->width(), 90.0); QCOMPARE(flow->height(), 120.0); + + delete canvas; } void tst_QDeclarativePositioners::test_flow_resize() @@ -620,6 +646,8 @@ void tst_QDeclarativePositioners::test_flow_resize() QCOMPARE(four->y(), 50.0); QCOMPARE(five->x(), 50.0); QCOMPARE(five->y(), 50.0); + + delete canvas; } QString warningMessage; -- cgit v1.2.1 From 2489ac6515d6ae5a403974e151b9a6cba4a3ea3f Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Wed, 28 Apr 2010 14:43:56 +1000 Subject: Don't unnecessarily regenerate property cache Improves compilation:boomblock benchmark by 22% --- tests/auto/declarative/qdeclarativedom/tst_qdeclarativedom.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativedom/tst_qdeclarativedom.cpp b/tests/auto/declarative/qdeclarativedom/tst_qdeclarativedom.cpp index a951827569..6c195668a7 100644 --- a/tests/auto/declarative/qdeclarativedom/tst_qdeclarativedom.cpp +++ b/tests/auto/declarative/qdeclarativedom/tst_qdeclarativedom.cpp @@ -419,10 +419,8 @@ void tst_qdeclarativedom::loadSyntaxErrors() void tst_qdeclarativedom::loadRemoteErrors() { QByteArray qml = "import Qt 4.7\n" + "import \"http://localhost/exampleQmlScript.js\" as Script\n" "Item {\n" - " Script {\n" - " source: \"http://localhost/exampleQmlScript.js\"" - " }\n" "}"; QDeclarativeDomDocument document; QVERIFY(false == document.load(&engine, qml)); -- cgit v1.2.1 From 1e39096b259ff7979986911bf71f868edceec547 Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Wed, 28 Apr 2010 14:54:09 +1000 Subject: Don't test snippets with C++ components --- tests/auto/declarative/examples/tst_examples.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/examples/tst_examples.cpp b/tests/auto/declarative/examples/tst_examples.cpp index 16b0cbefdb..058fda1729 100644 --- a/tests/auto/declarative/examples/tst_examples.cpp +++ b/tests/auto/declarative/examples/tst_examples.cpp @@ -89,6 +89,8 @@ tst_examples::tst_examples() excludedDirs << "examples/declarative/imageprovider"; excludedDirs << "demos/declarative/minehunt"; + excludedDirs << "doc/src/snippets/declarative/graphicswidgets"; + #ifdef QT_NO_WEBKIT excludedDirs << "examples/declarative/webview"; excludedDirs << "demos/declarative/webbrowser"; -- cgit v1.2.1 From c7e48e0ff2b49856e62379845731defd21d2134c Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Thu, 29 Apr 2010 09:55:46 +1000 Subject: Ignore QWS verbosity. --- .../declarative/qdeclarativefontloader/tst_qdeclarativefontloader.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativefontloader/tst_qdeclarativefontloader.cpp b/tests/auto/declarative/qdeclarativefontloader/tst_qdeclarativefontloader.cpp index 36908d9143..dc9c2b28db 100644 --- a/tests/auto/declarative/qdeclarativefontloader/tst_qdeclarativefontloader.cpp +++ b/tests/auto/declarative/qdeclarativefontloader/tst_qdeclarativefontloader.cpp @@ -122,6 +122,9 @@ void tst_qdeclarativefontloader::failLocalFont() { QString componentStr = "import Qt 4.7\nFontLoader { source: \"" + QUrl::fromLocalFile(SRCDIR "/data/dummy.ttf").toString() + "\" }"; QTest::ignoreMessage(QtWarningMsg, QString("file::2:1: QML FontLoader: Cannot load font: \"" + QUrl::fromLocalFile(SRCDIR "/data/dummy.ttf").toString() + "\"").toUtf8().constData()); +#ifdef Q_WS_QWS + QTest::ignoreMessage(QtDebugMsg, QString("FT_New_Face failed with index 0 : 51 ").toLatin1()); +#endif QDeclarativeComponent component(&engine); component.setData(componentStr.toLatin1(), QUrl::fromLocalFile("")); QDeclarativeFontLoader *fontObject = qobject_cast(component.create()); -- cgit v1.2.1 From efab34ea95560db007b1a75cce63cf8f6431a683 Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Thu, 29 Apr 2010 09:56:53 +1000 Subject: Additional Behavior test + text fixes. --- .../qdeclarativebehaviors/data/startup2.qml | 16 ++++++ .../tst_qdeclarativebehaviors.cpp | 65 ++++++++++++++-------- 2 files changed, 58 insertions(+), 23 deletions(-) create mode 100644 tests/auto/declarative/qdeclarativebehaviors/data/startup2.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/startup2.qml b/tests/auto/declarative/qdeclarativebehaviors/data/startup2.qml new file mode 100644 index 0000000000..1911cc4eb5 --- /dev/null +++ b/tests/auto/declarative/qdeclarativebehaviors/data/startup2.qml @@ -0,0 +1,16 @@ +import Qt 4.7 + +Rectangle { + width: 800; + height: 480; + + Text { id:theText; text: "hello world" } + + Rectangle { + objectName: "innerRect" + color: "red" + x: theText.width + Behavior on x { NumberAnimation {} } + width: 100; height: 100 + } +} diff --git a/tests/auto/declarative/qdeclarativebehaviors/tst_qdeclarativebehaviors.cpp b/tests/auto/declarative/qdeclarativebehaviors/tst_qdeclarativebehaviors.cpp index ee9e282fbb..5e0c9d5890 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/tst_qdeclarativebehaviors.cpp +++ b/tests/auto/declarative/qdeclarativebehaviors/tst_qdeclarativebehaviors.cpp @@ -43,6 +43,7 @@ #include #include #include +#include #include #include #include "../../../shared/util.h" @@ -230,11 +231,11 @@ void tst_qdeclarativebehaviors::emptyBehavior() QDeclarativeEngine engine; QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/empty.qml")); QDeclarativeRectangle *rect = qobject_cast(c.create()); - QTRY_VERIFY(rect); + QVERIFY(rect); rect->setState("moved"); qreal x = qobject_cast(rect->findChild("MyRect"))->x(); - QTRY_COMPARE(x, qreal(200)); //should change immediately + QCOMPARE(x, qreal(200)); //should change immediately delete rect; } @@ -244,7 +245,7 @@ void tst_qdeclarativebehaviors::explicitSelection() QDeclarativeEngine engine; QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/explicit.qml")); QDeclarativeRectangle *rect = qobject_cast(c.create()); - QTRY_VERIFY(rect); + QVERIFY(rect); rect->setState("moved"); QTRY_VERIFY(qobject_cast(rect->findChild("MyRect"))->x() > 0); @@ -259,11 +260,11 @@ void tst_qdeclarativebehaviors::nonSelectingBehavior() QDeclarativeEngine engine; QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/nonSelecting2.qml")); QDeclarativeRectangle *rect = qobject_cast(c.create()); - QTRY_VERIFY(rect); + QVERIFY(rect); rect->setState("moved"); qreal x = qobject_cast(rect->findChild("MyRect"))->x(); - QTRY_COMPARE(x, qreal(200)); //should change immediately + QCOMPARE(x, qreal(200)); //should change immediately delete rect; } @@ -275,10 +276,9 @@ void tst_qdeclarativebehaviors::reassignedAnimation() QString warning = QUrl::fromLocalFile(SRCDIR "/data/reassignedAnimation.qml").toString() + ":9:9: QML Behavior: Cannot change the animation assigned to a Behavior."; QTest::ignoreMessage(QtWarningMsg, qPrintable(warning)); QDeclarativeRectangle *rect = qobject_cast(c.create()); - QTRY_VERIFY(rect); - QTRY_COMPARE(qobject_cast( - qobject_cast( - rect->findChild("MyBehavior"))->animation())->duration(), 200); + QVERIFY(rect); + QCOMPARE(qobject_cast( + rect->findChild("MyBehavior")->animation())->duration(), 200); delete rect; } @@ -288,12 +288,12 @@ void tst_qdeclarativebehaviors::disabled() QDeclarativeEngine engine; QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/disabled.qml")); QDeclarativeRectangle *rect = qobject_cast(c.create()); - QTRY_VERIFY(rect); - QTRY_COMPARE(rect->findChild("MyBehavior")->enabled(), false); + QVERIFY(rect); + QCOMPARE(rect->findChild("MyBehavior")->enabled(), false); rect->setState("moved"); qreal x = qobject_cast(rect->findChild("MyRect"))->x(); - QTRY_COMPARE(x, qreal(200)); //should change immediately + QCOMPARE(x, qreal(200)); //should change immediately delete rect; } @@ -307,28 +307,47 @@ void tst_qdeclarativebehaviors::dontStart() QString warning = c.url().toString() + ":13:13: QML NumberAnimation: setRunning() cannot be used on non-root animation nodes."; QTest::ignoreMessage(QtWarningMsg, qPrintable(warning)); QDeclarativeRectangle *rect = qobject_cast(c.create()); - QTRY_VERIFY(rect); + QVERIFY(rect); QDeclarativeAbstractAnimation *myAnim = rect->findChild("MyAnim"); - QTRY_VERIFY(myAnim && myAnim->qtAnimation()); - QTRY_VERIFY(myAnim->qtAnimation()->state() == QAbstractAnimation::Stopped); + QVERIFY(myAnim && myAnim->qtAnimation()); + QVERIFY(myAnim->qtAnimation()->state() == QAbstractAnimation::Stopped); delete rect; } void tst_qdeclarativebehaviors::startup() { - QDeclarativeEngine engine; - QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/startup.qml")); - QDeclarativeRectangle *rect = qobject_cast(c.create()); - QTRY_VERIFY(rect); + { + QDeclarativeEngine engine; + QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/startup.qml")); + QDeclarativeRectangle *rect = qobject_cast(c.create()); + QVERIFY(rect); - QDeclarativeRectangle *innerRect = rect->findChild("innerRect"); - QTRY_VERIFY(innerRect); + QDeclarativeRectangle *innerRect = rect->findChild("innerRect"); + QVERIFY(innerRect); - QTRY_COMPARE(innerRect->x(), qreal(100)); //should be set immediately + QCOMPARE(innerRect->x(), qreal(100)); //should be set immediately - delete rect; + delete rect; + } + + { + QDeclarativeEngine engine; + QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/startup2.qml")); + QDeclarativeRectangle *rect = qobject_cast(c.create()); + QVERIFY(rect); + + QDeclarativeRectangle *innerRect = rect->findChild("innerRect"); + QVERIFY(innerRect); + + QDeclarativeText *text = rect->findChild(); + QVERIFY(text); + + QCOMPARE(innerRect->x(), text->width()); //should be set immediately + + delete rect; + } } QTEST_MAIN(tst_qdeclarativebehaviors) -- cgit v1.2.1 From 44708167042e95ab4b5cfef8a19a9ab4f9484a71 Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Thu, 29 Apr 2010 10:31:18 +1000 Subject: Stricter (but controllable) error reporting on Connections signal-name error. And test. --- .../tst_qdeclarativeconnection.cpp | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeconnection/tst_qdeclarativeconnection.cpp b/tests/auto/declarative/qdeclarativeconnection/tst_qdeclarativeconnection.cpp index 0efae3b9d2..00e97caa30 100644 --- a/tests/auto/declarative/qdeclarativeconnection/tst_qdeclarativeconnection.cpp +++ b/tests/auto/declarative/qdeclarativeconnection/tst_qdeclarativeconnection.cpp @@ -59,6 +59,8 @@ private slots: void connection(); void trimming(); void targetChanged(); + void unknownSignals_data(); + void unknownSignals(); private: QDeclarativeEngine engine; @@ -156,6 +158,41 @@ void tst_qdeclarativeconnection::targetChanged() delete item; } +void tst_qdeclarativeconnection::unknownSignals_data() +{ + QTest::addColumn("file"); + QTest::addColumn("error"); + + QTest::newRow("basic") << "connection-unknownsignals.qml" << ":6:5: QML Connections: Cannot assign to non-existent property \"onFooBar\""; + QTest::newRow("parent") << "connection-unknownsignals-parent.qml" << ":6:5: QML Connections: Cannot assign to non-existent property \"onFooBar\""; + QTest::newRow("ignored") << "connection-unknownsignals-ignored.qml" << ""; // should be NO error + QTest::newRow("notarget") << "connection-unknownsignals-notarget.qml" << ""; // should be NO error +} + +void tst_qdeclarativeconnection::unknownSignals() +{ + QFETCH(QString, file); + QFETCH(QString, error); + + QUrl url = QUrl::fromLocalFile(SRCDIR "/data/" + file); + if (!error.isEmpty()) { + QTest::ignoreMessage(QtWarningMsg, (url.toString() + error).toLatin1()); + } else { + // QTest has no way to insist no message (i.e. fail) + } + + QDeclarativeEngine engine; + QDeclarativeComponent c(&engine, url); + QDeclarativeItem *item = qobject_cast(c.create()); + QVERIFY(item != 0); + + // check that connection is created (they are all runtime errors) + QDeclarativeConnections *connections = item->findChild("connections"); + QVERIFY(connections); + + delete item; +} + QTEST_MAIN(tst_qdeclarativeconnection) #include "tst_qdeclarativeconnection.moc" -- cgit v1.2.1 From f5287ee035fe0c218de47b77038b881d9c857110 Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Thu, 29 Apr 2010 12:27:35 +1000 Subject: Suppress transient errors from bindings If a binding generates > 1 transient error, only the first was being suppressed. QTBUG-10274 --- .../qdeclarativeecmascript/data/transientErrors.2.qml | 14 ++++++++++++++ .../tst_qdeclarativeecmascript.cpp | 17 +++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.2.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.2.qml new file mode 100644 index 0000000000..a36b4c0849 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.2.qml @@ -0,0 +1,14 @@ +import Qt 4.7 + +QtObject { + id: root + + property variant a: 10 + property int x: 10 + property int test: a.x + + Component.onCompleted: { + a = 11; + a = root; + } +} diff --git a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp index 491a736d63..6cde46b4fd 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp +++ b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp @@ -1149,6 +1149,7 @@ static void transientErrorsMsgHandler(QtMsgType, const char *) // Check that transient binding errors are not displayed void tst_qdeclarativeecmascript::transientErrors() { + { QDeclarativeComponent component(&engine, TEST_FILE("transientErrors.qml")); transientErrorsMsgCount = 0; @@ -1160,6 +1161,22 @@ void tst_qdeclarativeecmascript::transientErrors() qInstallMsgHandler(old); QCOMPARE(transientErrorsMsgCount, 0); + } + + // One binding erroring multiple times, but then resolving + { + QDeclarativeComponent component(&engine, TEST_FILE("transientErrors.2.qml")); + + transientErrorsMsgCount = 0; + QtMsgHandler old = qInstallMsgHandler(transientErrorsMsgHandler); + + QObject *object = component.create(); + QVERIFY(object != 0); + + qInstallMsgHandler(old); + + QCOMPARE(transientErrorsMsgCount, 0); + } } // Check that errors during shutdown are minimized -- cgit v1.2.1 From 6e061ee6bd2f516e6ae6ed8035fe7afe5abd5566 Mon Sep 17 00:00:00 2001 From: Leonardo Sobral Cunha Date: Thu, 29 Apr 2010 14:23:49 +1000 Subject: Fix path view update on startX(Y) changes in qml Task-number: QTBUG-10290 Reviewed-by: Michael Brasser --- .../data/pathUpdateOnStartChanged.qml | 38 ++++++++++++++++++++++ .../tst_qdeclarativepathview.cpp | 23 +++++++++++++ 2 files changed, 61 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativepathview/data/pathUpdateOnStartChanged.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativepathview/data/pathUpdateOnStartChanged.qml b/tests/auto/declarative/qdeclarativepathview/data/pathUpdateOnStartChanged.qml new file mode 100644 index 0000000000..ce0f0c9aca --- /dev/null +++ b/tests/auto/declarative/qdeclarativepathview/data/pathUpdateOnStartChanged.qml @@ -0,0 +1,38 @@ +import Qt 4.7 + +Rectangle { + width: 800 + height: 480 + color: "black" + resources: [ + ListModel { + id: appModel + ListElement { color: "green" } + }, + Component { + id: appDelegate + Rectangle { + id: wrapper + objectName: "wrapper" + color: "green" + width: 100 + height: 100 + } + } + ] + PathView { + id: pathView + objectName: "pathView" + model: appModel + anchors.fill: parent + + transformOrigin: "Top" + delegate: appDelegate + path: Path { + objectName: "path" + startX: pathView.width / 2 // startX: 400 <- this works as expected + startY: 300 + PathLine { x: 400; y: 120 } + } + } +} diff --git a/tests/auto/declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp b/tests/auto/declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp index 0e3a74d172..c32e9ccfc2 100644 --- a/tests/auto/declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp +++ b/tests/auto/declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp @@ -77,6 +77,7 @@ private slots: void pathChanges(); void componentChanges(); void modelChanges(); + void pathUpdateOnStartChanged(); private: @@ -672,6 +673,28 @@ void tst_QDeclarativePathView::modelChanges() delete canvas; } +void tst_QDeclarativePathView::pathUpdateOnStartChanged() +{ + QDeclarativeView *canvas = createView(); + QVERIFY(canvas); + canvas->setSource(QUrl::fromLocalFile(SRCDIR "/data/pathUpdateOnStartChanged.qml")); + + QDeclarativePathView *pathView = canvas->rootObject()->findChild("pathView"); + QVERIFY(pathView); + + QDeclarativePath *path = canvas->rootObject()->findChild("path"); + QVERIFY(path); + QCOMPARE(path->startX(), 400.0); + QCOMPARE(path->startY(), 300.0); + + QDeclarativeItem *item = findItem(pathView, "wrapper", 0); + QVERIFY(item); + QCOMPARE(item->x(), path->startX() - item->width() / 2.0); + QCOMPARE(item->y(), path->startY() - item->height() / 2.0); + + delete canvas; +} + QDeclarativeView *tst_QDeclarativePathView::createView() { QDeclarativeView *canvas = new QDeclarativeView(0); -- cgit v1.2.1 From 4eb2e50b97a9933ab249517aa42cce9b3b4115e2 Mon Sep 17 00:00:00 2001 From: Alexis Menard Date: Thu, 29 Apr 2010 08:20:25 +0200 Subject: Mark some properties in QDeclarativeItem as private properties. QDeclarativeItem will be public, all properties that are relaying on private types must be private too. Reviewed-by:akennedy --- .../tst_qdeclarativeanchors.cpp | 53 +++-- .../tst_qdeclarativeanimations.cpp | 21 +- .../tst_qdeclarativebehaviors.cpp | 25 ++- .../qdeclarativestates/tst_qdeclarativestates.cpp | 241 +++++++++++---------- 4 files changed, 181 insertions(+), 159 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeanchors/tst_qdeclarativeanchors.cpp b/tests/auto/declarative/qdeclarativeanchors/tst_qdeclarativeanchors.cpp index dff62c77c5..e169fa2116 100644 --- a/tests/auto/declarative/qdeclarativeanchors/tst_qdeclarativeanchors.cpp +++ b/tests/auto/declarative/qdeclarativeanchors/tst_qdeclarativeanchors.cpp @@ -48,6 +48,7 @@ #include #include #include +#include Q_DECLARE_METATYPE(QDeclarativeAnchors::Anchor) Q_DECLARE_METATYPE(QDeclarativeAnchorLine::AnchorLine) @@ -376,15 +377,16 @@ void tst_qdeclarativeanchors::reset() anchor.anchorLine = anchorLine; QDeclarativeItem *item = new QDeclarativeItem; + QDeclarativeItemPrivate *itemPrivate = QDeclarativeItemPrivate::get(item); - const QMetaObject *meta = item->anchors()->metaObject(); + const QMetaObject *meta = itemPrivate->anchors()->metaObject(); QMetaProperty p = meta->property(meta->indexOfProperty(side.toUtf8().constData())); - QVERIFY(p.write(item->anchors(), qVariantFromValue(anchor))); - QCOMPARE(item->anchors()->usedAnchors().testFlag(usedAnchor), true); + QVERIFY(p.write(itemPrivate->anchors(), qVariantFromValue(anchor))); + QCOMPARE(itemPrivate->anchors()->usedAnchors().testFlag(usedAnchor), true); - QVERIFY(p.reset(item->anchors())); - QCOMPARE(item->anchors()->usedAnchors().testFlag(usedAnchor), false); + QVERIFY(p.reset(itemPrivate->anchors())); + QCOMPARE(itemPrivate->anchors()->usedAnchors().testFlag(usedAnchor), false); delete item; delete baseItem; @@ -410,18 +412,19 @@ void tst_qdeclarativeanchors::resetConvenience() { QDeclarativeItem *baseItem = new QDeclarativeItem; QDeclarativeItem *item = new QDeclarativeItem; + QDeclarativeItemPrivate *itemPrivate = QDeclarativeItemPrivate::get(item); //fill - item->anchors()->setFill(baseItem); - QVERIFY(item->anchors()->fill() == baseItem); - item->anchors()->resetFill(); - QVERIFY(item->anchors()->fill() == 0); + itemPrivate->anchors()->setFill(baseItem); + QVERIFY(itemPrivate->anchors()->fill() == baseItem); + itemPrivate->anchors()->resetFill(); + QVERIFY(itemPrivate->anchors()->fill() == 0); //centerIn - item->anchors()->setCenterIn(baseItem); - QVERIFY(item->anchors()->centerIn() == baseItem); - item->anchors()->resetCenterIn(); - QVERIFY(item->anchors()->centerIn() == 0); + itemPrivate->anchors()->setCenterIn(baseItem); + QVERIFY(itemPrivate->anchors()->centerIn() == baseItem); + itemPrivate->anchors()->resetCenterIn(); + QVERIFY(itemPrivate->anchors()->centerIn() == 0); delete item; delete baseItem; @@ -433,12 +436,13 @@ void tst_qdeclarativeanchors::nullItem() QDeclarativeAnchorLine anchor; QDeclarativeItem *item = new QDeclarativeItem; + QDeclarativeItemPrivate *itemPrivate = QDeclarativeItemPrivate::get(item); - const QMetaObject *meta = item->anchors()->metaObject(); + const QMetaObject *meta = itemPrivate->anchors()->metaObject(); QMetaProperty p = meta->property(meta->indexOfProperty(side.toUtf8().constData())); QTest::ignoreMessage(QtWarningMsg, ": QML Item: Cannot anchor to a null item."); - QVERIFY(p.write(item->anchors(), qVariantFromValue(anchor))); + QVERIFY(p.write(itemPrivate->anchors(), qVariantFromValue(anchor))); delete item; } @@ -486,15 +490,16 @@ void tst_qdeclarativeanchors::fill() qApp->processEvents(); QDeclarativeRectangle* rect = findItem(view->rootObject(), QLatin1String("filler")); + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); QCOMPARE(rect->x(), 0.0 + 10.0); QCOMPARE(rect->y(), 0.0 + 30.0); QCOMPARE(rect->width(), 200.0 - 10.0 - 20.0); QCOMPARE(rect->height(), 200.0 - 30.0 - 40.0); //Alter Offsets (tests QTBUG-6631) - rect->anchors()->setLeftMargin(20.0); - rect->anchors()->setRightMargin(0.0); - rect->anchors()->setBottomMargin(0.0); - rect->anchors()->setTopMargin(10.0); + rectPrivate->anchors()->setLeftMargin(20.0); + rectPrivate->anchors()->setRightMargin(0.0); + rectPrivate->anchors()->setBottomMargin(0.0); + rectPrivate->anchors()->setTopMargin(10.0); QCOMPARE(rect->x(), 0.0 + 20.0); QCOMPARE(rect->y(), 0.0 + 10.0); QCOMPARE(rect->width(), 200.0 - 20.0); @@ -509,11 +514,12 @@ void tst_qdeclarativeanchors::centerIn() qApp->processEvents(); QDeclarativeRectangle* rect = findItem(view->rootObject(), QLatin1String("centered")); + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); QCOMPARE(rect->x(), 75.0 + 10); QCOMPARE(rect->y(), 75.0 + 30); //Alter Offsets (tests QTBUG-6631) - rect->anchors()->setHorizontalCenterOffset(-20.0); - rect->anchors()->setVerticalCenterOffset(-10.0); + rectPrivate->anchors()->setHorizontalCenterOffset(-20.0); + rectPrivate->anchors()->setVerticalCenterOffset(-10.0); QCOMPARE(rect->x(), 75.0 - 20.0); QCOMPARE(rect->y(), 75.0 - 10.0); @@ -526,13 +532,14 @@ void tst_qdeclarativeanchors::margins() qApp->processEvents(); QDeclarativeRectangle* rect = findItem(view->rootObject(), QLatin1String("filler")); + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); QCOMPARE(rect->x(), 5.0); QCOMPARE(rect->y(), 6.0); QCOMPARE(rect->width(), 200.0 - 5.0 - 10.0); QCOMPARE(rect->height(), 200.0 - 6.0 - 10.0); - rect->anchors()->setTopMargin(0.0); - rect->anchors()->setMargins(20.0); + rectPrivate->anchors()->setTopMargin(0.0); + rectPrivate->anchors()->setMargins(20.0); QCOMPARE(rect->x(), 5.0); QCOMPARE(rect->y(), 20.0); diff --git a/tests/auto/declarative/qdeclarativeanimations/tst_qdeclarativeanimations.cpp b/tests/auto/declarative/qdeclarativeanimations/tst_qdeclarativeanimations.cpp index e217e3419b..ed7e5066f5 100644 --- a/tests/auto/declarative/qdeclarativeanimations/tst_qdeclarativeanimations.cpp +++ b/tests/auto/declarative/qdeclarativeanimations/tst_qdeclarativeanimations.cpp @@ -44,6 +44,7 @@ #include #include #include +#include #include #include @@ -324,7 +325,7 @@ void tst_qdeclarativeanimations::badTypes() QDeclarativeRectangle *rect = qobject_cast(c.create()); QVERIFY(rect); - rect->setState("state1"); + QDeclarativeItemPrivate::get(rect)->setState("state1"); QTest::qWait(1000 + 50); QDeclarativeRectangle *myRect = rect->findChild("MyRect"); QVERIFY(myRect); @@ -366,7 +367,7 @@ void tst_qdeclarativeanimations::mixedTypes() QDeclarativeRectangle *rect = qobject_cast(c.create()); QVERIFY(rect); - rect->setState("state1"); + QDeclarativeItemPrivate::get(rect)->setState("state1"); QTest::qWait(500); QDeclarativeRectangle *myRect = rect->findChild("MyRect"); QVERIFY(myRect); @@ -382,7 +383,7 @@ void tst_qdeclarativeanimations::mixedTypes() QDeclarativeRectangle *rect = qobject_cast(c.create()); QVERIFY(rect); - rect->setState("state1"); + QDeclarativeItemPrivate::get(rect)->setState("state1"); QTest::qWait(500); QDeclarativeRectangle *myRect = rect->findChild("MyRect"); QVERIFY(myRect); @@ -468,7 +469,7 @@ void tst_qdeclarativeanimations::propertiesTransition() QDeclarativeRectangle *rect = qobject_cast(c.create()); QVERIFY(rect); - rect->setState("moved"); + QDeclarativeItemPrivate::get(rect)->setState("moved"); QDeclarativeRectangle *myRect = rect->findChild("TheRect"); QVERIFY(myRect); QTest::qWait(waitDuration); @@ -483,7 +484,7 @@ void tst_qdeclarativeanimations::propertiesTransition() QDeclarativeRectangle *myRect = rect->findChild("TheRect"); QVERIFY(myRect); - rect->setState("moved"); + QDeclarativeItemPrivate::get(rect)->setState("moved"); QCOMPARE(myRect->x(),qreal(200)); QCOMPARE(myRect->y(),qreal(100)); QTest::qWait(waitDuration); @@ -498,7 +499,7 @@ void tst_qdeclarativeanimations::propertiesTransition() QDeclarativeRectangle *myRect = rect->findChild("TheRect"); QVERIFY(myRect); - rect->setState("moved"); + QDeclarativeItemPrivate::get(rect)->setState("moved"); QCOMPARE(myRect->x(),qreal(200)); QCOMPARE(myRect->y(),qreal(100)); } @@ -511,7 +512,7 @@ void tst_qdeclarativeanimations::propertiesTransition() QDeclarativeRectangle *myRect = rect->findChild("TheRect"); QVERIFY(myRect); - rect->setState("moved"); + QDeclarativeItemPrivate::get(rect)->setState("moved"); QCOMPARE(myRect->x(),qreal(100)); QTest::qWait(waitDuration); QTIMED_COMPARE(myRect->x(),qreal(200)); @@ -525,7 +526,7 @@ void tst_qdeclarativeanimations::propertiesTransition() QDeclarativeRectangle *myRect = rect->findChild("TheRect"); QVERIFY(myRect); - rect->setState("moved"); + QDeclarativeItemPrivate::get(rect)->setState("moved"); QCOMPARE(myRect->x(),qreal(100)); QTest::qWait(waitDuration); QTIMED_COMPARE(myRect->x(),qreal(200)); @@ -539,7 +540,7 @@ void tst_qdeclarativeanimations::propertiesTransition() QDeclarativeRectangle *myRect = rect->findChild("TheRect"); QVERIFY(myRect); - rect->setState("moved"); + QDeclarativeItemPrivate::get(rect)->setState("moved"); QCOMPARE(myRect->x(),qreal(100)); QTest::qWait(waitDuration); QTIMED_COMPARE(myRect->x(),qreal(100)); @@ -709,7 +710,7 @@ void tst_qdeclarativeanimations::rotation() QDeclarativeRectangle *rr3 = rect->findChild("rr3"); QDeclarativeRectangle *rr4 = rect->findChild("rr4"); - rect->setState("state1"); + QDeclarativeItemPrivate::get(rect)->setState("state1"); QTest::qWait(800); qreal r1 = rr->rotation(); qreal r2 = rr2->rotation(); diff --git a/tests/auto/declarative/qdeclarativebehaviors/tst_qdeclarativebehaviors.cpp b/tests/auto/declarative/qdeclarativebehaviors/tst_qdeclarativebehaviors.cpp index 5e0c9d5890..1dc4b533d8 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/tst_qdeclarativebehaviors.cpp +++ b/tests/auto/declarative/qdeclarativebehaviors/tst_qdeclarativebehaviors.cpp @@ -46,6 +46,7 @@ #include #include #include +#include #include "../../../shared/util.h" class tst_qdeclarativebehaviors : public QObject @@ -81,7 +82,7 @@ void tst_qdeclarativebehaviors::simpleBehavior() QTRY_VERIFY(rect); QTRY_VERIFY(qobject_cast(rect->findChild("MyBehavior"))->animation()); - rect->setState("moved"); + QDeclarativeItemPrivate::get(rect)->setState("moved"); QTRY_VERIFY(qobject_cast(rect->findChild("MyRect"))->x() > 0); QTRY_VERIFY(qobject_cast(rect->findChild("MyRect"))->x() < 200); //i.e. the behavior has been triggered @@ -129,7 +130,7 @@ void tst_qdeclarativebehaviors::loop() QTRY_VERIFY(rect); //don't crash - rect->setState("moved"); + QDeclarativeItemPrivate::get(rect)->setState("moved"); delete rect; } @@ -141,7 +142,7 @@ void tst_qdeclarativebehaviors::colorBehavior() QDeclarativeRectangle *rect = qobject_cast(c.create()); QTRY_VERIFY(rect); - rect->setState("red"); + QDeclarativeItemPrivate::get(rect)->setState("red"); QTRY_VERIFY(qobject_cast(rect->findChild("MyRect"))->color() != QColor("red")); QTRY_VERIFY(qobject_cast(rect->findChild("MyRect"))->color() != QColor("green")); //i.e. the behavior has been triggered @@ -156,7 +157,7 @@ void tst_qdeclarativebehaviors::parentBehavior() QDeclarativeRectangle *rect = qobject_cast(c.create()); QTRY_VERIFY(rect); - rect->setState("reparented"); + QDeclarativeItemPrivate::get(rect)->setState("reparented"); QTRY_VERIFY(rect->findChild("MyRect")->parentItem() != rect->findChild("NewParent")); QTRY_VERIFY(rect->findChild("MyRect")->parentItem() == rect->findChild("NewParent")); @@ -170,7 +171,7 @@ void tst_qdeclarativebehaviors::replaceBinding() QDeclarativeRectangle *rect = qobject_cast(c.create()); QTRY_VERIFY(rect); - rect->setState("moved"); + QDeclarativeItemPrivate::get(rect)->setState("moved"); QDeclarativeRectangle *innerRect = qobject_cast(rect->findChild("MyRect")); QTRY_VERIFY(innerRect); QTRY_VERIFY(innerRect->x() > 0); @@ -182,7 +183,7 @@ void tst_qdeclarativebehaviors::replaceBinding() rect->setProperty("movedx", 210); QTRY_COMPARE(innerRect->x(), (qreal)210); - rect->setState(""); + QDeclarativeItemPrivate::get(rect)->setState(""); QTRY_VERIFY(innerRect->x() > 10); QTRY_VERIFY(innerRect->x() < 210); //i.e. the behavior has been triggered QTRY_COMPARE(innerRect->x(), (qreal)10); @@ -202,7 +203,7 @@ void tst_qdeclarativebehaviors::group() QDeclarativeRectangle *rect = qobject_cast(c.create()); QTRY_VERIFY(rect); - rect->setState("moved"); + QDeclarativeItemPrivate::get(rect)->setState("moved"); //QTest::qWait(200); QTRY_VERIFY(qobject_cast(rect->findChild("MyRect"))->x() > 0); QTRY_VERIFY(qobject_cast(rect->findChild("MyRect"))->x() < 200); @@ -217,7 +218,7 @@ void tst_qdeclarativebehaviors::group() QDeclarativeRectangle *rect = qobject_cast(c.create()); QTRY_VERIFY(rect); - rect->setState("moved"); + QDeclarativeItemPrivate::get(rect)->setState("moved"); QTRY_VERIFY(qobject_cast(rect->findChild("MyRect"))->x() > 0); QTRY_VERIFY(qobject_cast(rect->findChild("MyRect"))->x() < 200); //i.e. the behavior has been triggered @@ -233,7 +234,7 @@ void tst_qdeclarativebehaviors::emptyBehavior() QDeclarativeRectangle *rect = qobject_cast(c.create()); QVERIFY(rect); - rect->setState("moved"); + QDeclarativeItemPrivate::get(rect)->setState("moved"); qreal x = qobject_cast(rect->findChild("MyRect"))->x(); QCOMPARE(x, qreal(200)); //should change immediately @@ -247,7 +248,7 @@ void tst_qdeclarativebehaviors::explicitSelection() QDeclarativeRectangle *rect = qobject_cast(c.create()); QVERIFY(rect); - rect->setState("moved"); + QDeclarativeItemPrivate::get(rect)->setState("moved"); QTRY_VERIFY(qobject_cast(rect->findChild("MyRect"))->x() > 0); QTRY_VERIFY(qobject_cast(rect->findChild("MyRect"))->x() < 200); //i.e. the behavior has been triggered @@ -262,7 +263,7 @@ void tst_qdeclarativebehaviors::nonSelectingBehavior() QDeclarativeRectangle *rect = qobject_cast(c.create()); QVERIFY(rect); - rect->setState("moved"); + QDeclarativeItemPrivate::get(rect)->setState("moved"); qreal x = qobject_cast(rect->findChild("MyRect"))->x(); QCOMPARE(x, qreal(200)); //should change immediately @@ -291,7 +292,7 @@ void tst_qdeclarativebehaviors::disabled() QVERIFY(rect); QCOMPARE(rect->findChild("MyBehavior")->enabled(), false); - rect->setState("moved"); + QDeclarativeItemPrivate::get(rect)->setState("moved"); qreal x = qobject_cast(rect->findChild("MyRect"))->x(); QCOMPARE(x, qreal(200)); //should change immediately diff --git a/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp b/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp index a016fa7011..d384d265a1 100644 --- a/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp +++ b/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp @@ -47,6 +47,7 @@ #include #include #include +#include class MyRect : public QDeclarativeRectangle @@ -128,63 +129,66 @@ void tst_qdeclarativestates::basicChanges() { QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/basicChanges.qml"); QDeclarativeRectangle *rect = qobject_cast(rectComponent.create()); + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); QVERIFY(rect != 0); QCOMPARE(rect->color(),QColor("red")); - rect->setState("blue"); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("blue")); - rect->setState(""); + rectPrivate->setState(""); QCOMPARE(rect->color(),QColor("red")); } { QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/basicChanges2.qml"); QDeclarativeRectangle *rect = qobject_cast(rectComponent.create()); + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); QVERIFY(rect != 0); QCOMPARE(rect->color(),QColor("red")); - rect->setState("blue"); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("blue")); - rect->setState("green"); + rectPrivate->setState("green"); QCOMPARE(rect->color(),QColor("green")); - rect->setState(""); + rectPrivate->setState(""); QCOMPARE(rect->color(),QColor("red")); - rect->setState("green"); + rectPrivate->setState("green"); QCOMPARE(rect->color(),QColor("green")); } { QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/basicChanges3.qml"); QDeclarativeRectangle *rect = qobject_cast(rectComponent.create()); + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); QVERIFY(rect != 0); QCOMPARE(rect->color(),QColor("red")); QCOMPARE(rect->border()->width(),1); - rect->setState("blue"); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("blue")); QCOMPARE(rect->border()->width(),1); - rect->setState("bordered"); + rectPrivate->setState("bordered"); QCOMPARE(rect->color(),QColor("red")); QCOMPARE(rect->border()->width(),2); - rect->setState(""); + rectPrivate->setState(""); QCOMPARE(rect->color(),QColor("red")); QCOMPARE(rect->border()->width(),1); //### we should be checking that this is an implicit rather than explicit 1 (which currently fails) - rect->setState("bordered"); + rectPrivate->setState("bordered"); QCOMPARE(rect->color(),QColor("red")); QCOMPARE(rect->border()->width(),2); - rect->setState("blue"); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("blue")); QCOMPARE(rect->border()->width(),1); @@ -220,32 +224,33 @@ void tst_qdeclarativestates::basicExtension() { QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/basicExtension.qml"); QDeclarativeRectangle *rect = qobject_cast(rectComponent.create()); + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); QVERIFY(rect != 0); QCOMPARE(rect->color(),QColor("red")); QCOMPARE(rect->border()->width(),1); - rect->setState("blue"); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("blue")); QCOMPARE(rect->border()->width(),1); - rect->setState("bordered"); + rectPrivate->setState("bordered"); QCOMPARE(rect->color(),QColor("blue")); QCOMPARE(rect->border()->width(),2); - rect->setState("blue"); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("blue")); QCOMPARE(rect->border()->width(),1); - rect->setState(""); + rectPrivate->setState(""); QCOMPARE(rect->color(),QColor("red")); QCOMPARE(rect->border()->width(),1); - rect->setState("bordered"); + rectPrivate->setState("bordered"); QCOMPARE(rect->color(),QColor("blue")); QCOMPARE(rect->border()->width(),2); - rect->setState(""); + rectPrivate->setState(""); QCOMPARE(rect->color(),QColor("red")); QCOMPARE(rect->border()->width(),1); } @@ -253,26 +258,27 @@ void tst_qdeclarativestates::basicExtension() { QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/fakeExtension.qml"); QDeclarativeRectangle *rect = qobject_cast(rectComponent.create()); + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); QVERIFY(rect != 0); QCOMPARE(rect->color(),QColor("red")); - rect->setState("blue"); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("blue")); - rect->setState("green"); + rectPrivate->setState("green"); QCOMPARE(rect->color(),QColor("green")); - rect->setState("blue"); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("blue")); - rect->setState("green"); + rectPrivate->setState("green"); QCOMPARE(rect->color(),QColor("green")); - rect->setState(""); + rectPrivate->setState(""); QCOMPARE(rect->color(),QColor("red")); - rect->setState("green"); + rectPrivate->setState("green"); QCOMPARE(rect->color(),QColor("green")); } } @@ -284,77 +290,80 @@ void tst_qdeclarativestates::basicBinding() { QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/basicBinding.qml"); QDeclarativeRectangle *rect = qobject_cast(rectComponent.create()); + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); QVERIFY(rect != 0); QCOMPARE(rect->color(),QColor("red")); - rect->setState("blue"); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("blue")); - rect->setState(""); + rectPrivate->setState(""); QCOMPARE(rect->color(),QColor("red")); - rect->setState("blue"); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("blue")); rect->setProperty("sourceColor", QColor("green")); QCOMPARE(rect->color(),QColor("green")); - rect->setState(""); + rectPrivate->setState(""); QCOMPARE(rect->color(),QColor("red")); rect->setProperty("sourceColor", QColor("yellow")); QCOMPARE(rect->color(),QColor("red")); - rect->setState("blue"); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("yellow")); } { QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/basicBinding2.qml"); QDeclarativeRectangle *rect = qobject_cast(rectComponent.create()); + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); QVERIFY(rect != 0); QCOMPARE(rect->color(),QColor("red")); - rect->setState("blue"); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("blue")); - rect->setState(""); + rectPrivate->setState(""); QCOMPARE(rect->color(),QColor("red")); - rect->setState("blue"); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("blue")); rect->setProperty("sourceColor", QColor("green")); QCOMPARE(rect->color(),QColor("blue")); - rect->setState(""); + rectPrivate->setState(""); QCOMPARE(rect->color(),QColor("green")); rect->setProperty("sourceColor", QColor("yellow")); QCOMPARE(rect->color(),QColor("yellow")); - rect->setState("blue"); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("blue")); - rect->setState(""); + rectPrivate->setState(""); QCOMPARE(rect->color(),QColor("yellow")); } { QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/basicBinding3.qml"); QDeclarativeRectangle *rect = qobject_cast(rectComponent.create()); + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); QVERIFY(rect != 0); QCOMPARE(rect->color(),QColor("red")); rect->setProperty("sourceColor", QColor("green")); QCOMPARE(rect->color(),QColor("green")); - rect->setState("blue"); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("blue")); rect->setProperty("sourceColor", QColor("red")); QCOMPARE(rect->color(),QColor("blue")); rect->setProperty("sourceColor2", QColor("yellow")); QCOMPARE(rect->color(),QColor("yellow")); - rect->setState(""); + rectPrivate->setState(""); QCOMPARE(rect->color(),QColor("red")); rect->setProperty("sourceColor2", QColor("green")); QCOMPARE(rect->color(),QColor("red")); @@ -365,27 +374,28 @@ void tst_qdeclarativestates::basicBinding() { QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/basicBinding4.qml"); QDeclarativeRectangle *rect = qobject_cast(rectComponent.create()); + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); QVERIFY(rect != 0); QCOMPARE(rect->color(),QColor("red")); - rect->setState("blue"); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("blue")); rect->setProperty("sourceColor", QColor("yellow")); QCOMPARE(rect->color(),QColor("yellow")); - rect->setState("green"); + rectPrivate->setState("green"); QCOMPARE(rect->color(),QColor("green")); rect->setProperty("sourceColor", QColor("purple")); QCOMPARE(rect->color(),QColor("green")); - rect->setState("blue"); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("purple")); - rect->setState("green"); + rectPrivate->setState("green"); QCOMPARE(rect->color(),QColor("green")); - rect->setState(""); + rectPrivate->setState(""); QCOMPARE(rect->color(),QColor("red")); } } @@ -403,7 +413,7 @@ void tst_qdeclarativestates::signalOverride() rect->doSomething(); QCOMPARE(rect->color(),QColor("blue")); - rect->setState("green"); + QDeclarativeItemPrivate::get(rect)->setState("green"); rect->doSomething(); QCOMPARE(rect->color(),QColor("green")); } @@ -418,8 +428,7 @@ void tst_qdeclarativestates::signalOverride() QCOMPARE(rect->color(),QColor("blue")); QDeclarativeRectangle *innerRect = qobject_cast(rect->findChild("extendedRect")); - - innerRect->setState("green"); + QDeclarativeItemPrivate::get(innerRect)->setState("green"); rect->doSomething(); QCOMPARE(rect->color(),QColor("blue")); QCOMPARE(innerRect->color(),QColor("green")); @@ -435,7 +444,7 @@ void tst_qdeclarativestates::signalOverrideCrash() MyRect *rect = qobject_cast(rectComponent.create()); QVERIFY(rect != 0); - rect->setState("overridden"); + QDeclarativeItemPrivate::get(rect)->setState("overridden"); rect->doSomething(); } @@ -463,7 +472,7 @@ void tst_qdeclarativestates::parentChange() QCOMPARE(pChange->parent(), nParent); - rect->setState("reparented"); + QDeclarativeItemPrivate::get(rect)->setState("reparented"); QCOMPARE(innerRect->rotation(), qreal(0)); QCOMPARE(innerRect->scale(), qreal(1)); QCOMPARE(innerRect->x(), qreal(-133)); @@ -474,11 +483,11 @@ void tst_qdeclarativestates::parentChange() QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/parentChange2.qml"); QDeclarativeRectangle *rect = qobject_cast(rectComponent.create()); QVERIFY(rect != 0); - + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); QDeclarativeRectangle *innerRect = qobject_cast(rect->findChild("MyRect")); QVERIFY(innerRect != 0); - rect->setState("reparented"); + rectPrivate->setState("reparented"); QCOMPARE(innerRect->rotation(), qreal(15)); QCOMPARE(innerRect->scale(), qreal(.5)); QCOMPARE(QString("%1").arg(innerRect->x()), QString("%1").arg(-19.9075)); @@ -489,17 +498,17 @@ void tst_qdeclarativestates::parentChange() QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/parentChange3.qml"); QDeclarativeRectangle *rect = qobject_cast(rectComponent.create()); QVERIFY(rect != 0); - + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); QDeclarativeRectangle *innerRect = qobject_cast(rect->findChild("MyRect")); QVERIFY(innerRect != 0); - rect->setState("reparented"); + rectPrivate->setState("reparented"); QCOMPARE(innerRect->rotation(), qreal(-37)); QCOMPARE(innerRect->scale(), qreal(.25)); QCOMPARE(QString("%1").arg(innerRect->x()), QString("%1").arg(-217.305)); QCOMPARE(QString("%1").arg(innerRect->y()), QString("%1").arg(-164.413)); - rect->setState(""); + rectPrivate->setState(""); QCOMPARE(innerRect->rotation(), qreal(0)); QCOMPARE(innerRect->scale(), qreal(1)); QCOMPARE(innerRect->x(), qreal(5)); @@ -521,7 +530,7 @@ void tst_qdeclarativestates::parentChangeErrors() QVERIFY(innerRect != 0); QTest::ignoreMessage(QtWarningMsg, fullDataPath("/data/parentChange4.qml") + ":25:9: QML ParentChange: Unable to preserve appearance under non-uniform scale"); - rect->setState("reparented"); + QDeclarativeItemPrivate::get(rect)->setState("reparented"); QCOMPARE(innerRect->rotation(), qreal(0)); QCOMPARE(innerRect->scale(), qreal(1)); QCOMPARE(innerRect->x(), qreal(5)); @@ -537,7 +546,7 @@ void tst_qdeclarativestates::parentChangeErrors() QVERIFY(innerRect != 0); QTest::ignoreMessage(QtWarningMsg, fullDataPath("/data/parentChange5.qml") + ":25:9: QML ParentChange: Unable to preserve appearance under complex transform"); - rect->setState("reparented"); + QDeclarativeItemPrivate::get(rect)->setState("reparented"); QCOMPARE(innerRect->rotation(), qreal(0)); QCOMPARE(innerRect->scale(), qreal(1)); QCOMPARE(innerRect->x(), qreal(5)); @@ -552,6 +561,7 @@ void tst_qdeclarativestates::anchorChanges() QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/anchorChanges1.qml"); QDeclarativeRectangle *rect = qobject_cast(rectComponent.create()); QVERIFY(rect != 0); + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); QDeclarativeRectangle *innerRect = qobject_cast(rect->findChild("MyRect")); QVERIFY(innerRect != 0); @@ -564,14 +574,14 @@ void tst_qdeclarativestates::anchorChanges() QDeclarativeAnchorChanges *aChanges = qobject_cast(state->operationAt(0)); QVERIFY(aChanges != 0); - rect->setState("right"); + rectPrivate->setState("right"); QCOMPARE(innerRect->x(), qreal(150)); QCOMPARE(aChanges->object(), qobject_cast(innerRect)); - QCOMPARE(aChanges->object()->anchors()->left().anchorLine, QDeclarativeAnchorLine::Invalid); //### was reset (how do we distinguish from not set at all) - QCOMPARE(aChanges->object()->anchors()->right().item, rect->right().item); - QCOMPARE(aChanges->object()->anchors()->right().anchorLine, rect->right().anchorLine); + QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->left().anchorLine, QDeclarativeAnchorLine::Invalid); //### was reset (how do we distinguish from not set at all) + QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->right().item, rectPrivate->right().item); + QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->right().anchorLine, rectPrivate->right().anchorLine); - rect->setState(""); + rectPrivate->setState(""); QCOMPARE(innerRect->x(), qreal(5)); delete rect; @@ -584,14 +594,15 @@ void tst_qdeclarativestates::anchorChanges2() QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/anchorChanges2.qml"); QDeclarativeRectangle *rect = qobject_cast(rectComponent.create()); QVERIFY(rect != 0); + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); QDeclarativeRectangle *innerRect = qobject_cast(rect->findChild("MyRect")); QVERIFY(innerRect != 0); - rect->setState("right"); + rectPrivate->setState("right"); QCOMPARE(innerRect->x(), qreal(150)); - rect->setState(""); + rectPrivate->setState(""); QCOMPARE(innerRect->x(), qreal(5)); delete rect; @@ -604,6 +615,7 @@ void tst_qdeclarativestates::anchorChanges3() QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/anchorChanges3.qml"); QDeclarativeRectangle *rect = qobject_cast(rectComponent.create()); QVERIFY(rect != 0); + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); QDeclarativeRectangle *innerRect = qobject_cast(rect->findChild("MyRect")); QVERIFY(innerRect != 0); @@ -622,23 +634,23 @@ void tst_qdeclarativestates::anchorChanges3() QDeclarativeAnchorChanges *aChanges = qobject_cast(state->operationAt(0)); QVERIFY(aChanges != 0); - rect->setState("reanchored"); + rectPrivate->setState("reanchored"); QCOMPARE(aChanges->object(), qobject_cast(innerRect)); - QCOMPARE(aChanges->object()->anchors()->left().item, leftGuideline->left().item); - QCOMPARE(aChanges->object()->anchors()->left().anchorLine, leftGuideline->left().anchorLine); - QCOMPARE(aChanges->object()->anchors()->right().item, rect->right().item); - QCOMPARE(aChanges->object()->anchors()->right().anchorLine, rect->right().anchorLine); - QCOMPARE(aChanges->object()->anchors()->top().item, rect->top().item); - QCOMPARE(aChanges->object()->anchors()->top().anchorLine, rect->top().anchorLine); - QCOMPARE(aChanges->object()->anchors()->bottom().item, bottomGuideline->bottom().item); - QCOMPARE(aChanges->object()->anchors()->bottom().anchorLine, bottomGuideline->bottom().anchorLine); + QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->left().item, QDeclarativeItemPrivate::get(leftGuideline)->left().item); + QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->left().anchorLine, QDeclarativeItemPrivate::get(leftGuideline)->left().anchorLine); + QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->right().item, rectPrivate->right().item); + QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->right().anchorLine, rectPrivate->right().anchorLine); + QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->top().item, rectPrivate->top().item); + QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->top().anchorLine, rectPrivate->top().anchorLine); + QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->bottom().item, QDeclarativeItemPrivate::get(bottomGuideline)->bottom().item); + QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->bottom().anchorLine, QDeclarativeItemPrivate::get(bottomGuideline)->bottom().anchorLine); QCOMPARE(innerRect->x(), qreal(10)); QCOMPARE(innerRect->y(), qreal(0)); QCOMPARE(innerRect->width(), qreal(190)); QCOMPARE(innerRect->height(), qreal(150)); - rect->setState(""); + rectPrivate->setState(""); QCOMPARE(innerRect->x(), qreal(0)); QCOMPARE(innerRect->y(), qreal(10)); QCOMPARE(innerRect->width(), qreal(150)); @@ -672,12 +684,12 @@ void tst_qdeclarativestates::anchorChanges4() QDeclarativeAnchorChanges *aChanges = qobject_cast(state->operationAt(0)); QVERIFY(aChanges != 0); - rect->setState("reanchored"); + QDeclarativeItemPrivate::get(rect)->setState("reanchored"); QCOMPARE(aChanges->object(), qobject_cast(innerRect)); - QCOMPARE(aChanges->object()->anchors()->horizontalCenter().item, bottomGuideline->horizontalCenter().item); - QCOMPARE(aChanges->object()->anchors()->horizontalCenter().anchorLine, bottomGuideline->horizontalCenter().anchorLine); - QCOMPARE(aChanges->object()->anchors()->verticalCenter().item, leftGuideline->verticalCenter().item); - QCOMPARE(aChanges->object()->anchors()->verticalCenter().anchorLine, leftGuideline->verticalCenter().anchorLine); + QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->horizontalCenter().item, QDeclarativeItemPrivate::get(bottomGuideline)->horizontalCenter().item); + QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->horizontalCenter().anchorLine, QDeclarativeItemPrivate::get(bottomGuideline)->horizontalCenter().anchorLine); + QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->verticalCenter().item, QDeclarativeItemPrivate::get(leftGuideline)->verticalCenter().item); + QCOMPARE(QDeclarativeItemPrivate::get(aChanges->object())->anchors()->verticalCenter().anchorLine, QDeclarativeItemPrivate::get(leftGuideline)->verticalCenter().anchorLine); delete rect; } @@ -707,7 +719,7 @@ void tst_qdeclarativestates::anchorChanges5() QDeclarativeAnchorChanges *aChanges = qobject_cast(state->operationAt(0)); QVERIFY(aChanges != 0); - rect->setState("reanchored"); + QDeclarativeItemPrivate::get(rect)->setState("reanchored"); QCOMPARE(aChanges->object(), qobject_cast(innerRect)); //QCOMPARE(aChanges->anchors()->horizontalCenter().item, bottomGuideline->horizontalCenter().item); //QCOMPARE(aChanges->anchors()->horizontalCenter().anchorLine, bottomGuideline->horizontalCenter().anchorLine); @@ -726,7 +738,7 @@ void tst_qdeclarativestates::anchorChangesCrash() QDeclarativeRectangle *rect = qobject_cast(rectComponent.create()); QVERIFY(rect != 0); - rect->setState("reanchored"); + QDeclarativeItemPrivate::get(rect)->setState("reanchored"); delete rect; } @@ -739,13 +751,13 @@ void tst_qdeclarativestates::script() QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/script.qml"); QDeclarativeRectangle *rect = qobject_cast(rectComponent.create()); QVERIFY(rect != 0); - + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); QCOMPARE(rect->color(),QColor("red")); - rect->setState("blue"); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("blue")); - rect->setState(""); + rectPrivate->setState(""); QCOMPARE(rect->color(),QColor("blue")); // a script isn't reverted } } @@ -757,13 +769,13 @@ void tst_qdeclarativestates::restoreEntryValues() QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/restoreEntryValues.qml"); QDeclarativeRectangle *rect = qobject_cast(rectComponent.create()); QVERIFY(rect != 0); - + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); QCOMPARE(rect->color(),QColor("red")); - rect->setState("blue"); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("blue")); - rect->setState(""); + rectPrivate->setState(""); QCOMPARE(rect->color(),QColor("blue")); } @@ -774,7 +786,7 @@ void tst_qdeclarativestates::explicitChanges() QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/explicit.qml"); QDeclarativeRectangle *rect = qobject_cast(rectComponent.create()); QVERIFY(rect != 0); - + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); QDeclarativeListReference list(rect, "states"); QDeclarativeState *state = qobject_cast(list.at(0)); QVERIFY(state != 0); @@ -786,18 +798,18 @@ void tst_qdeclarativestates::explicitChanges() QCOMPARE(rect->color(),QColor("red")); - rect->setState("blue"); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("blue")); rect->setProperty("sourceColor", QColor("green")); QCOMPARE(rect->color(),QColor("blue")); - rect->setState(""); + rectPrivate->setState(""); QCOMPARE(rect->color(),QColor("red")); rect->setProperty("sourceColor", QColor("yellow")); QCOMPARE(rect->color(),QColor("red")); - rect->setState("blue"); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("yellow")); } @@ -812,7 +824,7 @@ void tst_qdeclarativestates::propertyErrors() QTest::ignoreMessage(QtWarningMsg, fullDataPath("/data/propertyErrors.qml") + ":8:9: QML PropertyChanges: Cannot assign to non-existent property \"colr\""); QTest::ignoreMessage(QtWarningMsg, fullDataPath("/data/propertyErrors.qml") + ":8:9: QML PropertyChanges: Cannot assign to read-only property \"wantsFocus\""); - rect->setState("blue"); + QDeclarativeItemPrivate::get(rect)->setState("blue"); } void tst_qdeclarativestates::incorrectRestoreBug() @@ -822,22 +834,22 @@ void tst_qdeclarativestates::incorrectRestoreBug() QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/basicChanges.qml"); QDeclarativeRectangle *rect = qobject_cast(rectComponent.create()); QVERIFY(rect != 0); - + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); QCOMPARE(rect->color(),QColor("red")); - rect->setState("blue"); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("blue")); - rect->setState(""); + rectPrivate->setState(""); QCOMPARE(rect->color(),QColor("red")); // make sure if we change the base state value, we then restore to it correctly rect->setColor(QColor("green")); - rect->setState("blue"); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("blue")); - rect->setState(""); + rectPrivate->setState(""); QCOMPARE(rect->color(),QColor("green")); } @@ -865,12 +877,12 @@ void tst_qdeclarativestates::deletingChange() QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/deleting.qml"); QDeclarativeRectangle *rect = qobject_cast(rectComponent.create()); QVERIFY(rect != 0); - - rect->setState("blue"); + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("blue")); QCOMPARE(rect->radius(),qreal(5)); - rect->setState(""); + rectPrivate->setState(""); QCOMPARE(rect->color(),QColor("red")); QCOMPARE(rect->radius(),qreal(0)); @@ -883,7 +895,7 @@ void tst_qdeclarativestates::deletingChange() qmlExecuteDeferred(state); QCOMPARE(state->operationCount(), 1); - rect->setState("blue"); + rectPrivate->setState("blue"); QCOMPARE(rect->color(),QColor("red")); QCOMPARE(rect->radius(),qreal(5)); @@ -928,11 +940,11 @@ void tst_qdeclarativestates::tempState() QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/legalTempState.qml"); QDeclarativeRectangle *rect = qobject_cast(rectComponent.create()); QVERIFY(rect != 0); - + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); QTest::ignoreMessage(QtDebugMsg, "entering placed"); QTest::ignoreMessage(QtDebugMsg, "entering idle"); - rect->setState("placed"); - QCOMPARE(rect->state(), QLatin1String("idle")); + rectPrivate->setState("placed"); + QCOMPARE(rectPrivate->state(), QLatin1String("idle")); } void tst_qdeclarativestates::illegalTempState() @@ -942,10 +954,10 @@ void tst_qdeclarativestates::illegalTempState() QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/illegalTempState.qml"); QDeclarativeRectangle *rect = qobject_cast(rectComponent.create()); QVERIFY(rect != 0); - + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); QTest::ignoreMessage(QtWarningMsg, ": QML StateGroup: Can't apply a state change as part of a state definition."); - rect->setState("placed"); - QCOMPARE(rect->state(), QLatin1String("placed")); + rectPrivate->setState("placed"); + QCOMPARE(rectPrivate->state(), QLatin1String("placed")); } void tst_qdeclarativestates::nonExistantProperty() @@ -955,10 +967,10 @@ void tst_qdeclarativestates::nonExistantProperty() QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/nonExistantProp.qml"); QDeclarativeRectangle *rect = qobject_cast(rectComponent.create()); QVERIFY(rect != 0); - + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); QTest::ignoreMessage(QtWarningMsg, fullDataPath("/data/nonExistantProp.qml") + ":9:9: QML PropertyChanges: Cannot assign to non-existent property \"colr\""); - rect->setState("blue"); - QCOMPARE(rect->state(), QLatin1String("blue")); + rectPrivate->setState("blue"); + QCOMPARE(rectPrivate->state(), QLatin1String("blue")); } void tst_qdeclarativestates::reset() @@ -974,7 +986,7 @@ void tst_qdeclarativestates::reset() QCOMPARE(text->width(), qreal(40.)); QVERIFY(text->width() < text->height()); - rect->setState("state1"); + QDeclarativeItemPrivate::get(rect)->setState("state1"); QVERIFY(text->width() > 41); QVERIFY(text->width() > text->height()); @@ -1000,19 +1012,20 @@ void tst_qdeclarativestates::whenOrdering() QDeclarativeComponent c(&engine, SRCDIR "/data/whenOrdering.qml"); QDeclarativeRectangle *rect = qobject_cast(c.create()); QVERIFY(rect != 0); + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); - QCOMPARE(rect->state(), QLatin1String("")); + QCOMPARE(rectPrivate->state(), QLatin1String("")); rect->setProperty("condition2", true); - QCOMPARE(rect->state(), QLatin1String("state2")); + QCOMPARE(rectPrivate->state(), QLatin1String("state2")); rect->setProperty("condition1", true); - QCOMPARE(rect->state(), QLatin1String("state1")); + QCOMPARE(rectPrivate->state(), QLatin1String("state1")); rect->setProperty("condition2", false); - QCOMPARE(rect->state(), QLatin1String("state1")); + QCOMPARE(rectPrivate->state(), QLatin1String("state1")); rect->setProperty("condition2", true); - QCOMPARE(rect->state(), QLatin1String("state1")); + QCOMPARE(rectPrivate->state(), QLatin1String("state1")); rect->setProperty("condition1", false); rect->setProperty("condition2", false); - QCOMPARE(rect->state(), QLatin1String("")); + QCOMPARE(rectPrivate->state(), QLatin1String("")); } void tst_qdeclarativestates::urlResolution() @@ -1029,7 +1042,7 @@ void tst_qdeclarativestates::urlResolution() QDeclarativeImage *image3 = rect->findChild("image3"); QVERIFY(myType != 0 && image1 != 0 && image2 != 0 && image3 != 0); - myType->setState("SetImageState"); + QDeclarativeItemPrivate::get(myType)->setState("SetImageState"); QUrl resolved = QUrl::fromLocalFile(SRCDIR "/data/Implementation/images/qt-logo.png"); QCOMPARE(image1->source(), resolved); QCOMPARE(image2->source(), resolved); -- cgit v1.2.1 From 69efa1c869694666c66375179b43e2569cf2772b Mon Sep 17 00:00:00 2001 From: Alexis Menard Date: Thu, 29 Apr 2010 08:34:25 +0200 Subject: Update the input method sensitivity in case of complex widgets in QGraphicsProxyWidget. In case of a complex widget embedded in a proxy, we need to update the input method acceptance whenever the focus changes inside the proxy. Task-number:QTBUG-8847 Reviewed-by:janarve --- .../qgraphicsproxywidget/tst_qgraphicsproxywidget.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qgraphicsproxywidget/tst_qgraphicsproxywidget.cpp b/tests/auto/qgraphicsproxywidget/tst_qgraphicsproxywidget.cpp index d5f63d3a38..6cea834504 100644 --- a/tests/auto/qgraphicsproxywidget/tst_qgraphicsproxywidget.cpp +++ b/tests/auto/qgraphicsproxywidget/tst_qgraphicsproxywidget.cpp @@ -3436,6 +3436,21 @@ void tst_QGraphicsProxyWidget::inputMethod() qApp->sendEvent(proxy, &event); QCOMPARE(lineEdit->inputMethodEvents, i); } + + scene.clear(); + QGraphicsView view(&scene); + QWidget *w = new QWidget; + w->setLayout(new QVBoxLayout(w)); + QLineEdit *lineEdit = new QLineEdit; + lineEdit->setEchoMode(QLineEdit::Password); + w->layout()->addWidget(lineEdit); + lineEdit->setAttribute(Qt::WA_InputMethodEnabled, true); + QGraphicsProxyWidget *proxy = scene.addWidget(w); + view.show(); + QTest::qWaitForWindowShown(&view); + QTRY_VERIFY(!(proxy->flags() & QGraphicsItem::ItemAcceptsInputMethod)); + lineEdit->setFocus(); + QVERIFY((proxy->flags() & QGraphicsItem::ItemAcceptsInputMethod)); } void tst_QGraphicsProxyWidget::clickFocus() -- cgit v1.2.1 From 31dae3d294b932c4fb2934b713273433ff4aff7c Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Thu, 29 Apr 2010 17:59:58 +1000 Subject: Allow factor parameter to be passed to Qt.lighter() and Qt.darker() --- tests/auto/declarative/qdeclarativeqt/data/darker.qml | 3 ++- tests/auto/declarative/qdeclarativeqt/data/lighter.qml | 3 ++- tests/auto/declarative/qdeclarativeqt/tst_qdeclarativeqt.cpp | 8 ++++---- 3 files changed, 8 insertions(+), 6 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeqt/data/darker.qml b/tests/auto/declarative/qdeclarativeqt/data/darker.qml index f6333fe100..738095de79 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/darker.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/darker.qml @@ -3,9 +3,10 @@ import Qt 4.7 QtObject { property variant test1: Qt.darker(Qt.rgba(1, 0.8, 0.3)) property variant test2: Qt.darker() - property variant test3: Qt.darker(Qt.rgba(1, 0.8, 0.3), 10) + property variant test3: Qt.darker(Qt.rgba(1, 0.8, 0.3), 2.8) property variant test4: Qt.darker("red"); property variant test5: Qt.darker("perfectred"); // Non-existant color property variant test6: Qt.darker(10); + property variant test7: Qt.darker(Qt.rgba(1, 0.8, 0.3), 2.8, 10) } diff --git a/tests/auto/declarative/qdeclarativeqt/data/lighter.qml b/tests/auto/declarative/qdeclarativeqt/data/lighter.qml index 6c0053ba6a..ddaf78db29 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/lighter.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/lighter.qml @@ -3,8 +3,9 @@ import Qt 4.7 QtObject { property variant test1: Qt.lighter(Qt.rgba(1, 0.8, 0.3)) property variant test2: Qt.lighter() - property variant test3: Qt.lighter(Qt.rgba(1, 0.8, 0.3), 10) + property variant test3: Qt.lighter(Qt.rgba(1, 0.8, 0.3), 1.8) property variant test4: Qt.lighter("red"); property variant test5: Qt.lighter("perfectred"); // Non-existant color property variant test6: Qt.lighter(10); + property variant test7: Qt.lighter(Qt.rgba(1, 0.8, 0.3), 1.8, 5) } diff --git a/tests/auto/declarative/qdeclarativeqt/tst_qdeclarativeqt.cpp b/tests/auto/declarative/qdeclarativeqt/tst_qdeclarativeqt.cpp index 7cbd8db051..17b7925747 100644 --- a/tests/auto/declarative/qdeclarativeqt/tst_qdeclarativeqt.cpp +++ b/tests/auto/declarative/qdeclarativeqt/tst_qdeclarativeqt.cpp @@ -232,7 +232,7 @@ void tst_qdeclarativeqt::lighter() QDeclarativeComponent component(&engine, TEST_FILE("lighter.qml")); QString warning1 = component.url().toString() + ":5: Error: Qt.lighter(): Invalid arguments"; - QString warning2 = component.url().toString() + ":6: Error: Qt.lighter(): Invalid arguments"; + QString warning2 = component.url().toString() + ":10: Error: Qt.lighter(): Invalid arguments"; QTest::ignoreMessage(QtWarningMsg, qPrintable(warning1)); QTest::ignoreMessage(QtWarningMsg, qPrintable(warning2)); @@ -241,7 +241,7 @@ void tst_qdeclarativeqt::lighter() QCOMPARE(qvariant_cast(object->property("test1")), QColor::fromRgbF(1, 0.8, 0.3).lighter()); QCOMPARE(qvariant_cast(object->property("test2")), QColor()); - QCOMPARE(qvariant_cast(object->property("test3")), QColor()); + QCOMPARE(qvariant_cast(object->property("test3")), QColor::fromRgbF(1, 0.8, 0.3).lighter(180)); QCOMPARE(qvariant_cast(object->property("test4")), QColor("red").lighter()); QCOMPARE(qvariant_cast(object->property("test5")), QColor()); QCOMPARE(qvariant_cast(object->property("test6")), QColor()); @@ -254,7 +254,7 @@ void tst_qdeclarativeqt::darker() QDeclarativeComponent component(&engine, TEST_FILE("darker.qml")); QString warning1 = component.url().toString() + ":5: Error: Qt.darker(): Invalid arguments"; - QString warning2 = component.url().toString() + ":6: Error: Qt.darker(): Invalid arguments"; + QString warning2 = component.url().toString() + ":10: Error: Qt.darker(): Invalid arguments"; QTest::ignoreMessage(QtWarningMsg, qPrintable(warning1)); QTest::ignoreMessage(QtWarningMsg, qPrintable(warning2)); @@ -263,7 +263,7 @@ void tst_qdeclarativeqt::darker() QCOMPARE(qvariant_cast(object->property("test1")), QColor::fromRgbF(1, 0.8, 0.3).darker()); QCOMPARE(qvariant_cast(object->property("test2")), QColor()); - QCOMPARE(qvariant_cast(object->property("test3")), QColor()); + QCOMPARE(qvariant_cast(object->property("test3")), QColor::fromRgbF(1, 0.8, 0.3).darker(280)); QCOMPARE(qvariant_cast(object->property("test4")), QColor("red").darker()); QCOMPARE(qvariant_cast(object->property("test5")), QColor()); QCOMPARE(qvariant_cast(object->property("test6")), QColor()); -- cgit v1.2.1 From e1a60c82d39af5bda99ebea12f6877d6cd9642ac Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Thu, 29 Apr 2010 19:04:09 +1000 Subject: Cleanup guards used in synthesized QML meta objects QTCREATORBUG-1289 --- .../data/qtcreatorbug_1289.qml | 13 +++++++++++++ .../tst_qdeclarativeecmascript.cpp | 22 ++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/qtcreatorbug_1289.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/qtcreatorbug_1289.qml b/tests/auto/declarative/qdeclarativeecmascript/data/qtcreatorbug_1289.qml new file mode 100644 index 0000000000..b6d31d579c --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/qtcreatorbug_1289.qml @@ -0,0 +1,13 @@ +import Qt 4.7 + +QtObject { + id: root + property QtObject object: QtObject { + id: nested + property QtObject nestedObject + } + + Component.onCompleted: { + nested.nestedObject = root; + } +} diff --git a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp index 6cde46b4fd..54c14c26cb 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp +++ b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp @@ -142,6 +142,7 @@ private slots: void libraryScriptAssert(); void variantsAssignedUndefined(); void qtbug_9792(); + void qtcreatorbug_1289(); void noSpuriousWarningsAtShutdown(); void canAssignNullToQObject(); @@ -2205,6 +2206,27 @@ void tst_qdeclarativeecmascript::qtbug_9792() delete object; } +// Verifies that QDeclarativeGuard<>s used in the vmemetaobject are cleaned correctly +void tst_qdeclarativeecmascript::qtcreatorbug_1289() +{ + QDeclarativeComponent component(&engine, TEST_FILE("qtcreatorbug_1289.qml")); + + QObject *o = component.create(); + QVERIFY(o != 0); + + QObject *nested = qvariant_cast(o->property("object")); + QVERIFY(nested != 0); + + QVERIFY(qvariant_cast(nested->property("nestedObject")) == o); + + delete nested; + nested = qvariant_cast(o->property("object")); + QVERIFY(nested == 0); + + // If the bug is present, the next line will crash + delete o; +} + // Test that we shut down without stupid warnings void tst_qdeclarativeecmascript::noSpuriousWarningsAtShutdown() { -- cgit v1.2.1 From 204cf6be3d63b16981843b0ae6a544e30da35134 Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Fri, 30 Apr 2010 08:19:00 +1000 Subject: Warn on assigning a function to a QML property. This is not supported, and should not silently be converting the function to a string. See QTBUG-10302 for why we check !isRegExp as well as isFunction. Task-number: QTBUG-10237 Reviewed-by: Aaron Kennedy --- .../data/functionAssignment.1.qml | 5 +++ .../data/functionAssignment.2.qml | 13 ++++++++ .../tst_qdeclarativeecmascript.cpp | 39 ++++++++++++++++++++++ 3 files changed, 57 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/functionAssignment.1.qml create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/functionAssignment.2.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/functionAssignment.1.qml b/tests/auto/declarative/qdeclarativeecmascript/data/functionAssignment.1.qml new file mode 100644 index 0000000000..09540f1f6e --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/functionAssignment.1.qml @@ -0,0 +1,5 @@ +import Qt.test 1.0 + +MyQmlObject { + property variant a: function myFunction() { return 2; } +} diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/functionAssignment.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/functionAssignment.2.qml new file mode 100644 index 0000000000..948b39c147 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/functionAssignment.2.qml @@ -0,0 +1,13 @@ +import Qt.test 1.0 + +MyQmlObject { + property variant a + property bool runTest: false + onRunTestChanged: { + function myFunction() { + console.log("hello world"); + } + a = myFunction; + } + +} diff --git a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp index 54c14c26cb..49ee335837 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp +++ b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp @@ -145,6 +145,7 @@ private slots: void qtcreatorbug_1289(); void noSpuriousWarningsAtShutdown(); void canAssignNullToQObject(); + void functionAssignment(); void callQtInvokables(); private: @@ -2291,6 +2292,44 @@ void tst_qdeclarativeecmascript::canAssignNullToQObject() } } +void tst_qdeclarativeecmascript::functionAssignment() +{ + { + QDeclarativeComponent component(&engine, TEST_FILE("functionAssignment.1.qml")); + + QString url = component.url().toString(); + QString warning = url + ":4: Unable to assign a function to a property."; + QTest::ignoreMessage(QtWarningMsg, warning.toLatin1().constData()); + + MyQmlObject *o = qobject_cast(component.create()); + QVERIFY(o != 0); + + QVERIFY(!o->property("a").isValid()); + + delete o; + } + + { + QDeclarativeComponent component(&engine, TEST_FILE("functionAssignment.2.qml")); + + MyQmlObject *o = qobject_cast(component.create()); + QVERIFY(o != 0); + + QVERIFY(!o->property("a").isValid()); + + QString url = component.url().toString(); + QString warning = url + ":10: Error: Cannot assign a function to a property."; + QTest::ignoreMessage(QtWarningMsg, warning.toLatin1().constData()); + + o->setProperty("runTest", true); + + QVERIFY(!o->property("a").isValid()); + + delete o; + } +} + + QTEST_MAIN(tst_qdeclarativeecmascript) #include "tst_qdeclarativeecmascript.moc" -- cgit v1.2.1 From ce20af2d343e2d707f93ac4cb724feb2562680c6 Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Fri, 30 Apr 2010 09:38:43 +1000 Subject: missed files --- .../data/connection-unknownsignals-ignored.qml | 8 ++++++++ .../data/connection-unknownsignals-notarget.qml | 7 +++++++ .../data/connection-unknownsignals-parent.qml | 7 +++++++ .../qdeclarativeconnection/data/connection-unknownsignals.qml | 7 +++++++ 4 files changed, 29 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-ignored.qml create mode 100644 tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-notarget.qml create mode 100644 tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-parent.qml create mode 100644 tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-ignored.qml b/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-ignored.qml new file mode 100644 index 0000000000..764d5abc40 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-ignored.qml @@ -0,0 +1,8 @@ +import Qt 4.7 + +Item { + id: screen + + Connections { target: screen; onNotFooBar1: {} ignoreUnknownSignals: true } + Connections { objectName: "connections"; onNotFooBar2: {} ignoreUnknownSignals: true } +} diff --git a/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-notarget.qml b/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-notarget.qml new file mode 100644 index 0000000000..09e78122b7 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-notarget.qml @@ -0,0 +1,7 @@ +import Qt 4.7 + +Item { + id: screen + + Connections { objectName: "connections"; target: null; onNotFooBar: {} } +} diff --git a/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-parent.qml b/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-parent.qml new file mode 100644 index 0000000000..478503d808 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-parent.qml @@ -0,0 +1,7 @@ +import Qt 4.7 + +Item { + id: screen + + Connections { objectName: "connections"; onFooBar: {} } +} diff --git a/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals.qml b/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals.qml new file mode 100644 index 0000000000..d4e8d7ec72 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals.qml @@ -0,0 +1,7 @@ +import Qt 4.7 + +Item { + id: screen + + Connections { objectName: "connections"; target: screen; onFooBar: {} } +} -- cgit v1.2.1 From b57ad033b5fa48efd2e57f17d26f541f1f50dc02 Mon Sep 17 00:00:00 2001 From: Rhys Weatherley Date: Fri, 30 Apr 2010 12:47:48 +1000 Subject: Add QML value types for math3d types QVector3D was already supported. Add QVector2D, QVector4D, QQuaternion, and QMatrix4x4. Reviewed-by: Warwick Allison --- .../qdeclarativevaluetypes/data/matrix4x4_read.qml | 22 ++++ .../data/matrix4x4_write.qml | 21 ++++ .../data/quaternion_read.qml | 10 ++ .../data/quaternion_write.qml | 9 ++ .../qdeclarativevaluetypes/data/vector2d_read.qml | 8 ++ .../qdeclarativevaluetypes/data/vector2d_write.qml | 7 ++ .../qdeclarativevaluetypes/data/vector4d_read.qml | 10 ++ .../qdeclarativevaluetypes/data/vector4d_write.qml | 9 ++ .../declarative/qdeclarativevaluetypes/testtypes.h | 30 ++++- .../tst_qdeclarativevaluetypes.cpp | 134 +++++++++++++++++++++ 10 files changed, 259 insertions(+), 1 deletion(-) create mode 100644 tests/auto/declarative/qdeclarativevaluetypes/data/matrix4x4_read.qml create mode 100644 tests/auto/declarative/qdeclarativevaluetypes/data/matrix4x4_write.qml create mode 100644 tests/auto/declarative/qdeclarativevaluetypes/data/quaternion_read.qml create mode 100644 tests/auto/declarative/qdeclarativevaluetypes/data/quaternion_write.qml create mode 100644 tests/auto/declarative/qdeclarativevaluetypes/data/vector2d_read.qml create mode 100644 tests/auto/declarative/qdeclarativevaluetypes/data/vector2d_write.qml create mode 100644 tests/auto/declarative/qdeclarativevaluetypes/data/vector4d_read.qml create mode 100644 tests/auto/declarative/qdeclarativevaluetypes/data/vector4d_write.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/matrix4x4_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/matrix4x4_read.qml new file mode 100644 index 0000000000..6c4a68258c --- /dev/null +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/matrix4x4_read.qml @@ -0,0 +1,22 @@ +import Test 1.0 + +MyTypeObject { + property real v_m11: matrix.m11 + property real v_m12: matrix.m12 + property real v_m13: matrix.m13 + property real v_m14: matrix.m14 + property real v_m21: matrix.m21 + property real v_m22: matrix.m22 + property real v_m23: matrix.m23 + property real v_m24: matrix.m24 + property real v_m31: matrix.m31 + property real v_m32: matrix.m32 + property real v_m33: matrix.m33 + property real v_m34: matrix.m34 + property real v_m41: matrix.m41 + property real v_m42: matrix.m42 + property real v_m43: matrix.m43 + property real v_m44: matrix.m44 + property variant copy: matrix +} + diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/matrix4x4_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/matrix4x4_write.qml new file mode 100644 index 0000000000..2a9f154d6f --- /dev/null +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/matrix4x4_write.qml @@ -0,0 +1,21 @@ +import Test 1.0 + +MyTypeObject { + matrix.m11: if (true) 11 + matrix.m12: if (true) 12 + matrix.m13: if (true) 13 + matrix.m14: if (true) 14 + matrix.m21: if (true) 21 + matrix.m22: if (true) 22 + matrix.m23: if (true) 23 + matrix.m24: if (true) 24 + matrix.m31: if (true) 31 + matrix.m32: if (true) 32 + matrix.m33: if (true) 33 + matrix.m34: if (true) 34 + matrix.m41: if (true) 41 + matrix.m42: if (true) 42 + matrix.m43: if (true) 43 + matrix.m44: if (true) 44 +} + diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/quaternion_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/quaternion_read.qml new file mode 100644 index 0000000000..d1a21dc926 --- /dev/null +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/quaternion_read.qml @@ -0,0 +1,10 @@ +import Test 1.0 + +MyTypeObject { + property real v_scalar: quaternion.scalar + property real v_x: quaternion.x + property real v_y: quaternion.y + property real v_z: quaternion.z + property variant copy: quaternion +} + diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/quaternion_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/quaternion_write.qml new file mode 100644 index 0000000000..0c3e5afd98 --- /dev/null +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/quaternion_write.qml @@ -0,0 +1,9 @@ +import Test 1.0 + +MyTypeObject { + quaternion.scalar: if (true) 88.5 + quaternion.x: if (true) -0.3 + quaternion.y: if (true) -12.9 + quaternion.z: if (true) 907.4 +} + diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/vector2d_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/vector2d_read.qml new file mode 100644 index 0000000000..fc315f7abf --- /dev/null +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/vector2d_read.qml @@ -0,0 +1,8 @@ +import Test 1.0 + +MyTypeObject { + property real v_x: vector2.x + property real v_y: vector2.y + property variant copy: vector2 +} + diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/vector2d_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/vector2d_write.qml new file mode 100644 index 0000000000..f0e35ff200 --- /dev/null +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/vector2d_write.qml @@ -0,0 +1,7 @@ +import Test 1.0 + +MyTypeObject { + vector2.x: if (true) -0.3 + vector2.y: if (true) -12.9 +} + diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/vector4d_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/vector4d_read.qml new file mode 100644 index 0000000000..f9d5d6053e --- /dev/null +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/vector4d_read.qml @@ -0,0 +1,10 @@ +import Test 1.0 + +MyTypeObject { + property real v_x: vector4.x + property real v_y: vector4.y + property real v_z: vector4.z + property real v_w: vector4.w + property variant copy: vector4 +} + diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/vector4d_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/vector4d_write.qml new file mode 100644 index 0000000000..548698126d --- /dev/null +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/vector4d_write.qml @@ -0,0 +1,9 @@ +import Test 1.0 + +MyTypeObject { + vector4.x: if (true) -0.3 + vector4.y: if (true) -12.9 + vector4.z: if (true) 907.4 + vector4.w: if (true) 88.5 +} + diff --git a/tests/auto/declarative/qdeclarativevaluetypes/testtypes.h b/tests/auto/declarative/qdeclarativevaluetypes/testtypes.h index 8a9b981823..1da9990605 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/testtypes.h +++ b/tests/auto/declarative/qdeclarativevaluetypes/testtypes.h @@ -48,7 +48,11 @@ #include #include #include +#include #include +#include +#include +#include #include #include #include @@ -66,7 +70,11 @@ class MyTypeObject : public QObject Q_PROPERTY(QSize sizereadonly READ size NOTIFY changed) Q_PROPERTY(QRect rect READ rect WRITE setRect NOTIFY changed) Q_PROPERTY(QRectF rectf READ rectf WRITE setRectf NOTIFY changed) + Q_PROPERTY(QVector2D vector2 READ vector2 WRITE setVector2 NOTIFY changed) Q_PROPERTY(QVector3D vector READ vector WRITE setVector NOTIFY changed) + Q_PROPERTY(QVector4D vector4 READ vector4 WRITE setVector4 NOTIFY changed) + Q_PROPERTY(QQuaternion quaternion READ quaternion WRITE setQuaternion NOTIFY changed) + Q_PROPERTY(QMatrix4x4 matrix READ matrix WRITE setMatrix NOTIFY changed) Q_PROPERTY(QFont font READ font WRITE setFont NOTIFY changed) public: @@ -77,7 +85,11 @@ public: m_sizef(0.1, 100923.2), m_rect(2, 3, 109, 102), m_rectf(103.8, 99.2, 88.1, 77.6), - m_vector(23.88, 3.1, 4.3) + m_vector2(32.88, 1.3), + m_vector(23.88, 3.1, 4.3), + m_vector4(54.2, 23.88, 3.1, 4.3), + m_quaternion(4.3, 54.2, 23.88, 3.1), + m_matrix(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16) { m_font.setFamily("Arial"); m_font.setBold(true); @@ -116,10 +128,26 @@ public: QRectF rectf() const { return m_rectf; } void setRectf(const QRectF &v) { m_rectf = v; emit changed(); } + QVector2D m_vector2; + QVector2D vector2() const { return m_vector2; } + void setVector2(const QVector2D &v) { m_vector2 = v; emit changed(); } + QVector3D m_vector; QVector3D vector() const { return m_vector; } void setVector(const QVector3D &v) { m_vector = v; emit changed(); } + QVector4D m_vector4; + QVector4D vector4() const { return m_vector4; } + void setVector4(const QVector4D &v) { m_vector4 = v; emit changed(); } + + QQuaternion m_quaternion; + QQuaternion quaternion() const { return m_quaternion; } + void setQuaternion(const QQuaternion &v) { m_quaternion = v; emit changed(); } + + QMatrix4x4 m_matrix; + QMatrix4x4 matrix() const { return m_matrix; } + void setMatrix(const QMatrix4x4 &v) { m_matrix = v; emit changed(); } + QFont m_font; QFont font() const { return m_font; } void setFont(const QFont &v) { m_font = v; emit changed(); } diff --git a/tests/auto/declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp b/tests/auto/declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp index b733b10310..c18fbf5648 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp +++ b/tests/auto/declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp @@ -62,7 +62,11 @@ private slots: void sizereadonly(); void rect(); void rectf(); + void vector2d(); void vector3d(); + void vector4d(); + void quaternion(); + void matrix4x4(); void font(); void bindingAssignment(); @@ -293,6 +297,31 @@ void tst_qdeclarativevaluetypes::rectf() } } +void tst_qdeclarativevaluetypes::vector2d() +{ + { + QDeclarativeComponent component(&engine, TEST_FILE("vector2d_read.qml")); + MyTypeObject *object = qobject_cast(component.create()); + QVERIFY(object != 0); + + QCOMPARE((float)object->property("v_x").toDouble(), (float)32.88); + QCOMPARE((float)object->property("v_y").toDouble(), (float)1.3); + QCOMPARE(object->property("copy"), QVariant(QVector2D(32.88, 1.3))); + + delete object; + } + + { + QDeclarativeComponent component(&engine, TEST_FILE("vector2d_write.qml")); + MyTypeObject *object = qobject_cast(component.create()); + QVERIFY(object != 0); + + QCOMPARE(object->vector2(), QVector2D(-0.3, -12.9)); + + delete object; + } +} + void tst_qdeclarativevaluetypes::vector3d() { { @@ -319,6 +348,106 @@ void tst_qdeclarativevaluetypes::vector3d() } } +void tst_qdeclarativevaluetypes::vector4d() +{ + { + QDeclarativeComponent component(&engine, TEST_FILE("vector4d_read.qml")); + MyTypeObject *object = qobject_cast(component.create()); + QVERIFY(object != 0); + + QCOMPARE((float)object->property("v_x").toDouble(), (float)54.2); + QCOMPARE((float)object->property("v_y").toDouble(), (float)23.88); + QCOMPARE((float)object->property("v_z").toDouble(), (float)3.1); + QCOMPARE((float)object->property("v_w").toDouble(), (float)4.3); + QCOMPARE(object->property("copy"), QVariant(QVector4D(54.2, 23.88, 3.1, 4.3))); + + delete object; + } + + { + QDeclarativeComponent component(&engine, TEST_FILE("vector4d_write.qml")); + MyTypeObject *object = qobject_cast(component.create()); + QVERIFY(object != 0); + + QCOMPARE(object->vector4(), QVector4D(-0.3, -12.9, 907.4, 88.5)); + + delete object; + } +} + +void tst_qdeclarativevaluetypes::quaternion() +{ + { + QDeclarativeComponent component(&engine, TEST_FILE("quaternion_read.qml")); + MyTypeObject *object = qobject_cast(component.create()); + QVERIFY(object != 0); + + QCOMPARE((float)object->property("v_scalar").toDouble(), (float)4.3); + QCOMPARE((float)object->property("v_x").toDouble(), (float)54.2); + QCOMPARE((float)object->property("v_y").toDouble(), (float)23.88); + QCOMPARE((float)object->property("v_z").toDouble(), (float)3.1); + QCOMPARE(object->property("copy"), QVariant(QQuaternion(4.3, 54.2, 23.88, 3.1))); + + delete object; + } + + { + QDeclarativeComponent component(&engine, TEST_FILE("quaternion_write.qml")); + MyTypeObject *object = qobject_cast(component.create()); + QVERIFY(object != 0); + + QCOMPARE(object->quaternion(), QQuaternion(88.5, -0.3, -12.9, 907.4)); + + delete object; + } +} + +void tst_qdeclarativevaluetypes::matrix4x4() +{ + { + QDeclarativeComponent component(&engine, TEST_FILE("matrix4x4_read.qml")); + MyTypeObject *object = qobject_cast(component.create()); + QVERIFY(object != 0); + + QCOMPARE((float)object->property("v_m11").toDouble(), (float)1); + QCOMPARE((float)object->property("v_m12").toDouble(), (float)2); + QCOMPARE((float)object->property("v_m13").toDouble(), (float)3); + QCOMPARE((float)object->property("v_m14").toDouble(), (float)4); + QCOMPARE((float)object->property("v_m21").toDouble(), (float)5); + QCOMPARE((float)object->property("v_m22").toDouble(), (float)6); + QCOMPARE((float)object->property("v_m23").toDouble(), (float)7); + QCOMPARE((float)object->property("v_m24").toDouble(), (float)8); + QCOMPARE((float)object->property("v_m31").toDouble(), (float)9); + QCOMPARE((float)object->property("v_m32").toDouble(), (float)10); + QCOMPARE((float)object->property("v_m33").toDouble(), (float)11); + QCOMPARE((float)object->property("v_m34").toDouble(), (float)12); + QCOMPARE((float)object->property("v_m41").toDouble(), (float)13); + QCOMPARE((float)object->property("v_m42").toDouble(), (float)14); + QCOMPARE((float)object->property("v_m43").toDouble(), (float)15); + QCOMPARE((float)object->property("v_m44").toDouble(), (float)16); + QCOMPARE(object->property("copy"), + QVariant(QMatrix4x4(1, 2, 3, 4, + 5, 6, 7, 8, + 9, 10, 11, 12, + 13, 14, 15, 16))); + + delete object; + } + + { + QDeclarativeComponent component(&engine, TEST_FILE("matrix4x4_write.qml")); + MyTypeObject *object = qobject_cast(component.create()); + QVERIFY(object != 0); + + QCOMPARE(object->matrix(), QMatrix4x4(11, 12, 13, 14, + 21, 22, 23, 24, + 31, 32, 33, 34, + 41, 42, 43, 44)); + + delete object; + } +} + void tst_qdeclarativevaluetypes::font() { { @@ -665,7 +794,12 @@ void tst_qdeclarativevaluetypes::cppClasses() CPP_TEST(QDeclarativeSizeFValueType, QSizeF(-100.7, 18.2)); CPP_TEST(QDeclarativeRectValueType, QRect(13, 39, 10928, 88)); CPP_TEST(QDeclarativeRectFValueType, QRectF(88.2, -90.1, 103.2, 118)); + CPP_TEST(QDeclarativeVector2DValueType, QVector2D(19.7, 1002)); CPP_TEST(QDeclarativeVector3DValueType, QVector3D(18.2, 19.7, 1002)); + CPP_TEST(QDeclarativeVector4DValueType, QVector4D(18.2, 19.7, 1002, 54)); + CPP_TEST(QDeclarativeQuaternionValueType, QQuaternion(18.2, 19.7, 1002, 54)); + CPP_TEST(QDeclarativeMatrix4x4ValueType, + QMatrix4x4(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)); CPP_TEST(QDeclarativeFontValueType, QFont("Helvetica")); } -- cgit v1.2.1 From 85db980578cb9f1b95be160a4386d9822c6ec6d0 Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Fri, 30 Apr 2010 15:32:43 +1000 Subject: Make QDeclarativeParserStatus method pure virtual to encourage right code. Fix all code to be right, except multimedia. Currently, it's not *required* that types work without componentComplete, so not vital. --- tests/auto/declarative/qdeclarativelanguage/testtypes.h | 4 ++-- .../declarative/qdeclarativemetatype/tst_qdeclarativemetatype.cpp | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativelanguage/testtypes.h b/tests/auto/declarative/qdeclarativelanguage/testtypes.h index 89f99c88f5..acbe2198b2 100644 --- a/tests/auto/declarative/qdeclarativelanguage/testtypes.h +++ b/tests/auto/declarative/qdeclarativelanguage/testtypes.h @@ -99,7 +99,7 @@ private: int m_value2; }; -class MyQmlObject : public QObject, public MyInterface, public QDeclarativeParserStatus +class MyQmlObject : public QObject, public MyInterface { Q_OBJECT Q_PROPERTY(int value READ value WRITE setValue FINAL) @@ -113,7 +113,7 @@ class MyQmlObject : public QObject, public MyInterface, public QDeclarativeParse Q_PROPERTY(MyQmlObject *qmlobjectProperty READ qmlobject WRITE setQmlobject) Q_PROPERTY(int propertyWithNotify READ propertyWithNotify WRITE setPropertyWithNotify NOTIFY oddlyNamedNotifySignal) - Q_INTERFACES(MyInterface QDeclarativeParserStatus) + Q_INTERFACES(MyInterface) public: MyQmlObject() : m_value(-1), m_interface(0), m_qmlobject(0) { qRegisterMetaType("MyCustomVariantType"); } diff --git a/tests/auto/declarative/qdeclarativemetatype/tst_qdeclarativemetatype.cpp b/tests/auto/declarative/qdeclarativemetatype/tst_qdeclarativemetatype.cpp index 36efe131df..76e86c9b4b 100644 --- a/tests/auto/declarative/qdeclarativemetatype/tst_qdeclarativemetatype.cpp +++ b/tests/auto/declarative/qdeclarativemetatype/tst_qdeclarativemetatype.cpp @@ -88,7 +88,10 @@ QML_DECLARE_TYPE(TestType); class ParserStatusTestType : public QObject, public QDeclarativeParserStatus { Q_OBJECT + void classBegin(){} + void componentComplete(){} Q_CLASSINFO("DefaultProperty", "foo") // Missing default property + Q_INTERFACES(QDeclarativeParserStatus) }; QML_DECLARE_TYPE(ParserStatusTestType); -- cgit v1.2.1 From deb92c796c727c6ad0eaf28929cda6d000c1b3c1 Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Fri, 30 Apr 2010 15:48:13 +1000 Subject: Fix assignment of value types to javascript var. Make sure the scriptclass is used. Task-number: QTBUG-10329 Reviewed-by: Aaron Kennedy --- .../qdeclarativevaluetypes/data/varAssignment.qml | 14 ++++++++++++++ .../qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp | 14 ++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativevaluetypes/data/varAssignment.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/varAssignment.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/varAssignment.qml new file mode 100644 index 0000000000..e4715aba4a --- /dev/null +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/varAssignment.qml @@ -0,0 +1,14 @@ +import Qt 4.7 + +QtObject { + property int x; + property int y; + property int z; + + Component.onCompleted: { + var vec3 = Qt.vector3d(1, 2, 3); + x = vec3.x; + y = vec3.y; + z = vec3.z; + } +} diff --git a/tests/auto/declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp b/tests/auto/declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp index c18fbf5648..95b9baacfe 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp +++ b/tests/auto/declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp @@ -84,6 +84,7 @@ private slots: void enums(); void conflictingBindings(); void returnValues(); + void varAssignment(); private: QDeclarativeEngine engine; @@ -911,6 +912,19 @@ void tst_qdeclarativevaluetypes::returnValues() delete object; } +void tst_qdeclarativevaluetypes::varAssignment() +{ + QDeclarativeComponent component(&engine, TEST_FILE("varAssignment.qml")); + QObject *object = component.create(); + QVERIFY(object != 0); + + QCOMPARE(object->property("x").toInt(), 1); + QCOMPARE(object->property("y").toInt(), 2); + QCOMPARE(object->property("z").toInt(), 3); + + delete object; +} + QTEST_MAIN(tst_qdeclarativevaluetypes) #include "tst_qdeclarativevaluetypes.moc" -- cgit v1.2.1 From 980e3f143505639ec8f1a8cc4d0ca2bbe59e69c7 Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Fri, 30 Apr 2010 16:28:37 +1000 Subject: Add Qt.fontFamilies() method QTBUG-10239 --- .../declarative/qdeclarativeqt/data/fontFamilies.qml | 6 ++++++ .../declarative/qdeclarativeqt/tst_qdeclarativeqt.cpp | 18 ++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativeqt/data/fontFamilies.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeqt/data/fontFamilies.qml b/tests/auto/declarative/qdeclarativeqt/data/fontFamilies.qml new file mode 100644 index 0000000000..e66c7be081 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeqt/data/fontFamilies.qml @@ -0,0 +1,6 @@ +import Qt 4.7 + +QtObject { + property variant test1: Qt.fontFamilies(10) + property variant test2: Qt.fontFamilies(); +} diff --git a/tests/auto/declarative/qdeclarativeqt/tst_qdeclarativeqt.cpp b/tests/auto/declarative/qdeclarativeqt/tst_qdeclarativeqt.cpp index 17b7925747..5095be83ac 100644 --- a/tests/auto/declarative/qdeclarativeqt/tst_qdeclarativeqt.cpp +++ b/tests/auto/declarative/qdeclarativeqt/tst_qdeclarativeqt.cpp @@ -42,6 +42,7 @@ #include #include #include +#include #include #include #include @@ -76,6 +77,7 @@ private slots: void isQtObject(); void btoa(); void atob(); + void fontFamilies(); private: QDeclarativeEngine engine; @@ -483,6 +485,22 @@ void tst_qdeclarativeqt::atob() delete object; } +void tst_qdeclarativeqt::fontFamilies() +{ + QDeclarativeComponent component(&engine, TEST_FILE("fontFamilies.qml")); + + QString warning1 = component.url().toString() + ":4: Error: Qt.fontFamilies(): Invalid arguments"; + QTest::ignoreMessage(QtWarningMsg, qPrintable(warning1)); + + QObject *object = component.create(); + QVERIFY(object != 0); + + QFontDatabase database; + QCOMPARE(object->property("test2"), QVariant::fromValue(database.families())); + + delete object; +} + QTEST_MAIN(tst_qdeclarativeqt) #include "tst_qdeclarativeqt.moc" -- cgit v1.2.1 From b742568492c56aee9445a1fbf3e90e9ef3cb5823 Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Fri, 30 Apr 2010 17:27:47 +1000 Subject: Ensure eval and Function are in the correct scope QTBUG-10236 --- .../qdeclarativeecmascript/data/eval.qml | 23 ++++++++++++++++ .../qdeclarativeecmascript/data/function.qml | 19 +++++++++++++ .../tst_qdeclarativeecmascript.cpp | 31 ++++++++++++++++++++++ 3 files changed, 73 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/eval.qml create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/function.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/eval.qml b/tests/auto/declarative/qdeclarativeecmascript/data/eval.qml new file mode 100644 index 0000000000..bc2df98964 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/eval.qml @@ -0,0 +1,23 @@ +import Qt 4.7 + +QtObject { + property bool test1: false; + property bool test2: false; + property bool test3: false; + property bool test4: false; + property bool test5: false; + + + property int a: 7 + property int b: 8 + + Component.onCompleted: { + var b = 9; + + test1 = (eval("a") == 7); + test2 = (eval("b") == 9); + 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 new file mode 100644 index 0000000000..b435f5812e --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/function.qml @@ -0,0 +1,19 @@ +import Qt 4.7 + +QtObject { + property bool test1: false; + property bool test2: false; + property bool test3: false; + + Component.onCompleted: { + var a = 10; + + var func1 = new Function("a", "return a + 7"); + var func2 = new Function("a", "return Qt.atob(a)"); + var func3 = new Function("return a"); + + test1 = (func1(4) == 11); + test2 = (func2("Hello World!") == Qt.atob("Hello World!")); + test3 = (func3() == undefined); + } +} diff --git a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp index 49ee335837..6d39be2cd6 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp +++ b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp @@ -146,6 +146,8 @@ private slots: void noSpuriousWarningsAtShutdown(); void canAssignNullToQObject(); void functionAssignment(); + void eval(); + void function(); void callQtInvokables(); private: @@ -2329,6 +2331,35 @@ void tst_qdeclarativeecmascript::functionAssignment() } } +void tst_qdeclarativeecmascript::eval() +{ + QDeclarativeComponent component(&engine, TEST_FILE("eval.qml")); + + QObject *o = component.create(); + QVERIFY(o != 0); + + QCOMPARE(o->property("test1").toBool(), true); + QCOMPARE(o->property("test2").toBool(), true); + QCOMPARE(o->property("test3").toBool(), true); + QCOMPARE(o->property("test4").toBool(), true); + QCOMPARE(o->property("test5").toBool(), true); + + delete o; +} + +void tst_qdeclarativeecmascript::function() +{ + QDeclarativeComponent component(&engine, TEST_FILE("function.qml")); + + QObject *o = component.create(); + QVERIFY(o != 0); + + QCOMPARE(o->property("test1").toBool(), true); + QCOMPARE(o->property("test2").toBool(), true); + QCOMPARE(o->property("test3").toBool(), true); + + delete o; +} QTEST_MAIN(tst_qdeclarativeecmascript) -- cgit v1.2.1 From 7bcc52d4c1905a5d1777c4c43427e359948959fe Mon Sep 17 00:00:00 2001 From: Denis Dzyubenko Date: Mon, 3 May 2010 16:03:11 +0200 Subject: Fixes a crash in QGestureManager when unregistering recognizers. Task-number: QTBUG-9801 Reviewed-by: Thomas Zander --- tests/auto/gestures/tst_gestures.cpp | 71 ++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/gestures/tst_gestures.cpp b/tests/auto/gestures/tst_gestures.cpp index f8ecca3b95..dfadf48c50 100644 --- a/tests/auto/gestures/tst_gestures.cpp +++ b/tests/auto/gestures/tst_gestures.cpp @@ -50,6 +50,7 @@ #include #include #include +#include #include @@ -355,6 +356,7 @@ private slots: void deleteGestureTargetItem(); void viewportCoordinates(); void partialGesturePropagation(); + void testQGestureRecognizerCleanup(); }; tst_Gestures::tst_Gestures() @@ -1949,5 +1951,74 @@ void tst_Gestures::partialGesturePropagation() QCOMPARE(item4->gestureEventsReceived, 0); } +class WinNativePan : public QPanGesture { +public: + WinNativePan() {} +}; + +class Pan : public QPanGesture { +public: + Pan() {} +}; + +class CustomPan : public QPanGesture { +public: + CustomPan() {} +}; + +// Recognizer for active gesture triggers on mouse press +class PanRecognizer : public QGestureRecognizer { +public: + enum PanType { Platform, Default, Custom }; + + PanRecognizer(int id) : m_id(id) {} + QGesture *create(QObject *) { + switch(m_id) { + case Platform: return new WinNativePan(); + case Default: return new Pan(); + default: return new CustomPan(); + } + } + + Result recognize(QGesture *, QObject *, QEvent *) { return QGestureRecognizer::Ignore; } + + const int m_id; +}; + +void tst_Gestures::testQGestureRecognizerCleanup() +{ + // Clean first the current recognizers in QGManager + QGestureRecognizer::unregisterRecognizer(Qt::PanGesture); + + // v-- Qt singleton QGManager initialization + + // Mimic QGestureManager: register both default and "platform" recognizers + // (this is done in windows when QT_NO_NATIVE_GESTURES is not defined) + PanRecognizer *def = new PanRecognizer(PanRecognizer::Default); + QGestureRecognizer::registerRecognizer(def); + PanRecognizer *plt = new PanRecognizer(PanRecognizer::Platform); + QGestureRecognizer::registerRecognizer(plt); + qDebug () << "register: default =" << def << "; platform =" << plt; + + // ^-- Qt singleton QGManager initialization + + // Here, application code would start + + // Create QGV (has a QAScrollArea, which uses Qt::PanGesture) + QMainWindow *w = new QMainWindow; + QGraphicsView *v = new QGraphicsView(); + w->setCentralWidget(v); + + // Unregister Qt recognizers + QGestureRecognizer::unregisterRecognizer(Qt::PanGesture); + + // Register a custom Pan recognizer + //QGestureRecognizer::registerRecognizer(new PanRecognizer(PanRecognizer::Custom)); + + w->show(); + QTest::qWaitForWindowShown(w); + delete w; +} + QTEST_MAIN(tst_Gestures) #include "tst_gestures.moc" -- cgit v1.2.1 From e0c8fc977738ca4ac6d31e45bdd2aa1b32828f54 Mon Sep 17 00:00:00 2001 From: mae Date: Mon, 3 May 2010 19:44:52 +0200 Subject: Remove QDeclarativeLoader::resizeMode The explicit resizeMode is superfluous, all usecases could be achieved with the corrected default behaviour of the former ResizeLoaderToItem mode. The NoResize usecase is covered by wrapping the loader in an extra item. That means: A loader automatically gets its size from the item loaded unless the loader has an explicit size itself. Go-ahead-by: Michael Brasser --- .../qdeclarativeloader/data/NoResize.qml | 7 ++- .../data/NoResizeGraphicsWidget.qml | 9 +-- .../data/SizeGraphicsWidgetToLoader.qml | 1 - .../data/SizeLoaderToGraphicsWidget.qml | 1 - .../qdeclarativeloader/data/SizeToItem.qml | 1 - .../qdeclarativeloader/data/SizeToLoader.qml | 1 - .../qdeclarativeloader/tst_qdeclarativeloader.cpp | 67 ++++++++++------------ 7 files changed, 40 insertions(+), 47 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeloader/data/NoResize.qml b/tests/auto/declarative/qdeclarativeloader/data/NoResize.qml index 6aa3d2fe33..72cd3b9f0e 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/NoResize.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/NoResize.qml @@ -1,7 +1,8 @@ import Qt 4.7 -Loader { - resizeMode: "NoResize" +Item { width: 200; height: 80 - source: "Rect120x60.qml" + Loader { + source: "Rect120x60.qml" + } } diff --git a/tests/auto/declarative/qdeclarativeloader/data/NoResizeGraphicsWidget.qml b/tests/auto/declarative/qdeclarativeloader/data/NoResizeGraphicsWidget.qml index 9322141ad7..0cff50643b 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/NoResizeGraphicsWidget.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/NoResizeGraphicsWidget.qml @@ -1,8 +1,9 @@ import Qt 4.7 -Loader { - resizeMode: Loader.NoResize - source: "GraphicsWidget250x250.qml" +Item { width: 200 - height: 80 + height: 80 + Loader { + source: "GraphicsWidget250x250.qml" + } } diff --git a/tests/auto/declarative/qdeclarativeloader/data/SizeGraphicsWidgetToLoader.qml b/tests/auto/declarative/qdeclarativeloader/data/SizeGraphicsWidgetToLoader.qml index 0cfb4df244..81610ad3c7 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/SizeGraphicsWidgetToLoader.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/SizeGraphicsWidgetToLoader.qml @@ -1,7 +1,6 @@ import Qt 4.7 Loader { - resizeMode: Loader.SizeItemToLoader width: 200 height: 80 source: "GraphicsWidget250x250.qml" diff --git a/tests/auto/declarative/qdeclarativeloader/data/SizeLoaderToGraphicsWidget.qml b/tests/auto/declarative/qdeclarativeloader/data/SizeLoaderToGraphicsWidget.qml index b588c9dc09..a801a42d03 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/SizeLoaderToGraphicsWidget.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/SizeLoaderToGraphicsWidget.qml @@ -1,6 +1,5 @@ import Qt 4.7 Loader { - resizeMode: Loader.SizeLoaderToItem source: "GraphicsWidget250x250.qml" } diff --git a/tests/auto/declarative/qdeclarativeloader/data/SizeToItem.qml b/tests/auto/declarative/qdeclarativeloader/data/SizeToItem.qml index 93be6f17cb..77aa8d9f78 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/SizeToItem.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/SizeToItem.qml @@ -1,6 +1,5 @@ import Qt 4.7 Loader { - resizeMode: "SizeLoaderToItem" source: "Rect120x60.qml" } diff --git a/tests/auto/declarative/qdeclarativeloader/data/SizeToLoader.qml b/tests/auto/declarative/qdeclarativeloader/data/SizeToLoader.qml index 04b46fb0e6..0098927736 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/SizeToLoader.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/SizeToLoader.qml @@ -1,7 +1,6 @@ import Qt 4.7 Loader { - resizeMode: "SizeItemToLoader" width: 200; height: 80 source: "Rect120x60.qml" } diff --git a/tests/auto/declarative/qdeclarativeloader/tst_qdeclarativeloader.cpp b/tests/auto/declarative/qdeclarativeloader/tst_qdeclarativeloader.cpp index 7cdadb4276..b56ff13e1a 100644 --- a/tests/auto/declarative/qdeclarativeloader/tst_qdeclarativeloader.cpp +++ b/tests/auto/declarative/qdeclarativeloader/tst_qdeclarativeloader.cpp @@ -270,7 +270,6 @@ void tst_QDeclarativeLoader::sizeLoaderToItem() QDeclarativeComponent component(&engine, TEST_FILE("/SizeToItem.qml")); QDeclarativeLoader *loader = qobject_cast(component.create()); QVERIFY(loader != 0); - QVERIFY(loader->resizeMode() == QDeclarativeLoader::SizeLoaderToItem); QCOMPARE(loader->width(), 120.0); QCOMPARE(loader->height(), 60.0); @@ -282,20 +281,28 @@ void tst_QDeclarativeLoader::sizeLoaderToItem() QCOMPARE(loader->width(), 150.0); QCOMPARE(loader->height(), 45.0); + // Check explicit width + loader->setWidth(200.0); + QCOMPARE(loader->width(), 200.0); + QCOMPARE(rect->width(), 200.0); + rect->setWidth(100.0); // when rect changes ... + QCOMPARE(rect->width(), 100.0); // ... it changes + QCOMPARE(loader->width(), 200.0); // ... but loader stays the same + + // Check explicit height + loader->setHeight(200.0); + QCOMPARE(loader->height(), 200.0); + QCOMPARE(rect->height(), 200.0); + rect->setHeight(100.0); // when rect changes ... + QCOMPARE(rect->height(), 100.0); // ... it changes + QCOMPARE(loader->height(), 200.0); // ... but loader stays the same + // Switch mode - loader->setResizeMode(QDeclarativeLoader::SizeItemToLoader); loader->setWidth(180); loader->setHeight(30); QCOMPARE(rect->width(), 180.0); QCOMPARE(rect->height(), 30.0); - // notify - QSignalSpy spy(loader, SIGNAL(resizeModeChanged())); - loader->setResizeMode(QDeclarativeLoader::NoResize); - QCOMPARE(spy.count(),1); - loader->setResizeMode(QDeclarativeLoader::NoResize); - QCOMPARE(spy.count(),1); - delete loader; } @@ -304,7 +311,6 @@ void tst_QDeclarativeLoader::sizeItemToLoader() QDeclarativeComponent component(&engine, TEST_FILE("/SizeToLoader.qml")); QDeclarativeLoader *loader = qobject_cast(component.create()); QVERIFY(loader != 0); - QVERIFY(loader->resizeMode() == QDeclarativeLoader::SizeItemToLoader); QCOMPARE(loader->width(), 200.0); QCOMPARE(loader->height(), 80.0); @@ -320,7 +326,8 @@ void tst_QDeclarativeLoader::sizeItemToLoader() QCOMPARE(rect->height(), 30.0); // Switch mode - loader->setResizeMode(QDeclarativeLoader::SizeLoaderToItem); + loader->resetWidth(); // reset explicit size + loader->resetHeight(); rect->setWidth(160); rect->setHeight(45); QCOMPARE(loader->width(), 160.0); @@ -332,17 +339,12 @@ void tst_QDeclarativeLoader::sizeItemToLoader() void tst_QDeclarativeLoader::noResize() { QDeclarativeComponent component(&engine, TEST_FILE("/NoResize.qml")); - QDeclarativeLoader *loader = qobject_cast(component.create()); - QVERIFY(loader != 0); - QCOMPARE(loader->width(), 200.0); - QCOMPARE(loader->height(), 80.0); - - QDeclarativeItem *rect = qobject_cast(loader->item()); - QVERIFY(rect); - QCOMPARE(rect->width(), 120.0); - QCOMPARE(rect->height(), 60.0); + QDeclarativeItem* item = qobject_cast(component.create()); + QVERIFY(item != 0); + QCOMPARE(item->width(), 200.0); + QCOMPARE(item->height(), 80.0); - delete loader; + delete item; } void tst_QDeclarativeLoader::sizeLoaderToGraphicsWidget() @@ -353,7 +355,6 @@ void tst_QDeclarativeLoader::sizeLoaderToGraphicsWidget() scene.addItem(loader); QVERIFY(loader != 0); - QVERIFY(loader->resizeMode() == QDeclarativeLoader::SizeLoaderToItem); QCOMPARE(loader->width(), 250.0); QCOMPARE(loader->height(), 250.0); @@ -365,7 +366,6 @@ void tst_QDeclarativeLoader::sizeLoaderToGraphicsWidget() QCOMPARE(loader->height(), 45.0); // Switch mode - loader->setResizeMode(QDeclarativeLoader::SizeItemToLoader); loader->setWidth(180); loader->setHeight(30); QCOMPARE(widget->size().width(), 180.0); @@ -382,7 +382,6 @@ void tst_QDeclarativeLoader::sizeGraphicsWidgetToLoader() scene.addItem(loader); QVERIFY(loader != 0); - QVERIFY(loader->resizeMode() == QDeclarativeLoader::SizeItemToLoader); QCOMPARE(loader->width(), 200.0); QCOMPARE(loader->height(), 80.0); @@ -398,7 +397,8 @@ void tst_QDeclarativeLoader::sizeGraphicsWidgetToLoader() QCOMPARE(widget->size().height(), 30.0); // Switch mode - loader->setResizeMode(QDeclarativeLoader::SizeLoaderToItem); + loader->resetWidth(); // reset explicit size + loader->resetHeight(); widget->resize(QSizeF(160,45)); QCOMPARE(loader->width(), 160.0); QCOMPARE(loader->height(), 45.0); @@ -409,20 +409,15 @@ void tst_QDeclarativeLoader::sizeGraphicsWidgetToLoader() void tst_QDeclarativeLoader::noResizeGraphicsWidget() { QDeclarativeComponent component(&engine, TEST_FILE("/NoResizeGraphicsWidget.qml")); - QDeclarativeLoader *loader = qobject_cast(component.create()); + QDeclarativeItem *item = qobject_cast(component.create()); QGraphicsScene scene; - scene.addItem(loader); - - QVERIFY(loader != 0); - QCOMPARE(loader->width(), 200.0); - QCOMPARE(loader->height(), 80.0); + scene.addItem(item); - QGraphicsWidget *widget = qobject_cast(loader->item()); - QVERIFY(widget); - QCOMPARE(widget->size().width(), 250.0); - QCOMPARE(widget->size().height(), 250.0); + QVERIFY(item != 0); + QCOMPARE(item->width(), 200.0); + QCOMPARE(item->height(), 80.0); - delete loader; + delete item; } void tst_QDeclarativeLoader::networkRequestUrl() -- cgit v1.2.1 From 1e3a6ac738b54c4ea3652b9f6ede665a1fafc72c Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Tue, 4 May 2010 14:03:01 +1000 Subject: Update childrenRect when children are added or removed. Task-number: QT-714 --- .../qdeclarativeitem/data/childrenRect.qml | 27 +++++++++++++++++++++ .../qdeclarativeitem/tst_qdeclarativeitem.cpp | 28 ++++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativeitem/data/childrenRect.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeitem/data/childrenRect.qml b/tests/auto/declarative/qdeclarativeitem/data/childrenRect.qml new file mode 100644 index 0000000000..f351b53dbb --- /dev/null +++ b/tests/auto/declarative/qdeclarativeitem/data/childrenRect.qml @@ -0,0 +1,27 @@ +import Qt 4.7 + +Rectangle { + width: 400 + height: 400 + + property int childCount: 0; + + Item { + objectName: "testItem" + width: childrenRect.width + height: childrenRect.height + + Repeater { + id: repeater + model: childCount + delegate: Rectangle { + x: index*10 + y: index*20 + width: 10 + height: 20 + + color: "red" + } + } + } +} diff --git a/tests/auto/declarative/qdeclarativeitem/tst_qdeclarativeitem.cpp b/tests/auto/declarative/qdeclarativeitem/tst_qdeclarativeitem.cpp index d2c328e3a9..e0ca7460c5 100644 --- a/tests/auto/declarative/qdeclarativeitem/tst_qdeclarativeitem.cpp +++ b/tests/auto/declarative/qdeclarativeitem/tst_qdeclarativeitem.cpp @@ -63,6 +63,7 @@ private slots: void propertyChanges(); void transforms(); void transforms_data(); + void childrenRect(); void childrenProperty(); void resourcesProperty(); @@ -537,6 +538,33 @@ void tst_QDeclarativeItem::propertyChanges() delete canvas; } +void tst_QDeclarativeItem::childrenRect() +{ + QDeclarativeView *canvas = new QDeclarativeView(0); + canvas->setFixedSize(240,320); + canvas->setSource(QUrl::fromLocalFile(SRCDIR "/data/childrenRect.qml")); + canvas->show(); + + QGraphicsObject *o = canvas->rootObject(); + QDeclarativeItem *item = o->findChild("testItem"); + QCOMPARE(item->width(), qreal(0)); + QCOMPARE(item->height(), qreal(0)); + + o->setProperty("childCount", 1); + QCOMPARE(item->width(), qreal(10)); + QCOMPARE(item->height(), qreal(20)); + + o->setProperty("childCount", 5); + QCOMPARE(item->width(), qreal(50)); + QCOMPARE(item->height(), qreal(100)); + + o->setProperty("childCount", 0); + QCOMPARE(item->width(), qreal(0)); + QCOMPARE(item->height(), qreal(0)); + + delete o; +} + template T *tst_QDeclarativeItem::findItem(QGraphicsObject *parent, const QString &objectName) { -- cgit v1.2.1 From e9f9887cfb6f3eace17640cb951f847d2e4a8c53 Mon Sep 17 00:00:00 2001 From: Jakob Truelsen Date: Mon, 3 May 2010 21:08:10 +0200 Subject: Propperly escape title and creator in PDF documents The title and creator fields in the PDF information section were not propperly escaped leading to invalid pdf documents when the title contain ')','(','\' (or any of the bazilion utf16 characters where one of the bytes happen to be the same as the ascii code for one of these). Merge-request: 2375 Reviewed-by: Benjamin Poulain --- tests/auto/qprinter/tst_qprinter.cpp | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/qprinter/tst_qprinter.cpp b/tests/auto/qprinter/tst_qprinter.cpp index 49bddb2a0c..8b7953337d 100644 --- a/tests/auto/qprinter/tst_qprinter.cpp +++ b/tests/auto/qprinter/tst_qprinter.cpp @@ -110,6 +110,7 @@ private slots: void testCurrentPage(); void taskQTBUG4497_reusePrinterOnDifferentFiles(); + void testPdfTitle(); private: }; @@ -417,7 +418,7 @@ void tst_QPrinter::testMargins() printer.setFullPage(fullpage); printer.setPageSize((QPrinter::PageSize)pagesize); if (withPainter) - painter = new QPainter(&printer); + painter = new QPainter(&printer); #ifdef QT3_SUPPORT Q3PaintDeviceMetrics metrics(&printer); @@ -1028,5 +1029,30 @@ void tst_QPrinter::testCurrentPage() } +void tst_QPrinter::testPdfTitle() +{ + // Check the document name is represented correctly in produced pdf + { + QPainter painter; + QPrinter printer; + // This string is just the UTF-8 encoding of the string: \()f ø hiragana o + const char title[]={0x5c, 0x28, 0x29, 0x66, 0xc3, 0xb8, 0xe3, 0x81, 0x8a, 0x00}; + printer.setOutputFileName("file.pdf"); + printer.setDocName(QString::fromUtf8(title)); + painter.begin(&printer); + painter.end(); + } + QFile file("file.pdf"); + QVERIFY(file.open(QIODevice::ReadOnly)); + // The we expect the title to appear in the PDF as: + // ASCII('\title (') UTF16(\\\(\)f ø hiragana o) ASCII(')'). + // which has the following binary representation + const char expected[] = { + 0x2f, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x20, 0x28, 0xfe, + 0xff, 0x00, 0x5c, 0x5c, 0x00, 0x5c, 0x28, 0x00, 0x5c, + 0x29, 0x00, 0x66, 0x00, 0xf8, 0x30, 0x4a, 0x29}; + QVERIFY(file.readAll().contains(QByteArray(expected, 26))); +} + QTEST_MAIN(tst_QPrinter) #include "tst_qprinter.moc" -- cgit v1.2.1 From de73874e1f52ed323b87a36d072048023d22112e Mon Sep 17 00:00:00 2001 From: Thierry Bastian Date: Tue, 4 May 2010 13:19:03 +0200 Subject: Fixed the position of the dock widget when undocked Reviewed-By: gabi Task-Number: QTBUG-9758 --- tests/auto/qdockwidget/tst_qdockwidget.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qdockwidget/tst_qdockwidget.cpp b/tests/auto/qdockwidget/tst_qdockwidget.cpp index a7349852f8..8d9e7bbf85 100644 --- a/tests/auto/qdockwidget/tst_qdockwidget.cpp +++ b/tests/auto/qdockwidget/tst_qdockwidget.cpp @@ -96,6 +96,7 @@ private slots: void task248604_infiniteResize(); void task258459_visibilityChanged(); void taskQTBUG_1665_closableChanged(); + void taskQTBUG_9758_undockedGeometry(); }; // Testing get/set functions @@ -878,6 +879,25 @@ void tst_QDockWidget::taskQTBUG_1665_closableChanged() QVERIFY(!(dock.windowFlags() & Qt::WindowCloseButtonHint)); } +void tst_QDockWidget::taskQTBUG_9758_undockedGeometry() +{ + QMainWindow window; + QDockWidget dock1(&window); + QDockWidget dock2(&window); + window.addDockWidget(Qt::RightDockWidgetArea, &dock1); + window.addDockWidget(Qt::RightDockWidgetArea, &dock2); + window.tabifyDockWidget(&dock1, &dock2); + dock1.hide(); + dock2.hide(); + window.show(); + dock1.setFloating(true); + dock1.show(); + + QVERIFY(dock1.x() >= 0); + QVERIFY(dock1.y() >= 0); +} + + QTEST_MAIN(tst_QDockWidget) #include "tst_qdockwidget.moc" -- cgit v1.2.1 From 395e00552802024cb41335bc87675441ff119d3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Abecasis?= Date: Tue, 4 May 2010 18:43:42 +0200 Subject: Skip tst_LargeFile::mapOffsetOverflow on Mac On this platform mmap'ing beyond EOF may succeed, even beyond filesystem capabilities, but generate Bus Errors on access. Skipping this failing test and accepting the underlying undefined behavior is the right thing to do, until QFile offers proper guarantees. Reviewed-by: Thiago Macieira --- tests/auto/qfile/largefile/tst_largefile.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qfile/largefile/tst_largefile.cpp b/tests/auto/qfile/largefile/tst_largefile.cpp index 041e5f2eba..60c5f89b98 100644 --- a/tests/auto/qfile/largefile/tst_largefile.cpp +++ b/tests/auto/qfile/largefile/tst_largefile.cpp @@ -523,6 +523,10 @@ void tst_LargeFile::mapFile() void tst_LargeFile::mapOffsetOverflow() { +#if defined(Q_OS_MAC) + QSKIP("mmap'ping beyond EOF may succeed; generate bus error on access", SkipAll); +#endif + // Out-of-range mappings should fail, and not silently clip the offset for (int i = 50; i < 63; ++i) { uchar *address = 0; -- cgit v1.2.1 From db64d17f233f92ce7a425271ee60586bd846705d Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Wed, 5 May 2010 16:34:38 +0200 Subject: whitespace fixes --- tests/auto/qnetworkreply/tst_qnetworkreply.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qnetworkreply/tst_qnetworkreply.cpp b/tests/auto/qnetworkreply/tst_qnetworkreply.cpp index ff79c094da..db8548df44 100644 --- a/tests/auto/qnetworkreply/tst_qnetworkreply.cpp +++ b/tests/auto/qnetworkreply/tst_qnetworkreply.cpp @@ -522,8 +522,8 @@ public: active->connectToHost("127.0.0.1", server.serverPort()); #ifndef Q_OS_SYMBIAN // need more time as working with embedded - // device and testing from emualtor - // things tend to get slower + // device and testing from emualtor + // things tend to get slower if (!active->waitForConnected(1000)) return false; @@ -929,7 +929,7 @@ void tst_QNetworkReply::invalidProtocol() void tst_QNetworkReply::getFromData_data() { - QTest::addColumn("request"); + QTest::addColumn("request"); QTest::addColumn("expected"); QTest::addColumn("mimeType"); @@ -1025,7 +1025,7 @@ void tst_QNetworkReply::getFromData() void tst_QNetworkReply::getFromFile() { - // create the file: + // create the file: QTemporaryFile file(QDir::currentPath() + "/temp-XXXXXX"); file.setAutoRemove(true); QVERIFY(file.open()); @@ -1077,7 +1077,7 @@ void tst_QNetworkReply::getFromFileSpecial_data() void tst_QNetworkReply::getFromFileSpecial() { - QFETCH(QString, fileName); + QFETCH(QString, fileName); QFETCH(QString, url); // open the resource so we can find out its size @@ -1107,7 +1107,7 @@ void tst_QNetworkReply::getFromFtp_data() void tst_QNetworkReply::getFromFtp() { - QFETCH(QString, referenceName); + QFETCH(QString, referenceName); QFETCH(QString, url); QFile reference(referenceName); @@ -1136,7 +1136,7 @@ void tst_QNetworkReply::getFromHttp_data() void tst_QNetworkReply::getFromHttp() { - QFETCH(QString, referenceName); + QFETCH(QString, referenceName); QFETCH(QString, url); QFile reference(referenceName); @@ -3456,8 +3456,8 @@ void tst_QNetworkReply::downloadProgress_data() QTest::newRow("big") << 4096; #else // it can run even with 4096 - // but it takes lot time - //especially on emulator + // but it takes lot time + //especially on emulator QTest::newRow("big") << 1024; #endif } @@ -3646,7 +3646,7 @@ void tst_QNetworkReply::receiveCookiesFromHttp_data() void tst_QNetworkReply::receiveCookiesFromHttp() { - QFETCH(QString, cookieString); + QFETCH(QString, cookieString); QByteArray data = cookieString.toLatin1() + '\n'; QUrl url("http://" + QtNetworkSettings::serverName() + "/qtest/cgi-bin/set-cookie.cgi"); -- cgit v1.2.1 From e41217d6d2e592e79a9a8a83c9e49491d66ad18e Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Wed, 5 May 2010 16:36:10 +0200 Subject: tst_qnetworkreply: add a test for getting from SMB Reviewed-By: Markus Goetz --- tests/auto/qnetworkreply/smb-file.txt | 1 + tests/auto/qnetworkreply/tst_qnetworkreply.cpp | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 tests/auto/qnetworkreply/smb-file.txt (limited to 'tests/auto') diff --git a/tests/auto/qnetworkreply/smb-file.txt b/tests/auto/qnetworkreply/smb-file.txt new file mode 100644 index 0000000000..73c3ac2c07 --- /dev/null +++ b/tests/auto/qnetworkreply/smb-file.txt @@ -0,0 +1 @@ +This is 34 bytes. Do not change... \ No newline at end of file diff --git a/tests/auto/qnetworkreply/tst_qnetworkreply.cpp b/tests/auto/qnetworkreply/tst_qnetworkreply.cpp index db8548df44..9d942bf02a 100644 --- a/tests/auto/qnetworkreply/tst_qnetworkreply.cpp +++ b/tests/auto/qnetworkreply/tst_qnetworkreply.cpp @@ -1073,6 +1073,9 @@ void tst_QNetworkReply::getFromFileSpecial_data() QTest::newRow("resource") << ":/resource" << "qrc:/resource"; QTest::newRow("search-path") << "srcdir:/rfc3252.txt" << "srcdir:/rfc3252.txt"; QTest::newRow("bigfile-path") << "srcdir:/bigfile" << "srcdir:/bigfile"; +#ifdef Q_OS_WIN + QTest::newRow("smb-path") << "srcdir:/smb-file.txt" << "file://" + QtNetworkSettings::winServerName() + "/testshare/test.pri"; +#endif } void tst_QNetworkReply::getFromFileSpecial() -- cgit v1.2.1 From a2f797b52c4274a62a7cf1f0939aca1429afe211 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Wed, 5 May 2010 16:48:21 +0200 Subject: Improve QUrl handling of local file paths Add QUrl::isLocalFile for a faster and more consistent checking of whether the URL is local or not. Improve the documentation to indicate that QUrl always treats SMB-like file paths as local, even if the system cannot open them (non-Windows). Add a test to ensure that "FILE:/a.txt" is considered local too (RFC 3986 requires schemes to be interpreted in case-insensitive fashion). Remove broken code that supported empty schemes as local file paths. Reviewed-by: Markus Goetz --- tests/auto/qurl/tst_qurl.cpp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/qurl/tst_qurl.cpp b/tests/auto/qurl/tst_qurl.cpp index fa42adc8a0..67bf0c1743 100644 --- a/tests/auto/qurl/tst_qurl.cpp +++ b/tests/auto/qurl/tst_qurl.cpp @@ -314,6 +314,7 @@ void tst_QUrl::constructing() QUrl buildUNC; + buildUNC.setScheme(QString::fromLatin1("file")); buildUNC.setHost(QString::fromLatin1("somehost")); buildUNC.setPath(QString::fromLatin1("somepath")); QCOMPARE(buildUNC.toLocalFile(), QString::fromLatin1("//somehost/somepath")); @@ -1757,7 +1758,15 @@ void tst_QUrl::toLocalFile_data() QTest::newRow("data7") << QString::fromLatin1("file://somehost/") << QString::fromLatin1("//somehost/"); QTest::newRow("data8") << QString::fromLatin1("file://somehost") << QString::fromLatin1("//somehost"); QTest::newRow("data9") << QString::fromLatin1("file:////somehost/somedir/somefile") << QString::fromLatin1("//somehost/somedir/somefile"); - + QTest::newRow("data10") << QString::fromLatin1("FILE:/a.txt") << QString::fromLatin1("/a.txt"); + + // and some that result in empty (i.e., not local) + QTest::newRow("xdata0") << QString::fromLatin1("/a.txt") << QString(); + QTest::newRow("xdata1") << QString::fromLatin1("//a.txt") << QString(); + QTest::newRow("xdata2") << QString::fromLatin1("///a.txt") << QString(); + QTest::newRow("xdata3") << QString::fromLatin1("foo:/a.txt") << QString(); + QTest::newRow("xdata4") << QString::fromLatin1("foo://a.txt") << QString(); + QTest::newRow("xdata5") << QString::fromLatin1("foo:///a.txt") << QString(); } void tst_QUrl::toLocalFile() -- cgit v1.2.1 From ebddf7a8739d7f4aaa7d9cb8a41a14eebb65e4f4 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Wed, 5 May 2010 16:51:41 +0200 Subject: Use QUrl::isLocalFile and fix the scheme checking in local URLs. RFC 3986 requires that schemes be compared case-insensitively, so "QRC:/" is allowed for Qt resources. Also document the use of file engines and search paths. Reviewed-by: Markus Goetz --- tests/auto/qnetworkreply/tst_qnetworkreply.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qnetworkreply/tst_qnetworkreply.cpp b/tests/auto/qnetworkreply/tst_qnetworkreply.cpp index 9d942bf02a..c4d458fed9 100644 --- a/tests/auto/qnetworkreply/tst_qnetworkreply.cpp +++ b/tests/auto/qnetworkreply/tst_qnetworkreply.cpp @@ -1166,6 +1166,12 @@ void tst_QNetworkReply::getErrors_data() QTest::addColumn("httpStatusCode"); QTest::addColumn("dataIsEmpty"); + // empties + QTest::newRow("empty-url") << QString() << int(QNetworkReply::ProtocolUnknownError) << 0 << true; + QTest::newRow("empty-scheme-host") << SRCDIR "/rfc3252.txt" << int(QNetworkReply::ProtocolUnknownError) << 0 << true; + QTest::newRow("empty-scheme") << "//" + QtNetworkSettings::winServerName() + "/testshare/test.pri" + << int(QNetworkReply::ProtocolUnknownError) << 0 << true; + // file: errors QTest::newRow("file-host") << "file://this-host-doesnt-exist.troll.no/foo.txt" #if !defined Q_OS_WIN -- cgit v1.2.1 From aebc59dde62651bbe60af626f289a587d475e73a Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Fri, 7 May 2010 10:19:25 +0200 Subject: tst_qxmlquery: Fix misuse of absolute paths as URLs Reviewed-By: Peter Hartmann --- tests/auto/qxmlquery/tst_qxmlquery.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qxmlquery/tst_qxmlquery.cpp b/tests/auto/qxmlquery/tst_qxmlquery.cpp index be0d708c62..6fd9b931da 100644 --- a/tests/auto/qxmlquery/tst_qxmlquery.cpp +++ b/tests/auto/qxmlquery/tst_qxmlquery.cpp @@ -857,7 +857,7 @@ void tst_QXmlQuery::bindVariableXSLTSuccess() const stylesheet.bindVariable(QLatin1String("paramSelectWithTypeIntBoundWithBindVariableRequired"), QVariant(QLatin1String("param5"))); - stylesheet.setQuery(QUrl(inputFile(QLatin1String(SRCDIR "../xmlpatterns/stylesheets/parameters.xsl")))); + stylesheet.setQuery(QUrl(inputFileAsURI(QLatin1String(SRCDIR "../xmlpatterns/stylesheets/parameters.xsl")))); QVERIFY(stylesheet.isValid()); @@ -1798,11 +1798,11 @@ void tst_QXmlQuery::setFocusQUrl() const { QXmlQuery query(QXmlQuery::XSLT20); - const TestURIResolver resolver(QUrl(inputFile(QLatin1String(SRCDIR "../xmlpatterns/stylesheets/documentElement.xml")))); + const TestURIResolver resolver(QUrl(inputFileAsURI(QLatin1String(SRCDIR "../xmlpatterns/stylesheets/documentElement.xml")))); query.setUriResolver(&resolver); QVERIFY(query.setFocus(QUrl(QLatin1String("arbitraryURI")))); - query.setQuery(QUrl(inputFile(QLatin1String(SRCDIR "../xmlpatterns/stylesheets/copyWholeDocument.xsl")))); + query.setQuery(QUrl(inputFileAsURI(QLatin1String(SRCDIR "../xmlpatterns/stylesheets/copyWholeDocument.xsl")))); QVERIFY(query.isValid()); QBuffer result; @@ -2997,7 +2997,7 @@ void tst_QXmlQuery::setInitialTemplateNameQXmlName() const QCOMPARE(query.initialTemplateName(), name); - query.setQuery(QUrl(inputFile(QLatin1String(SRCDIR "../xmlpatterns/stylesheets/namedTemplate.xsl")))); + query.setQuery(QUrl(inputFileAsURI(QLatin1String(SRCDIR "../xmlpatterns/stylesheets/namedTemplate.xsl")))); QVERIFY(query.isValid()); QBuffer result; @@ -3059,7 +3059,7 @@ void tst_QXmlQuery::setNetworkAccessManager() const /* Ensure fn:doc() picks up the right QNetworkAccessManager. */ { NetworkOverrider networkOverrider(QUrl(QLatin1String("tag:example.com:DOESNOTEXIST")), - QUrl(inputFile(QLatin1String(SRCDIR "../xmlpatterns/queries/simpleDocument.xml")))); + QUrl(inputFileAsURI(QLatin1String(SRCDIR "../xmlpatterns/queries/simpleDocument.xml")))); QXmlQuery query; query.setNetworkAccessManager(&networkOverrider); @@ -3075,7 +3075,7 @@ void tst_QXmlQuery::setNetworkAccessManager() const /* Ensure setQuery() is using the right network manager. */ { NetworkOverrider networkOverrider(QUrl(QLatin1String("tag:example.com:DOESNOTEXIST")), - QUrl(inputFile(QLatin1String(SRCDIR "../xmlpatterns/queries/concat.xq")))); + QUrl(inputFileAsURI(QLatin1String(SRCDIR "../xmlpatterns/queries/concat.xq")))); QXmlQuery query; query.setNetworkAccessManager(&networkOverrider); @@ -3135,7 +3135,7 @@ void tst_QXmlQuery::multipleDocsAndFocus() const query.setQuery(QLatin1String("string(doc('") + inputFile(QLatin1String(SRCDIR "../xmlpatterns/queries/simpleDocument.xml")) + QLatin1String("'))")); - query.setFocus(QUrl(inputFile(QLatin1String(SRCDIR "../xmlpatterns/stylesheets/documentElement.xml")))); + query.setFocus(QUrl(inputFileAsURI(QLatin1String(SRCDIR "../xmlpatterns/stylesheets/documentElement.xml")))); query.setQuery(QLatin1String("string(.)")); QStringList result; @@ -3159,11 +3159,11 @@ void tst_QXmlQuery::multipleEvaluationsWithDifferentFocus() const QXmlQuery query; QStringList result; - query.setFocus(QUrl(inputFile(QLatin1String(SRCDIR "../xmlpatterns/stylesheets/documentElement.xml")))); + query.setFocus(QUrl(inputFileAsURI(QLatin1String(SRCDIR "../xmlpatterns/stylesheets/documentElement.xml")))); query.setQuery(QLatin1String("string(.)")); QVERIFY(query.evaluateTo(&result)); - query.setFocus(QUrl(inputFile(QLatin1String(SRCDIR "../xmlpatterns/stylesheets/documentElement.xml")))); + query.setFocus(QUrl(inputFileAsURI(QLatin1String(SRCDIR "../xmlpatterns/stylesheets/documentElement.xml")))); QVERIFY(query.evaluateTo(&result)); } -- cgit v1.2.1 From 346215c3d9f0be621a833e7c735501504c7aa0b0 Mon Sep 17 00:00:00 2001 From: Jakub Wieczorek Date: Mon, 10 May 2010 11:02:37 +0200 Subject: tst_SuiteTest: Fix a meaningless switch statement The switch statement, that specifies which test handler should be used to run a test suite was missing break; statements, which made it always fall back to the XML Schema test suite. Merge-request: 619 Reviewed-by: Benjamin Poulain --- tests/auto/xmlpatternsxqts/tst_suitetest.cpp | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/xmlpatternsxqts/tst_suitetest.cpp b/tests/auto/xmlpatternsxqts/tst_suitetest.cpp index 64120c7c69..ec63858919 100644 --- a/tests/auto/xmlpatternsxqts/tst_suitetest.cpp +++ b/tests/auto/xmlpatternsxqts/tst_suitetest.cpp @@ -89,10 +89,17 @@ void tst_SuiteTest::runTestSuite() const TestSuite::SuiteType suiteType; switch (m_suiteType) { - case XQuerySuite: suiteType = TestSuite::XQuerySuite; - case XsltSuite: suiteType = TestSuite::XsltSuite; - case XsdSuite: suiteType = TestSuite::XsdSuite; - default: break; + case XQuerySuite: + suiteType = TestSuite::XQuerySuite; + break; + case XsltSuite: + suiteType = TestSuite::XsltSuite; + break; + case XsdSuite: + suiteType = TestSuite::XsdSuite; + break; + default: + break; } TestSuite *const ts = TestSuite::openCatalog(catalogPath, errMsg, true, suiteType); -- cgit v1.2.1 From 0828b63ce77846f14994f7c47468f0db8b42fbd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Morten=20Johan=20S=C3=B8rvig?= Date: Mon, 10 May 2010 12:39:52 +0200 Subject: Revert "Use QUrl::isLocalFile and fix the scheme checking in local URLs." This reverts commit ebddf7a8739d7f4aaa7d9cb8a41a14eebb65e4f4. --- tests/auto/qnetworkreply/tst_qnetworkreply.cpp | 6 ------ 1 file changed, 6 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qnetworkreply/tst_qnetworkreply.cpp b/tests/auto/qnetworkreply/tst_qnetworkreply.cpp index c4d458fed9..9d942bf02a 100644 --- a/tests/auto/qnetworkreply/tst_qnetworkreply.cpp +++ b/tests/auto/qnetworkreply/tst_qnetworkreply.cpp @@ -1166,12 +1166,6 @@ void tst_QNetworkReply::getErrors_data() QTest::addColumn("httpStatusCode"); QTest::addColumn("dataIsEmpty"); - // empties - QTest::newRow("empty-url") << QString() << int(QNetworkReply::ProtocolUnknownError) << 0 << true; - QTest::newRow("empty-scheme-host") << SRCDIR "/rfc3252.txt" << int(QNetworkReply::ProtocolUnknownError) << 0 << true; - QTest::newRow("empty-scheme") << "//" + QtNetworkSettings::winServerName() + "/testshare/test.pri" - << int(QNetworkReply::ProtocolUnknownError) << 0 << true; - // file: errors QTest::newRow("file-host") << "file://this-host-doesnt-exist.troll.no/foo.txt" #if !defined Q_OS_WIN -- cgit v1.2.1 From 98e935eed5549e479f6666680aed1711dc42111c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Morten=20Johan=20S=C3=B8rvig?= Date: Mon, 10 May 2010 14:12:52 +0200 Subject: Revert "Improve QUrl handling of local file paths" This reverts commit a2f797b52c4274a62a7cf1f0939aca1429afe211. --- tests/auto/qurl/tst_qurl.cpp | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qurl/tst_qurl.cpp b/tests/auto/qurl/tst_qurl.cpp index 67bf0c1743..fa42adc8a0 100644 --- a/tests/auto/qurl/tst_qurl.cpp +++ b/tests/auto/qurl/tst_qurl.cpp @@ -314,7 +314,6 @@ void tst_QUrl::constructing() QUrl buildUNC; - buildUNC.setScheme(QString::fromLatin1("file")); buildUNC.setHost(QString::fromLatin1("somehost")); buildUNC.setPath(QString::fromLatin1("somepath")); QCOMPARE(buildUNC.toLocalFile(), QString::fromLatin1("//somehost/somepath")); @@ -1758,15 +1757,7 @@ void tst_QUrl::toLocalFile_data() QTest::newRow("data7") << QString::fromLatin1("file://somehost/") << QString::fromLatin1("//somehost/"); QTest::newRow("data8") << QString::fromLatin1("file://somehost") << QString::fromLatin1("//somehost"); QTest::newRow("data9") << QString::fromLatin1("file:////somehost/somedir/somefile") << QString::fromLatin1("//somehost/somedir/somefile"); - QTest::newRow("data10") << QString::fromLatin1("FILE:/a.txt") << QString::fromLatin1("/a.txt"); - - // and some that result in empty (i.e., not local) - QTest::newRow("xdata0") << QString::fromLatin1("/a.txt") << QString(); - QTest::newRow("xdata1") << QString::fromLatin1("//a.txt") << QString(); - QTest::newRow("xdata2") << QString::fromLatin1("///a.txt") << QString(); - QTest::newRow("xdata3") << QString::fromLatin1("foo:/a.txt") << QString(); - QTest::newRow("xdata4") << QString::fromLatin1("foo://a.txt") << QString(); - QTest::newRow("xdata5") << QString::fromLatin1("foo:///a.txt") << QString(); + } void tst_QUrl::toLocalFile() -- cgit v1.2.1 From a1cda97c4002195f98c18c460d1f30682bb5a82e Mon Sep 17 00:00:00 2001 From: Jason Hollingsworth Date: Tue, 11 May 2010 16:26:42 +0200 Subject: Added QDateTime::msecsTo() This adds a QDateTime::msecsTo() function which is similar to QDateTime::secsTo(). This refers to QTBUG-8790 and task 147685. According to the task this functionality should have been added in version 4.5.0 but it never was. Task-number: 147685 Task-number: QTBUG-8790 Merge-request: 501 Reviewed-by: Benjamin Poulain Reviewed-by: Andreas Kling --- tests/auto/qdatetime/tst_qdatetime.cpp | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qdatetime/tst_qdatetime.cpp b/tests/auto/qdatetime/tst_qdatetime.cpp index 6aca996469..47c54a5563 100644 --- a/tests/auto/qdatetime/tst_qdatetime.cpp +++ b/tests/auto/qdatetime/tst_qdatetime.cpp @@ -106,6 +106,8 @@ private slots: void daysTo(); void secsTo_data(); void secsTo(); + void msecsTo_data(); + void msecsTo(); void operator_eqeq(); void currentDateTime(); void currentDateTimeUtc(); @@ -910,6 +912,30 @@ void tst_QDateTime::secsTo() QVERIFY((dt >= result) == (0 >= nsecs)); } +void tst_QDateTime::msecsTo_data() +{ + addMSecs_data(); +} + +void tst_QDateTime::msecsTo() +{ + QFETCH(QDateTime, dt); + QFETCH(int, nsecs); + QFETCH(QDateTime, result); + +#ifdef Q_OS_IRIX + QEXPECT_FAIL("cet4", "IRIX databases say 1970 had DST", Abort); +#endif + QCOMPARE(dt.msecsTo(result), qint64(nsecs) * 1000); + QCOMPARE(result.msecsTo(dt), -qint64(nsecs) * 1000); + QVERIFY((dt == result) == (0 == (qint64(nsecs) * 1000))); + QVERIFY((dt != result) == (0 != (qint64(nsecs) * 1000))); + QVERIFY((dt < result) == (0 < (qint64(nsecs) * 1000))); + QVERIFY((dt <= result) == (0 <= (qint64(nsecs) * 1000))); + QVERIFY((dt > result) == (0 > (qint64(nsecs) * 1000))); + QVERIFY((dt >= result) == (0 >= (qint64(nsecs) * 1000))); +} + void tst_QDateTime::currentDateTime() { #if defined(Q_OS_WINCE) -- cgit v1.2.1 From 4982b883c31874206aaa05268852fbcee81a8a39 Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Wed, 5 May 2010 11:49:20 +1000 Subject: Enable states to be activated via their 'when' clause even if unnamed. Autogenerate a name for unnamed states: "anonymousState1", etc. Task-number: QTBUG-10352 Reviewed-by: Aaron Kennedy --- .../qdeclarativestates/data/unnamedWhen.qml | 14 ++++++++++++++ .../qdeclarativestates/tst_qdeclarativestates.cpp | 20 ++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativestates/data/unnamedWhen.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativestates/data/unnamedWhen.qml b/tests/auto/declarative/qdeclarativestates/data/unnamedWhen.qml new file mode 100644 index 0000000000..a70840c86e --- /dev/null +++ b/tests/auto/declarative/qdeclarativestates/data/unnamedWhen.qml @@ -0,0 +1,14 @@ +import Qt 4.7 + +Rectangle { + id: theRect + property bool triggerState: false + property string stateString: "" + states: State { + when: triggerState + PropertyChanges { + target: theRect + stateString: "inState" + } + } +} diff --git a/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp b/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp index d384d265a1..13992ad801 100644 --- a/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp +++ b/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp @@ -110,6 +110,7 @@ private slots: void illegalObjectCreation(); void whenOrdering(); void urlResolution(); + void unnamedWhen(); }; void tst_qdeclarativestates::initTestCase() @@ -1049,6 +1050,25 @@ void tst_qdeclarativestates::urlResolution() QCOMPARE(image3->source(), resolved); } +void tst_qdeclarativestates::unnamedWhen() +{ + QDeclarativeEngine engine; + + QDeclarativeComponent c(&engine, SRCDIR "/data/unnamedWhen.qml"); + QDeclarativeRectangle *rect = qobject_cast(c.create()); + QVERIFY(rect != 0); + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); + + QCOMPARE(rectPrivate->state(), QLatin1String("")); + QCOMPARE(rect->property("stateString").toString(), QLatin1String("")); + rect->setProperty("triggerState", true); + QCOMPARE(rectPrivate->state(), QLatin1String("anonymousState1")); + QCOMPARE(rect->property("stateString").toString(), QLatin1String("inState")); + rect->setProperty("triggerState", false); + QCOMPARE(rectPrivate->state(), QLatin1String("")); + QCOMPARE(rect->property("stateString").toString(), QLatin1String("")); +} + QTEST_MAIN(tst_qdeclarativestates) #include "tst_qdeclarativestates.moc" -- cgit v1.2.1 From 326dab74ba8df7707d1054ca5e0280c5f131c148 Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Wed, 5 May 2010 12:51:02 +1000 Subject: Null objects should appear as JS null --- tests/auto/declarative/qdeclarativeecmascript/data/deletedObject.qml | 4 ++-- .../declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/deletedObject.qml b/tests/auto/declarative/qdeclarativeecmascript/data/deletedObject.qml index 72b59aedee..2337e445a8 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/deletedObject.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/deletedObject.qml @@ -19,7 +19,7 @@ QtObject { myObject.deleteOnSet = 1; - test3 = myObject.value == undefined; - test4 = obj.value == undefined; + test3 = myObject == null + test4 = obj == null } } diff --git a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp index 6d39be2cd6..8c9290fc6b 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp +++ b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp @@ -1104,7 +1104,7 @@ void tst_qdeclarativeecmascript::exceptionClearsOnReeval() QDeclarativeComponent component(&engine, TEST_FILE("exceptionClearsOnReeval.qml")); QString url = component.url().toString(); - QString warning = url + ":4: TypeError: Result of expression 'objectProperty.objectProperty' [undefined] is not an object."; + QString warning = url + ":4: TypeError: Result of expression 'objectProperty' [null] is not an object."; QTest::ignoreMessage(QtWarningMsg, warning.toLatin1().constData()); MyQmlObject *object = qobject_cast(component.create()); -- cgit v1.2.1 From 846210c6381827396868d15cdbb6d42daabda147 Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Wed, 5 May 2010 14:32:45 +1000 Subject: Don't start valuesource animations until all component objects have been completed. Task-number: QTBUG-9413 --- .../qmlvisual/animation/pauseAnimation/pauseAnimation-visual.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/pauseAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/pauseAnimation-visual.qml index d82c6df914..cc9a639d50 100644 --- a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/pauseAnimation-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/pauseAnimation-visual.qml @@ -16,7 +16,7 @@ Rectangle { id: img source: "pics/qtlogo.png" x: 60-width/2 - y: 100 + y: 200-img.height SequentialAnimation on y { loops: Animation.Infinite NumberAnimation { @@ -24,7 +24,7 @@ Rectangle { easing.type: "InOutQuad" } NumberAnimation { - to: 100 + to: 200-img.height easing.type: "OutBounce" duration: 2000 } -- cgit v1.2.1 From ce9bc843443f2c61361afa75a62a7d39029557e6 Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Wed, 5 May 2010 14:38:55 +1000 Subject: QList models now update their properties when they change. Task-number: QTBUG-10348 --- .../declarative/qdeclarativerepeater/data/objlist.qml | 2 +- .../qdeclarativerepeater/tst_qdeclarativerepeater.cpp | 19 ++++++++++++++----- 2 files changed, 15 insertions(+), 6 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativerepeater/data/objlist.qml b/tests/auto/declarative/qdeclarativerepeater/data/objlist.qml index 17c5d8d76c..e1bd2e2d89 100644 --- a/tests/auto/declarative/qdeclarativerepeater/data/objlist.qml +++ b/tests/auto/declarative/qdeclarativerepeater/data/objlist.qml @@ -14,7 +14,7 @@ Rectangle { property int instantiated: 0 Component { Item{ - Component.onCompleted: {if(index!=model.idx) repeater.errors += 1; repeater.instantiated++} + Component.onCompleted: {if(index!=modelData.idx) repeater.errors += 1; repeater.instantiated++} } } } diff --git a/tests/auto/declarative/qdeclarativerepeater/tst_qdeclarativerepeater.cpp b/tests/auto/declarative/qdeclarativerepeater/tst_qdeclarativerepeater.cpp index 8be7d80e26..e6b2fdd663 100644 --- a/tests/auto/declarative/qdeclarativerepeater/tst_qdeclarativerepeater.cpp +++ b/tests/auto/declarative/qdeclarativerepeater/tst_qdeclarativerepeater.cpp @@ -185,15 +185,24 @@ void tst_QDeclarativeRepeater::numberModel() delete canvas; } +class MyObject : public QObject +{ + Q_OBJECT + Q_PROPERTY(int idx READ idx CONSTANT) +public: + MyObject(int i) : QObject(), m_idx(i) {} + + int idx() const { return m_idx; } + + int m_idx; +}; + void tst_QDeclarativeRepeater::objectList() { QDeclarativeView *canvas = createView(); - QObjectList data; - for(int i=0; i<100; i++){ - data << new QObject(); - data.back()->setProperty("idx", i); - } + for(int i=0; i<100; i++) + data << new MyObject(i); QDeclarativeContext *ctxt = canvas->rootContext(); ctxt->setContextProperty("testData", QVariant::fromValue(data)); -- cgit v1.2.1 From b1bf4b23fb34337ea1b5ebdd5aedaad48f5c9f4a Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Wed, 5 May 2010 15:13:35 +1000 Subject: Test for QList model with object properties changing. --- .../tst_qdeclarativevisualdatamodel.cpp | 99 ++++++++++++++++++++++ 1 file changed, 99 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativevisualdatamodel/tst_qdeclarativevisualdatamodel.cpp b/tests/auto/declarative/qdeclarativevisualdatamodel/tst_qdeclarativevisualdatamodel.cpp index 7de15a38ba..c238ef9afe 100644 --- a/tests/auto/declarative/qdeclarativevisualdatamodel/tst_qdeclarativevisualdatamodel.cpp +++ b/tests/auto/declarative/qdeclarativevisualdatamodel/tst_qdeclarativevisualdatamodel.cpp @@ -44,6 +44,10 @@ #include #include #include +#include +#include +#include +#include #include #include #include @@ -74,9 +78,50 @@ public: private slots: void rootIndex(); + void objectListModel(); private: QDeclarativeEngine engine; + template + T *findItem(QGraphicsObject *parent, const QString &objectName, int index); +}; + +class DataObject : public QObject +{ + Q_OBJECT + + Q_PROPERTY(QString name READ name WRITE setName NOTIFY nameChanged) + Q_PROPERTY(QString color READ color WRITE setColor NOTIFY colorChanged) + +public: + DataObject(QObject *parent=0) : QObject(parent) {} + DataObject(const QString &name, const QString &color, QObject *parent=0) + : QObject(parent), m_name(name), m_color(color) { } + + + QString name() const { return m_name; } + void setName(const QString &name) { + if (name != m_name) { + m_name = name; + emit nameChanged(); + } + } + + QString color() const { return m_color; } + void setColor(const QString &color) { + if (color != m_color) { + m_color = color; + emit colorChanged(); + } + } + +signals: + void nameChanged(); + void colorChanged(); + +private: + QString m_name; + QString m_color; }; tst_qdeclarativevisualdatamodel::tst_qdeclarativevisualdatamodel() @@ -105,6 +150,60 @@ void tst_qdeclarativevisualdatamodel::rootIndex() delete obj; } +void tst_qdeclarativevisualdatamodel::objectListModel() +{ + QDeclarativeView view; + + QList dataList; + dataList.append(new DataObject("Item 1", "red")); + dataList.append(new DataObject("Item 2", "green")); + dataList.append(new DataObject("Item 3", "blue")); + dataList.append(new DataObject("Item 4", "yellow")); + + QDeclarativeContext *ctxt = view.rootContext(); + ctxt->setContextProperty("myModel", QVariant::fromValue(dataList)); + + view.setSource(QUrl::fromLocalFile(SRCDIR "/data/objectlist.qml")); + + QDeclarativeListView *listview = qobject_cast(view.rootObject()); + QVERIFY(listview != 0); + + QDeclarativeItem *viewport = listview->viewport(); + QVERIFY(viewport != 0); + + QDeclarativeText *name = findItem(viewport, "name", 0); + QCOMPARE(name->text(), QString("Item 1")); + + dataList[0]->setProperty("name", QLatin1String("Changed")); + QCOMPARE(name->text(), QString("Changed")); +} + +template +T *tst_qdeclarativevisualdatamodel::findItem(QGraphicsObject *parent, const QString &objectName, int index) +{ + const QMetaObject &mo = T::staticMetaObject; + //qDebug() << parent->childItems().count() << "children"; + for (int i = 0; i < parent->childItems().count(); ++i) { + QDeclarativeItem *item = qobject_cast(parent->childItems().at(i)); + if(!item) + continue; + //qDebug() << "try" << item; + if (mo.cast(item) && (objectName.isEmpty() || item->objectName() == objectName)) { + if (index != -1) { + QDeclarativeExpression e(qmlContext(item), "index", item); + if (e.evaluate().toInt() == index) + return static_cast(item); + } else { + return static_cast(item); + } + } + item = findItem(item, objectName, index); + if (item) + return static_cast(item); + } + + return 0; +} QTEST_MAIN(tst_qdeclarativevisualdatamodel) -- cgit v1.2.1 From 238ed995be8f32e815ffb6883144d0547355a8eb Mon Sep 17 00:00:00 2001 From: Alan Alpert Date: Tue, 4 May 2010 14:14:46 +0200 Subject: Move Qt.widgets import to be an unsupported example Layout examples for QML are also cleaned up a bit. Layouts test removed, and LayoutItem test added, to clarify what we support. Reviewed-by: Michael Brasser --- .../qdeclarativelayoutitem/data/layoutItem.qml | 9 ++ .../qdeclarativelayoutitem.pro | 8 ++ .../tst_qdeclarativelayoutitem.cpp | 115 ++++++++++++++++ .../qdeclarativelayouts/data/layouts.qml | 31 ----- .../qdeclarativelayouts/qdeclarativelayouts.pro | 10 -- .../tst_qdeclarativelayouts.cpp | 147 --------------------- 6 files changed, 132 insertions(+), 188 deletions(-) create mode 100644 tests/auto/declarative/qdeclarativelayoutitem/data/layoutItem.qml create mode 100644 tests/auto/declarative/qdeclarativelayoutitem/qdeclarativelayoutitem.pro create mode 100644 tests/auto/declarative/qdeclarativelayoutitem/tst_qdeclarativelayoutitem.cpp delete mode 100644 tests/auto/declarative/qdeclarativelayouts/data/layouts.qml delete mode 100644 tests/auto/declarative/qdeclarativelayouts/qdeclarativelayouts.pro delete mode 100644 tests/auto/declarative/qdeclarativelayouts/tst_qdeclarativelayouts.cpp (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativelayoutitem/data/layoutItem.qml b/tests/auto/declarative/qdeclarativelayoutitem/data/layoutItem.qml new file mode 100644 index 0000000000..ee881a2ddf --- /dev/null +++ b/tests/auto/declarative/qdeclarativelayoutitem/data/layoutItem.qml @@ -0,0 +1,9 @@ +import Qt 4.7 + +LayoutItem {//Sized by the layout + id: resizable + objectName: "resizable" + minimumSize: "100x100" + maximumSize: "300x300" + preferredSize: "200x200" +} diff --git a/tests/auto/declarative/qdeclarativelayoutitem/qdeclarativelayoutitem.pro b/tests/auto/declarative/qdeclarativelayoutitem/qdeclarativelayoutitem.pro new file mode 100644 index 0000000000..eeb784d2ac --- /dev/null +++ b/tests/auto/declarative/qdeclarativelayoutitem/qdeclarativelayoutitem.pro @@ -0,0 +1,8 @@ +load(qttest_p4) +contains(QT_CONFIG,declarative): QT += declarative gui +macx:CONFIG -= app_bundle + +SOURCES += tst_qdeclarativelayoutitem.cpp + +# Define SRCDIR equal to test's source directory +DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativelayoutitem/tst_qdeclarativelayoutitem.cpp b/tests/auto/declarative/qdeclarativelayoutitem/tst_qdeclarativelayoutitem.cpp new file mode 100644 index 0000000000..2207635331 --- /dev/null +++ b/tests/auto/declarative/qdeclarativelayoutitem/tst_qdeclarativelayoutitem.cpp @@ -0,0 +1,115 @@ +/**************************************************************************** +** +** 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 test suite 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 +#include +#include +#include +#include +#include +#include +#include "../../../shared/util.h" + +class tst_qdeclarativelayoutitem : public QObject +{ + Q_OBJECT +public: + tst_qdeclarativelayoutitem(); + +private slots: + void test_resizing(); +}; + +tst_qdeclarativelayoutitem::tst_qdeclarativelayoutitem() +{ +} + +void tst_qdeclarativelayoutitem::test_resizing() +{ + //Create Layout (must be done in C++) + 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(SRCDIR "/data/layoutItem.qml")); + QDeclarativeLayoutItem* obj = static_cast(c.create()); + layout->addItem(obj); + layout->setContentsMargins(0,0,0,0); + widget->setContentsMargins(0,0,0,0); + view.show(); + + QVERIFY(obj!= 0); + + widget->setGeometry(QRectF(0,0, 400,400)); + QCOMPARE(obj->width(), 300.0); + QCOMPARE(obj->height(), 300.0); + + widget->setGeometry(QRectF(0,0, 300,300)); + QCOMPARE(obj->width(), 300.0); + QCOMPARE(obj->height(), 300.0); + + widget->setGeometry(QRectF(0,0, 200,200)); + QCOMPARE(obj->width(), 200.0); + QCOMPARE(obj->height(), 200.0); + + widget->setGeometry(QRectF(0,0, 100,100)); + QCOMPARE(obj->width(), 100.0); + QCOMPARE(obj->height(), 100.0); + + widget->setGeometry(QRectF(0,0, 40,40)); + QCOMPARE(obj->width(), 100.0); + QCOMPARE(obj->height(), 100.0); + + widget->setGeometry(QRectF(0,0, 412,112)); + QCOMPARE(obj->width(), 300.0); + QCOMPARE(obj->height(), 112.0); +} + + +QTEST_MAIN(tst_qdeclarativelayoutitem) + +#include "tst_qdeclarativelayoutitem.moc" diff --git a/tests/auto/declarative/qdeclarativelayouts/data/layouts.qml b/tests/auto/declarative/qdeclarativelayouts/data/layouts.qml deleted file mode 100644 index 05387387d8..0000000000 --- a/tests/auto/declarative/qdeclarativelayouts/data/layouts.qml +++ /dev/null @@ -1,31 +0,0 @@ -import Qt 4.7 -import Qt.widgets 4.7 - -Item { - id: resizable - width:300 - height:300 - QGraphicsWidget { - x : resizable.x - y : resizable.y - width : resizable.width - height : resizable.height - layout: QGraphicsLinearLayout { - spacing: 0 - LayoutItem { - objectName: "left" - minimumSize: "100x100" - maximumSize: "300x300" - preferredSize: "100x100" - Rectangle { objectName: "yellowRect"; color: "yellow"; anchors.fill: parent } - } - LayoutItem { - objectName: "right" - minimumSize: "100x100" - maximumSize: "400x400" - preferredSize: "200x200" - Rectangle { objectName: "greenRect"; color: "green"; anchors.fill: parent } - } - } - } -} diff --git a/tests/auto/declarative/qdeclarativelayouts/qdeclarativelayouts.pro b/tests/auto/declarative/qdeclarativelayouts/qdeclarativelayouts.pro deleted file mode 100644 index a2065f4cb6..0000000000 --- a/tests/auto/declarative/qdeclarativelayouts/qdeclarativelayouts.pro +++ /dev/null @@ -1,10 +0,0 @@ -load(qttest_p4) -contains(QT_CONFIG,declarative): QT += declarative -SOURCES += tst_qdeclarativelayouts.cpp -macx:CONFIG -= app_bundle - -# Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" - -CONFIG += parallel_test - diff --git a/tests/auto/declarative/qdeclarativelayouts/tst_qdeclarativelayouts.cpp b/tests/auto/declarative/qdeclarativelayouts/tst_qdeclarativelayouts.cpp deleted file mode 100644 index 412c3b754b..0000000000 --- a/tests/auto/declarative/qdeclarativelayouts/tst_qdeclarativelayouts.cpp +++ /dev/null @@ -1,147 +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 test suite 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 -#include -#include -#include - -class tst_QDeclarativeLayouts : public QObject -{ - Q_OBJECT -public: - tst_QDeclarativeLayouts(); - -private slots: - void test_qml();//GraphicsLayout set up in Qml - void test_cpp();//GraphicsLayout set up in C++ - -private: - QDeclarativeView *createView(const QString &filename); -}; - -tst_QDeclarativeLayouts::tst_QDeclarativeLayouts() -{ -} - -void tst_QDeclarativeLayouts::test_qml() -{ - QDeclarativeView *canvas = createView(SRCDIR "/data/layouts.qml"); - - qApp->processEvents(); - QDeclarativeLayoutItem *left = static_cast(canvas->rootObject()->findChild("left")); - QVERIFY(left != 0); - - QDeclarativeLayoutItem *right = static_cast(canvas->rootObject()->findChild("right")); - QVERIFY(right != 0); - - qreal l = QApplication::style()->pixelMetric(QStyle::PM_LayoutLeftMargin); - qreal r = QApplication::style()->pixelMetric(QStyle::PM_LayoutRightMargin); - qreal t = QApplication::style()->pixelMetric(QStyle::PM_LayoutTopMargin); - qreal b = QApplication::style()->pixelMetric(QStyle::PM_LayoutBottomMargin); - QVERIFY2(l == r && r == t && t == b, "Test assumes equal margins."); - qreal gvMargin = l; - - QDeclarativeItem *rootItem = qobject_cast(canvas->rootObject()); - QVERIFY(rootItem != 0); - - //Preferred Size - rootItem->setWidth(300 + 2*gvMargin); - rootItem->setHeight(300 + 2*gvMargin); - - QCOMPARE(left->x(), gvMargin); - QCOMPARE(left->y(), gvMargin); - QCOMPARE(left->width(), 100.0); - QCOMPARE(left->height(), 300.0); - - QCOMPARE(right->x(), 100.0 + gvMargin); - QCOMPARE(right->y(), 0.0 + gvMargin); - QCOMPARE(right->width(), 200.0); - QCOMPARE(right->height(), 300.0); - - //Minimum Size - rootItem->setWidth(10+2*gvMargin); - rootItem->setHeight(10+2*gvMargin); - - QCOMPARE(left->x(), gvMargin); - QCOMPARE(left->width(), 100.0); - QCOMPARE(left->height(), 100.0); - - QCOMPARE(right->x(), 100.0 + gvMargin); - QCOMPARE(right->width(), 100.0); - QCOMPARE(right->height(), 100.0); - - //Between preferred and Maximum Size - /*Note that if set to maximum size (or above) GraphicsLinearLayout behavior - is to shrink them down to preferred size. So the exact maximum size can't - be used*/ - rootItem->setWidth(670 + 2*gvMargin); - rootItem->setHeight(300 + 2*gvMargin); - - QCOMPARE(left->x(), gvMargin); - QCOMPARE(left->width(), 270.0); - QCOMPARE(left->height(), 300.0); - - QCOMPARE(right->x(), 270.0 + gvMargin); - QCOMPARE(right->width(), 400.0); - QCOMPARE(right->height(), 300.0); - - delete canvas; -} - -void tst_QDeclarativeLayouts::test_cpp() -{ - //TODO: This test! -} - -QDeclarativeView *tst_QDeclarativeLayouts::createView(const QString &filename) -{ - QDeclarativeView *canvas = new QDeclarativeView(0); - canvas->setSource(QUrl::fromLocalFile(filename)); - - return canvas; -} - - -QTEST_MAIN(tst_QDeclarativeLayouts) - -#include "tst_qdeclarativelayouts.moc" -- cgit v1.2.1 From 87f7444d2af1299460bdbfc1cbfa903ea504b7e3 Mon Sep 17 00:00:00 2001 From: aavit Date: Wed, 5 May 2010 10:20:03 +0200 Subject: Fixes regression: SVG image loading would fail from QBuffer with pos!=0 Was introduced with 2fe059c. Also now updates pos() as expected after reading in these cases. Autotest added to catch issues where pos != 0, or wrong pos after read. Reviewed-by: Kim --- tests/auto/qimagereader/tst_qimagereader.cpp | 63 +++++++++++++++++++++++++++- 1 file changed, 62 insertions(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/qimagereader/tst_qimagereader.cpp b/tests/auto/qimagereader/tst_qimagereader.cpp index 1b4c502896..aadee5bf2e 100644 --- a/tests/auto/qimagereader/tst_qimagereader.cpp +++ b/tests/auto/qimagereader/tst_qimagereader.cpp @@ -114,6 +114,9 @@ private slots: void readFromFileAfterJunk_data(); void readFromFileAfterJunk(); + void devicePosition_data(); + void devicePosition(); + void setBackgroundColor_data(); void setBackgroundColor(); @@ -1117,7 +1120,7 @@ void tst_QImageReader::readFromFileAfterJunk() QByteArray imageData = imageFile.readAll(); QVERIFY(!imageData.isNull()); - int iterations = 10; + int iterations = 3; if (format == "ppm" || format == "pbm" || format == "pgm" || format == "svg" || format == "svgz") iterations = 1; @@ -1147,6 +1150,64 @@ void tst_QImageReader::readFromFileAfterJunk() } } +void tst_QImageReader::devicePosition_data() +{ + QTest::addColumn("fileName"); + QTest::addColumn("format"); + + QTest::newRow("pbm") << QString("image.pbm") << QByteArray("pbm"); + QTest::newRow("pgm") << QString("image.pgm") << QByteArray("pgm"); + QTest::newRow("ppm-1") << QString("image.ppm") << QByteArray("ppm"); +#ifdef QTEST_HAVE_JPEG + QTest::newRow("jpeg-1") << QString("beavis.jpg") << QByteArray("jpeg"); + QTest::newRow("jpeg-2") << QString("YCbCr_cmyk.jpg") << QByteArray("jpeg"); + QTest::newRow("jpeg-3") << QString("YCbCr_rgb.jpg") << QByteArray("jpeg"); +#endif +#if defined QTEST_HAVE_GIF + QTest::newRow("gif-1") << QString("earth.gif") << QByteArray("gif"); +#endif + QTest::newRow("xbm") << QString("gnus.xbm") << QByteArray("xbm"); + QTest::newRow("xpm") << QString("marble.xpm") << QByteArray("xpm"); + QTest::newRow("bmp-1") << QString("colorful.bmp") << QByteArray("bmp"); + QTest::newRow("bmp-2") << QString("font.bmp") << QByteArray("bmp"); + QTest::newRow("png") << QString("kollada.png") << QByteArray("png"); +// QTest::newRow("mng-1") << QString("images/ball.mng") << QByteArray("mng"); +// QTest::newRow("mng-2") << QString("images/fire.mng") << QByteArray("mng"); +#if defined QTEST_HAVE_SVG + QTest::newRow("svg") << QString("rect.svg") << QByteArray("svg"); + QTest::newRow("svgz") << QString("rect.svgz") << QByteArray("svgz"); +#endif +} + +void tst_QImageReader::devicePosition() +{ + QFETCH(QString, fileName); + QFETCH(QByteArray, format); + + QImage expected(prefix + fileName); + QVERIFY(!expected.isNull()); + + QFile imageFile(prefix + fileName); + QVERIFY(imageFile.open(QFile::ReadOnly)); + QByteArray imageData = imageFile.readAll(); + QVERIFY(!imageData.isNull()); + int imageDataSize = imageData.size(); + + const char *preStr = "prebeef\n"; + int preLen = qstrlen(preStr); + imageData.prepend(preStr); + if (format != "svg" && format != "svgz") // Doesn't handle trailing data + imageData.append("\npostbeef"); + QBuffer buf(&imageData); + buf.open(QIODevice::ReadOnly); + buf.seek(preLen); + QImageReader reader(&buf, format); + QCOMPARE(expected, reader.read()); + if (format != "ppm" && format != "gif") // Known not to work + QCOMPARE(buf.pos(), qint64(preLen+imageDataSize)); +} + + void tst_QImageReader::description_data() { QTest::addColumn("fileName"); -- cgit v1.2.1 From c1c7dbf2a066868503dfabcd7113856fa6d2e457 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Nilsen?= Date: Tue, 4 May 2010 13:14:10 +0200 Subject: Performance issue with QGraphicsItem::ItemClipsChildrenToShape. If the child rect is bigger than the parent rect and parent has the ItemClipsChildrenToShape flag set, then by updating the child, the whole child rect is marked as dirty, resulting in a much larger update area than required. This has a major impact on performance in Orbit/HB, where e.g. item-views typically consist of a container item that clips its children/items to shape. See attached video in QTBUG-9024. Auto test included. Task-number: QTBUG-9024 --- tests/auto/qgraphicsview/tst_qgraphicsview.cpp | 57 ++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qgraphicsview/tst_qgraphicsview.cpp b/tests/auto/qgraphicsview/tst_qgraphicsview.cpp index 1df9a373b0..b8df7f6b84 100644 --- a/tests/auto/qgraphicsview/tst_qgraphicsview.cpp +++ b/tests/auto/qgraphicsview/tst_qgraphicsview.cpp @@ -218,6 +218,7 @@ private slots: void update(); void update2_data(); void update2(); + void update_ancestorClipsChildrenToShape(); void inputMethodSensitivity(); void inputContextReset(); void indirectPainting(); @@ -3758,6 +3759,62 @@ void tst_QGraphicsView::update2() #endif } +void tst_QGraphicsView::update_ancestorClipsChildrenToShape() +{ + QGraphicsScene scene(-150, -150, 300, 300); + + /* + Add three rects: + + +------------------+ + | child | + | +--------------+ | + | | parent | | + | | +-----------+ | + | | |grandParent| | + | | +-----------+ | + | +--------------+ | + +------------------+ + + ... where both the parent and the grand parent clips children to shape. + */ + QApplication::processEvents(); // Get rid of pending update. + + QGraphicsRectItem *grandParent = static_cast(scene.addRect(0, 0, 50, 50)); + grandParent->setBrush(Qt::black); + grandParent->setFlag(QGraphicsItem::ItemClipsChildrenToShape); + + QGraphicsRectItem *parent = static_cast(scene.addRect(-50, -50, 100, 100)); + parent->setBrush(QColor(0, 0, 255, 125)); + parent->setParentItem(grandParent); + parent->setFlag(QGraphicsItem::ItemClipsChildrenToShape); + + QGraphicsRectItem *child = static_cast(scene.addRect(-100, -100, 200, 200)); + child->setBrush(QColor(255, 0, 0, 125)); + child->setParentItem(parent); + + CustomView view(&scene); + view.show(); + QTest::qWaitForWindowShown(&view); + QTRY_VERIFY(view.painted); + + view.lastUpdateRegions.clear(); + view.painted = false; + + // Call child->update() and make sure the updated area is within the ancestors' clip. + QRectF expected = child->deviceTransform(view.viewportTransform()).mapRect(child->boundingRect()); + expected &= grandParent->deviceTransform(view.viewportTransform()).mapRect(grandParent->boundingRect()); + + child->update(); + QTRY_VERIFY(view.painted); + +#ifndef QT_MAC_USE_COCOA //cocoa doesn't support drawing regions + QTRY_VERIFY(view.painted); + QCOMPARE(view.lastUpdateRegions.size(), 1); + QCOMPARE(view.lastUpdateRegions.at(0), QRegion(expected.toAlignedRect())); +#endif +} + class FocusItem : public QGraphicsRectItem { public: -- cgit v1.2.1 From 78660bf18ec11e043f1c88d711f62d32237bd0e5 Mon Sep 17 00:00:00 2001 From: Gabriel de Dietrich Date: Tue, 4 May 2010 18:15:35 +0200 Subject: QSortFilterProxyModel: Warning or assert failure A mapping was being created after QStandardItem::dataChanged() signal, even though one of the item's ancestors was being filtered out by the filter proxy. This let the QSortFilterProxyModel in a unstable state, triggering warnings and failing asserts. This patch partialy reverts commit f4bce41c10988. Auto-test included. Reviewed-by: mbm Task-number: QTBUG-10287 --- .../tst_qsortfilterproxymodel.cpp | 61 ++++++++++++++++++++++ 1 file changed, 61 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qsortfilterproxymodel/tst_qsortfilterproxymodel.cpp b/tests/auto/qsortfilterproxymodel/tst_qsortfilterproxymodel.cpp index 2339b212f3..992c95e4c0 100644 --- a/tests/auto/qsortfilterproxymodel/tst_qsortfilterproxymodel.cpp +++ b/tests/auto/qsortfilterproxymodel/tst_qsortfilterproxymodel.cpp @@ -138,6 +138,7 @@ private slots: void taskQTBUG_6205_doubleProxySelectionSetSourceModel(); void taskQTBUG_7537_appearsAndSort(); void taskQTBUG_7716_unnecessaryDynamicSorting(); + void taskQTBUG_10287_unnecessaryMapCreation(); void testMultipleProxiesWithSelection(); @@ -3038,5 +3039,65 @@ void tst_QSortFilterProxyModel::testMultipleProxiesWithSelection() } +class Model10287 : public QStandardItemModel +{ + Q_OBJECT + +public: + Model10287(QObject *parent = 0) + : QStandardItemModel(0, 1, parent) + { + parentItem = new QStandardItem("parent"); + parentItem->setData(false, Qt::UserRole); + appendRow(parentItem); + + childItem = new QStandardItem("child"); + childItem->setData(true, Qt::UserRole); + parentItem->appendRow(childItem); + + childItem2 = new QStandardItem("child2"); + childItem2->setData(true, Qt::UserRole); + parentItem->appendRow(childItem2); + } + + void removeChild() + { + childItem2->setData(false, Qt::UserRole); + parentItem->removeRow(0); + } + +private: + QStandardItem *parentItem, *childItem, *childItem2; +}; + +class Proxy10287 : public QSortFilterProxyModel +{ + Q_OBJECT + +public: + Proxy10287(QAbstractItemModel *model, QObject *parent = 0) + : QSortFilterProxyModel(parent) + { + setSourceModel(model); + setDynamicSortFilter(true); + } + +protected: + virtual bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const + { + // Filter based on UserRole in model + QModelIndex i = sourceModel()->index(source_row, 0, source_parent); + return i.data(Qt::UserRole).toBool(); + } +}; + +void tst_QSortFilterProxyModel::taskQTBUG_10287_unnecessaryMapCreation() +{ + Model10287 m; + Proxy10287 p(&m); + m.removeChild(); + // No assert failure, it passes. +} + QTEST_MAIN(tst_QSortFilterProxyModel) #include "tst_qsortfilterproxymodel.moc" -- cgit v1.2.1 From 0a8379d9f01118d7ff0121e6ecbbc0307e1e7f63 Mon Sep 17 00:00:00 2001 From: Alan Alpert Date: Thu, 6 May 2010 04:54:19 +1000 Subject: Make component.createObject require a parent argument For graphical objects (the common case) a common mistake is to not parent a dynamically created item. Since you almost always want to add a parent, and it's hard for a beginner to diagnose this problem, a parent is now a required argument and dealt with by the createObject function. Task-number: QTBUG-10110 --- .../auto/declarative/qdeclarativeecmascript/data/dynamicCreation.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/dynamicCreation.qml b/tests/auto/declarative/qdeclarativeecmascript/data/dynamicCreation.qml index 3047e9b403..7b132e1edf 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/dynamicCreation.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/dynamicCreation.qml @@ -11,7 +11,7 @@ MyQmlObject{ function createTwo() { var component = Qt.createComponent('dynamicCreation.helper.qml'); - obj.objectProperty = component.createObject(); + obj.objectProperty = component.createObject(obj); } function createThree() @@ -22,6 +22,6 @@ MyQmlObject{ function dontCrash() { var component = Qt.createComponent('file-doesnt-exist.qml'); - obj.objectProperty = component.createObject(); + obj.objectProperty = component.createObject(obj); } } -- cgit v1.2.1 From 3c4d3a65bbce6b1f9e649412f141ee8890a7b6cd Mon Sep 17 00:00:00 2001 From: Alexis Menard Date: Wed, 5 May 2010 06:57:26 +0200 Subject: QGraphicsWidget was not working properly when ItemSendsPositionChanges is false The geometry was not properly set because QGraphicsWidget rely on itemChange to update its own geometry. Now when calling setPos we also ensure that for a widget the geometry will be up to date. Setting the flag ItemSendsPositionChanges to false for a given widget will give a small performance boost. Reviewed-by:janarve Reviewed-by:bnilsen --- tests/auto/qgraphicswidget/tst_qgraphicswidget.cpp | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qgraphicswidget/tst_qgraphicswidget.cpp b/tests/auto/qgraphicswidget/tst_qgraphicswidget.cpp index 1930a6fd05..1a56e6baf9 100644 --- a/tests/auto/qgraphicswidget/tst_qgraphicswidget.cpp +++ b/tests/auto/qgraphicswidget/tst_qgraphicswidget.cpp @@ -166,6 +166,7 @@ private slots: void initialShow(); void initialShow2(); void itemChangeEvents(); + void itemSendGeometryPosChangesDeactivated(); // Task fixes void task236127_bspTreeIndexFails(); @@ -2972,6 +2973,34 @@ void tst_QGraphicsWidget::itemChangeEvents() QTRY_VERIFY(!item->valueDuringEvents.value(QEvent::EnabledChange).toBool()); } +void tst_QGraphicsWidget::itemSendGeometryPosChangesDeactivated() +{ + QGraphicsScene scene; + QGraphicsView view(&scene); + QGraphicsWidget *item = new QGraphicsWidget; + scene.addItem(item); + view.show(); + QTest::qWaitForWindowShown(&view); + item->setGeometry(QRectF(0, 0, 50, 50)); + QTRY_COMPARE(item->geometry(), QRectF(0, 0, 50, 50)); + + item->setFlag(QGraphicsItem::ItemSendsGeometryChanges, false); + item->setGeometry(QRectF(0, 0, 60, 60)); + QCOMPARE(item->geometry(), QRectF(0, 0, 60, 60)); + QCOMPARE(item->pos(), QPointF(0, 0)); + item->setPos(QPointF(10, 10)); + QCOMPARE(item->pos(), QPointF(10, 10)); + QCOMPARE(item->geometry(), QRectF(10, 10, 60, 60)); + + item->setFlag(QGraphicsItem::ItemSendsScenePositionChanges, false); + item->setGeometry(QRectF(0, 0, 60, 60)); + QCOMPARE(item->geometry(), QRectF(0, 0, 60, 60)); + QCOMPARE(item->pos(), QPointF(0, 0)); + item->setPos(QPointF(10, 10)); + QCOMPARE(item->pos(), QPointF(10, 10)); + QCOMPARE(item->geometry(), QRectF(10, 10, 60, 60)); +} + void tst_QGraphicsWidget::QT_BUG_6544_tabFocusFirstUnsetWhenRemovingItems() { QGraphicsScene scene; -- cgit v1.2.1 From d6da01355fb436a04932131373579938dc4b7d8d Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Thu, 6 May 2010 10:49:57 +1000 Subject: Compile --- tests/auto/declarative/declarative.pro | 1 - 1 file changed, 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/declarative.pro b/tests/auto/declarative/declarative.pro index 9b3b3d0e4b..b8e33cfd16 100644 --- a/tests/auto/declarative/declarative.pro +++ b/tests/auto/declarative/declarative.pro @@ -29,7 +29,6 @@ SUBDIRS += \ qdeclarativeitem \ # Cover qdeclarativelistview \ # Cover qdeclarativeloader \ # Cover - qdeclarativelayouts \ # Cover qdeclarativemousearea \ # Cover qdeclarativeparticles \ # Cover qdeclarativepathview \ # Cover -- cgit v1.2.1 From 1eb430a1f1ddb3d88ec44294606b365e119b2e01 Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Thu, 6 May 2010 10:55:13 +1000 Subject: Fix autotest --- tests/auto/declarative/examples/tst_examples.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/examples/tst_examples.cpp b/tests/auto/declarative/examples/tst_examples.cpp index 058fda1729..4f10a9841e 100644 --- a/tests/auto/declarative/examples/tst_examples.cpp +++ b/tests/auto/declarative/examples/tst_examples.cpp @@ -87,6 +87,7 @@ tst_examples::tst_examples() excludedDirs << "examples/declarative/gestures"; excludedDirs << "examples/declarative/imageprovider"; + excludedDirs << "examples/declarative/layouts/graphicsLayouts"; excludedDirs << "demos/declarative/minehunt"; excludedDirs << "doc/src/snippets/declarative/graphicswidgets"; -- cgit v1.2.1 From 4b0c60c6246fb7aacea3d74787a9e5a0cc507edd Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Thu, 6 May 2010 11:00:51 +1000 Subject: Add missing test file. --- .../qdeclarativevisualdatamodel/data/objectlist.qml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativevisualdatamodel/data/objectlist.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativevisualdatamodel/data/objectlist.qml b/tests/auto/declarative/qdeclarativevisualdatamodel/data/objectlist.qml new file mode 100644 index 0000000000..f5198c90d2 --- /dev/null +++ b/tests/auto/declarative/qdeclarativevisualdatamodel/data/objectlist.qml @@ -0,0 +1,16 @@ +import Qt 4.7 + +ListView { + width: 100 + height: 100 + anchors.fill: parent + model: myModel + delegate: Component { + Rectangle { + height: 25 + width: 100 + color: model.modelData.color + Text { objectName: "name"; text: name } + } + } +} -- cgit v1.2.1 From a0ff96a8fd1cbf1206afd12e0062949fa035f64f Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Thu, 6 May 2010 17:42:53 +1000 Subject: Call QDeclarativeItem::geometryChanged() base implementation --- .../qdeclarativetextedit/data/geometrySignals.qml | 12 ++++++++++++ .../qdeclarativetextedit/tst_qdeclarativetextedit.cpp | 13 ++++++++++++- .../qdeclarativetextinput/data/geometrySignals.qml | 12 ++++++++++++ .../qdeclarativetextinput/tst_qdeclarativetextinput.cpp | 11 +++++++++++ 4 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 tests/auto/declarative/qdeclarativetextedit/data/geometrySignals.qml create mode 100644 tests/auto/declarative/qdeclarativetextinput/data/geometrySignals.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativetextedit/data/geometrySignals.qml b/tests/auto/declarative/qdeclarativetextedit/data/geometrySignals.qml new file mode 100644 index 0000000000..b39ba5b8a4 --- /dev/null +++ b/tests/auto/declarative/qdeclarativetextedit/data/geometrySignals.qml @@ -0,0 +1,12 @@ +import Qt 4.7 + +Item { + width: 400; height: 500; + property int bindingWidth: text.width + property int bindingHeight: text.height + + TextInput { + id: text + anchors.fill: parent + } +} diff --git a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp index 3307b7cd7b..8cc0e3f38a 100644 --- a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp +++ b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp @@ -84,7 +84,7 @@ private slots: void navigation(); void readOnly(); void sendRequestSoftwareInputPanelEvent(); - + void geometrySignals(); private: void simulateKey(QDeclarativeView *, int key); QDeclarativeView *createView(const QString &filename); @@ -808,6 +808,17 @@ void tst_qdeclarativetextedit::sendRequestSoftwareInputPanelEvent() QApplication::processEvents(); QCOMPARE(ic.softwareInputPanelEventReceived, true); } + +void tst_qdeclarativetextedit::geometrySignals() +{ + QDeclarativeComponent component(&engine, SRCDIR "/data/geometrySignals.qml"); + QObject *o = component.create(); + QVERIFY(o); + QCOMPARE(o->property("bindingWidth").toInt(), 400); + QCOMPARE(o->property("bindingHeight").toInt(), 500); + delete o; +} + QTEST_MAIN(tst_qdeclarativetextedit) #include "tst_qdeclarativetextedit.moc" diff --git a/tests/auto/declarative/qdeclarativetextinput/data/geometrySignals.qml b/tests/auto/declarative/qdeclarativetextinput/data/geometrySignals.qml new file mode 100644 index 0000000000..a9b50feae2 --- /dev/null +++ b/tests/auto/declarative/qdeclarativetextinput/data/geometrySignals.qml @@ -0,0 +1,12 @@ +import Qt 4.7 + +Item { + width: 400; height: 500; + property int bindingWidth: text.width + property int bindingHeight: text.height + + TextEdit { + id: text + anchors.fill: parent + } +} diff --git a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp index 83ebe6c48c..0065ccf97c 100644 --- a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp +++ b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp @@ -76,6 +76,7 @@ private slots: void focusOutClearSelection(); void echoMode(); + void geometrySignals(); private: void simulateKey(QDeclarativeView *, int key); QDeclarativeView *createView(const QString &filename); @@ -805,6 +806,16 @@ void tst_qdeclarativetextinput::focusOutClearSelection() QTRY_COMPARE(input.selectedText(), QLatin1String("")); } +void tst_qdeclarativetextinput::geometrySignals() +{ + QDeclarativeComponent component(&engine, SRCDIR "/data/geometrySignals.qml"); + QObject *o = component.create(); + QVERIFY(o); + QCOMPARE(o->property("bindingWidth").toInt(), 400); + QCOMPARE(o->property("bindingHeight").toInt(), 500); + delete o; +} + QTEST_MAIN(tst_qdeclarativetextinput) #include "tst_qdeclarativetextinput.moc" -- cgit v1.2.1 From 18411bfd474b05fd427b3d763af2fcc96e3e73df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20R=C3=B8dal?= Date: Thu, 6 May 2010 19:07:39 +0200 Subject: Fixed bug in QIODevice::read after first reading 0 bytes. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change 02532ec80375c686503c4250c6ad6bb211515ec8 removed the early-exit for 0 byte reads, causing us to hit code that assumed the buffer was empty since nothing was read. It would thus read more into the end of the buffer, causing the buffer to grow bigger than QIODEVICE_BUFFERSIZE. Next, if the actual number of bytes we wanted to read was bigger than the original buffer size we'd read the same data twice. Reviewed-by: João Abecasis Reviewed-by: Thiago Macieira --- tests/auto/qbuffer/tst_qbuffer.cpp | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qbuffer/tst_qbuffer.cpp b/tests/auto/qbuffer/tst_qbuffer.cpp index fcef6a3978..dd5ca91dad 100644 --- a/tests/auto/qbuffer/tst_qbuffer.cpp +++ b/tests/auto/qbuffer/tst_qbuffer.cpp @@ -76,6 +76,7 @@ private slots: void atEnd(); void readLineBoundaries(); void writeAfterQByteArrayResize(); + void read_null(); protected slots: void readyReadSlot(); @@ -529,5 +530,30 @@ void tst_QBuffer::writeAfterQByteArrayResize() QCOMPARE(buffer.buffer().size(), 1000); } +void tst_QBuffer::read_null() +{ + QByteArray buffer; + buffer.resize(32000); + for (int i = 0; i < buffer.size(); ++i) + buffer[i] = char(i & 0xff); + + QBuffer in(&buffer); + in.open(QIODevice::ReadOnly); + + QByteArray chunk; + + chunk.resize(16380); + in.read(chunk.data(), 16380); + + QCOMPARE(chunk, buffer.mid(0, chunk.size())); + + in.read(chunk.data(), 0); + + chunk.resize(8); + in.read(chunk.data(), chunk.size()); + + QCOMPARE(chunk, buffer.mid(16380, chunk.size())); +} + QTEST_MAIN(tst_QBuffer) #include "tst_qbuffer.moc" -- cgit v1.2.1 From 7c945e152c9abd0478bed5a4d251012944d93b44 Mon Sep 17 00:00:00 2001 From: Joona Petrell Date: Wed, 5 May 2010 14:57:53 +1000 Subject: Resize qmlruntime window to new dimensions when orientation changes Task-number: Reviewed-by: Warwick Allison --- tests/auto/declarative/declarative.pro | 1 + .../qdeclarativeview/tst_qdeclarativeview.cpp | 4 +- .../qdeclarativeviewer/data/orientation.qml | 10 ++ .../qdeclarativeviewer/qdeclarativeviewer.pro | 11 +++ .../qdeclarativeviewer/tst_qdeclarativeviewer.cpp | 108 +++++++++++++++++++++ 5 files changed, 132 insertions(+), 2 deletions(-) create mode 100644 tests/auto/declarative/qdeclarativeviewer/data/orientation.qml create mode 100644 tests/auto/declarative/qdeclarativeviewer/qdeclarativeviewer.pro create mode 100644 tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp (limited to 'tests/auto') diff --git a/tests/auto/declarative/declarative.pro b/tests/auto/declarative/declarative.pro index b8e33cfd16..05c4c26060 100644 --- a/tests/auto/declarative/declarative.pro +++ b/tests/auto/declarative/declarative.pro @@ -64,6 +64,7 @@ SUBDIRS += \ qdeclarativestyledtext \ # Cover qdeclarativesqldatabase \ # Cover qdeclarativevisualdatamodel \ # Cover + qdeclarativeviewer \ # Cover qmlvisual # Cover contains(QT_CONFIG, webkit) { diff --git a/tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp b/tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp index 1ed51c11c9..dd2f46e5e6 100644 --- a/tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp +++ b/tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp @@ -147,7 +147,7 @@ void tst_QDeclarativeView::resizemodedeclarativeitem() declarativeItem->setHeight(80); QCOMPARE(canvas->width(), 80); QCOMPARE(canvas->height(), 100); - QCOMPARE(canvas->size(), canvas->sizeHint()); + QCOMPARE(QSize(declarativeItem->width(), declarativeItem->height()), canvas->sizeHint()); QCOMPARE(sceneResizedSpy2.count(), 2); // size update from view @@ -230,7 +230,7 @@ void tst_QDeclarativeView::resizemodegraphicswidget() canvas->setResizeMode(QDeclarativeView::SizeRootObjectToView); graphicsWidget->resize(QSizeF(60,80)); QCOMPARE(canvas->size(), QSize(80,100)); - QCOMPARE(canvas->size(), canvas->sizeHint()); + QCOMPARE(QSize(graphicsWidget->size().width(), graphicsWidget->size().height()), canvas->sizeHint()); QCOMPARE(sceneResizedSpy2.count(), 2); // size update from view diff --git a/tests/auto/declarative/qdeclarativeviewer/data/orientation.qml b/tests/auto/declarative/qdeclarativeviewer/data/orientation.qml new file mode 100644 index 0000000000..687fac64fa --- /dev/null +++ b/tests/auto/declarative/qdeclarativeviewer/data/orientation.qml @@ -0,0 +1,10 @@ +import Qt 4.7 +Rectangle { + color: "black" + width: (runtime.orientation == Orientation.Landscape) ? 300 : 200 + height: (runtime.orientation == Orientation.Landscape) ? 200 : 300 + Text { + text: runtime.orientation == Orientation.Landscape ? "Landscape" : "Portrait" + color: "white" + } +} \ No newline at end of file diff --git a/tests/auto/declarative/qdeclarativeviewer/qdeclarativeviewer.pro b/tests/auto/declarative/qdeclarativeviewer/qdeclarativeviewer.pro new file mode 100644 index 0000000000..dc10f5be58 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeviewer/qdeclarativeviewer.pro @@ -0,0 +1,11 @@ +load(qttest_p4) +contains(QT_CONFIG,declarative): QT += declarative gui +macx:CONFIG -= app_bundle + +include(../../../../tools/qml/qml.pri) + +SOURCES += tst_qdeclarativeviewer.cpp + +DEFINES += SRCDIR=\\\"$$PWD\\\" + +CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp b/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp new file mode 100644 index 0000000000..9429dc9fdc --- /dev/null +++ b/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp @@ -0,0 +1,108 @@ +/**************************************************************************** +** +** 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 test suite 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 +#include +#include "qmlruntime.h" + +class tst_QDeclarativeViewer : public QObject + +{ + Q_OBJECT +public: + tst_QDeclarativeViewer(); + +private slots: + void orientation(); + +private: + QDeclarativeEngine engine; +}; + +tst_QDeclarativeViewer::tst_QDeclarativeViewer() +{ +} + +void tst_QDeclarativeViewer::orientation() +{ + QWidget window; + QDeclarativeViewer *viewer = new QDeclarativeViewer(&window); + QVERIFY(viewer); + viewer->open(SRCDIR "/data/orientation.qml"); + QVERIFY(viewer->view()); + QVERIFY(viewer->menuBar()); + QDeclarativeItem* rootItem = qobject_cast(viewer->view()->rootObject()); + QVERIFY(rootItem); + window.show(); + + QCOMPARE(rootItem->width(), 200.0); + QCOMPARE(rootItem->height(), 300.0); + QCOMPARE(viewer->view()->size(), QSize(200, 300)); + QCOMPARE(viewer->view()->sceneRect().size(), QSizeF(200, 300)); + QCOMPARE(viewer->size(), QSize(200, 300+viewer->menuBar()->height())); + QCOMPARE(viewer->size(), viewer->sizeHint()); + + viewer->toggleOrientation(); + qApp->processEvents(); + + QCOMPARE(rootItem->width(), 300.0); + QCOMPARE(rootItem->height(), 200.0); + QCOMPARE(viewer->view()->size(), QSize(300, 200)); + QCOMPARE(viewer->view()->sceneRect().size(), QSizeF(300, 200)); + QCOMPARE(viewer->size(), QSize(300, 200+viewer->menuBar()->height())); + QCOMPARE(viewer->size(), viewer->sizeHint()); + + viewer->toggleOrientation(); + qApp->processEvents(); + + QCOMPARE(rootItem->width(), 200.0); + QCOMPARE(rootItem->height(), 300.0); + QCOMPARE(viewer->view()->size(), QSize(200, 300)); + QCOMPARE(viewer->view()->sceneRect().size(), QSizeF(200, 300)); + QCOMPARE(viewer->size(), QSize(200, 300+viewer->menuBar()->height())); + QCOMPARE(viewer->size(), viewer->sizeHint()); +} + +QTEST_MAIN(tst_QDeclarativeViewer) + +#include "tst_qdeclarativeviewer.moc" -- cgit v1.2.1 From d7ef9666e2a3c8d06c5f32b7f47f602b177a74f6 Mon Sep 17 00:00:00 2001 From: Leonardo Sobral Cunha Date: Thu, 6 May 2010 15:48:34 +1000 Subject: Avoid emitting release when the mouse is ungrabbed Added an onCanceled signal to mouse area, which is triggered when the mouse area rejects the event (propagates to the nearest mouse area beneath) or some other element steals the mouse grab (flickable, for example). Task-number: QTBUG-10162 Reviewed-by: Michael Brasser --- .../tst_qdeclarativemousearea.cpp | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativemousearea/tst_qdeclarativemousearea.cpp b/tests/auto/declarative/qdeclarativemousearea/tst_qdeclarativemousearea.cpp index eb4aa120fc..96e6b8c25b 100644 --- a/tests/auto/declarative/qdeclarativemousearea/tst_qdeclarativemousearea.cpp +++ b/tests/auto/declarative/qdeclarativemousearea/tst_qdeclarativemousearea.cpp @@ -56,6 +56,8 @@ private slots: void updateMouseAreaPosOnClick(); void updateMouseAreaPosOnResize(); void noOnClickedWithPressAndHold(); + void onMousePressRejected(); + private: QDeclarativeView *createView(); }; @@ -330,6 +332,48 @@ void tst_QDeclarativeMouseArea::noOnClickedWithPressAndHold() QVERIFY(canvas->rootObject()->property("held").toBool()); } +void tst_QDeclarativeMouseArea::onMousePressRejected() +{ + QDeclarativeView *canvas = createView(); + canvas->setSource(QUrl::fromLocalFile(SRCDIR "/data/rejectEvent.qml")); + canvas->show(); + canvas->setFocus(); + QVERIFY(canvas->rootObject() != 0); + + QVERIFY(!canvas->rootObject()->property("mr1_pressed").toBool()); + QVERIFY(!canvas->rootObject()->property("mr1_released").toBool()); + QVERIFY(!canvas->rootObject()->property("mr1_canceled").toBool()); + QVERIFY(!canvas->rootObject()->property("mr2_pressed").toBool()); + QVERIFY(!canvas->rootObject()->property("mr2_released").toBool()); + QVERIFY(!canvas->rootObject()->property("mr2_canceled").toBool()); + + QGraphicsScene *scene = canvas->scene(); + QGraphicsSceneMouseEvent pressEvent(QEvent::GraphicsSceneMousePress); + pressEvent.setScenePos(QPointF(100, 100)); + pressEvent.setButton(Qt::LeftButton); + pressEvent.setButtons(Qt::LeftButton); + QApplication::sendEvent(scene, &pressEvent); + + QVERIFY(canvas->rootObject()->property("mr1_pressed").toBool()); + QVERIFY(!canvas->rootObject()->property("mr1_released").toBool()); + QVERIFY(!canvas->rootObject()->property("mr1_canceled").toBool()); + QVERIFY(canvas->rootObject()->property("mr2_pressed").toBool()); + QVERIFY(!canvas->rootObject()->property("mr2_released").toBool()); + QVERIFY(canvas->rootObject()->property("mr2_canceled").toBool()); + + QTest::qWait(200); + + QGraphicsSceneMouseEvent releaseEvent(QEvent::GraphicsSceneMouseRelease); + releaseEvent.setScenePos(QPointF(100, 100)); + releaseEvent.setButton(Qt::LeftButton); + releaseEvent.setButtons(Qt::LeftButton); + QApplication::sendEvent(scene, &releaseEvent); + + QVERIFY(canvas->rootObject()->property("mr1_released").toBool()); + QVERIFY(!canvas->rootObject()->property("mr1_canceled").toBool()); + QVERIFY(!canvas->rootObject()->property("mr2_released").toBool()); +} + QTEST_MAIN(tst_QDeclarativeMouseArea) #include "tst_qdeclarativemousearea.moc" -- cgit v1.2.1 From 705a6ee8f08b1c0b360f1438301ce049e96ed450 Mon Sep 17 00:00:00 2001 From: Leonardo Sobral Cunha Date: Thu, 6 May 2010 16:06:43 +1000 Subject: Fix autotest bug in MouseArea Reviewed-by: Martin Jones --- .../declarative/qdeclarativemousearea/tst_qdeclarativemousearea.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativemousearea/tst_qdeclarativemousearea.cpp b/tests/auto/declarative/qdeclarativemousearea/tst_qdeclarativemousearea.cpp index 96e6b8c25b..ff3bf45cc4 100644 --- a/tests/auto/declarative/qdeclarativemousearea/tst_qdeclarativemousearea.cpp +++ b/tests/auto/declarative/qdeclarativemousearea/tst_qdeclarativemousearea.cpp @@ -322,7 +322,7 @@ void tst_QDeclarativeMouseArea::noOnClickedWithPressAndHold() QTest::qWait(1000); - QGraphicsSceneMouseEvent releaseEvent(QEvent::GraphicsSceneMousePress); + QGraphicsSceneMouseEvent releaseEvent(QEvent::GraphicsSceneMouseRelease); releaseEvent.setScenePos(QPointF(100, 100)); releaseEvent.setButton(Qt::LeftButton); releaseEvent.setButtons(Qt::LeftButton); -- cgit v1.2.1 From abd2c025d088064c31fd1b0e9c5ea29996e51bbe Mon Sep 17 00:00:00 2001 From: Leonardo Sobral Cunha Date: Fri, 7 May 2010 10:57:56 +1000 Subject: Update mouse area qmlvisual test to follow change QTBUG-10162 Reviewed-by: Michael Brasser --- .../qmlvisual/qdeclarativemousearea/mousearea-flickable.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-flickable.qml b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-flickable.qml index a0b787f5f9..e223f5e710 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-flickable.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-flickable.qml @@ -25,7 +25,7 @@ Rectangle { MouseArea { anchors.fill: parent onPressed: blue.color = "lightsteelblue" - onReleased: blue.color = "steelblue" + onCanceled: blue.color = "steelblue" } } Rectangle { @@ -36,7 +36,7 @@ Rectangle { MouseArea { anchors.fill: parent onEntered: { red.color = "darkred"; tooltip.opacity = 1 } - onExited: { red.color = "red"; tooltip.opacity = 0 } + onCanceled: { red.color = "red"; tooltip.opacity = 0 } } Rectangle { id: tooltip -- cgit v1.2.1 From 17837067e9dbda02669487bdd64419c38e8a2ebd Mon Sep 17 00:00:00 2001 From: Leonardo Sobral Cunha Date: Fri, 7 May 2010 14:17:27 +1000 Subject: Add missing qml file to qdeclarativemousearea --- .../qdeclarativemousearea/data/rejectEvent.qml | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativemousearea/data/rejectEvent.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativemousearea/data/rejectEvent.qml b/tests/auto/declarative/qdeclarativemousearea/data/rejectEvent.qml new file mode 100644 index 0000000000..fecfadfaa8 --- /dev/null +++ b/tests/auto/declarative/qdeclarativemousearea/data/rejectEvent.qml @@ -0,0 +1,28 @@ +import Qt 4.7 + +Rectangle { + id: root + color: "#ffffff" + width: 320; height: 240 + property bool mr1_pressed: false + property bool mr1_released: false + property bool mr1_canceled: false + property bool mr2_pressed: false + property bool mr2_released: false + property bool mr2_canceled: false + + MouseArea { + id: mouseRegion1 + anchors.fill: parent + onPressed: {console.log("press111"); root.mr1_pressed = true} + onReleased: {console.log("release111"); root.mr1_released = true} + onCanceled: {console.log("ungrab1111"); root.mr1_canceled = true} + } + MouseArea { + id: mouseRegion2 + width: 120; height: 120 + onPressed: {console.log("press222"); root.mr2_pressed = true; mouse.accepted = false} + onReleased: {console.log("release2222"); root.mr2_released = true} + onCanceled: {console.log("ungrab2222"); root.mr2_canceled = true} + } +} -- cgit v1.2.1 From 60a06af7200217aa16c8c130a1ed0afce31812ed Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Fri, 7 May 2010 14:23:56 +1000 Subject: Fix autotests (remove import Qt.widgets) --- .../auto/declarative/qdeclarativeanchors/data/anchorsqgraphicswidget.qml | 1 - tests/auto/declarative/qdeclarativeloader/data/GraphicsWidget250x250.qml | 1 - 2 files changed, 2 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeanchors/data/anchorsqgraphicswidget.qml b/tests/auto/declarative/qdeclarativeanchors/data/anchorsqgraphicswidget.qml index 91973a3c30..d430c2cfb2 100644 --- a/tests/auto/declarative/qdeclarativeanchors/data/anchorsqgraphicswidget.qml +++ b/tests/auto/declarative/qdeclarativeanchors/data/anchorsqgraphicswidget.qml @@ -1,5 +1,4 @@ import Qt 4.7 -import Qt.widgets 4.7 Rectangle { color: "white" diff --git a/tests/auto/declarative/qdeclarativeloader/data/GraphicsWidget250x250.qml b/tests/auto/declarative/qdeclarativeloader/data/GraphicsWidget250x250.qml index 9bb0b378dd..3b851c1338 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/GraphicsWidget250x250.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/GraphicsWidget250x250.qml @@ -1,5 +1,4 @@ import Qt 4.7 -import Qt.widgets 4.6 QGraphicsWidget { size: "250x250" -- cgit v1.2.1 From 153f9f34008c0205cbbb88d03e7991aba932c913 Mon Sep 17 00:00:00 2001 From: Alexis Menard Date: Fri, 7 May 2010 14:32:49 +1000 Subject: Fix auto-test failure on Mac/Linux/QWS. / should not be present in the completer -> it's the current dir. This regression happened due to a bug fix i did so the auto-test was relying on a bug :D. Reviewed-by:TrustMe --- tests/auto/qfiledialog/tst_qfiledialog.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qfiledialog/tst_qfiledialog.cpp b/tests/auto/qfiledialog/tst_qfiledialog.cpp index 38a1ee7ad3..ca7c44514f 100644 --- a/tests/auto/qfiledialog/tst_qfiledialog.cpp +++ b/tests/auto/qfiledialog/tst_qfiledialog.cpp @@ -529,10 +529,6 @@ void tst_QFiledialog::completer() #endif ++expected; } -#if !defined(Q_OS_WIN) - if (inputStartsWithRootPath) - expected++; -#endif } QTest::qWait(1000); -- cgit v1.2.1 From 32c2d17680a04fced714aa103b40d7de24d9eb26 Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Fri, 7 May 2010 14:41:00 +1000 Subject: Fix autotests --- tests/auto/declarative/declarative.pro | 1 - tests/auto/declarative/examples/tst_examples.cpp | 23 +++---- .../graphicswidgets/data/graphicswidgets.qml | 52 --------------- .../graphicswidgets/graphicswidgets.pro | 10 --- .../graphicswidgets/tst_graphicswidgets.cpp | 74 ---------------------- 5 files changed, 8 insertions(+), 152 deletions(-) delete mode 100644 tests/auto/declarative/graphicswidgets/data/graphicswidgets.qml delete mode 100644 tests/auto/declarative/graphicswidgets/graphicswidgets.pro delete mode 100644 tests/auto/declarative/graphicswidgets/tst_graphicswidgets.cpp (limited to 'tests/auto') diff --git a/tests/auto/declarative/declarative.pro b/tests/auto/declarative/declarative.pro index 05c4c26060..a9b069c73d 100644 --- a/tests/auto/declarative/declarative.pro +++ b/tests/auto/declarative/declarative.pro @@ -1,7 +1,6 @@ TEMPLATE = subdirs SUBDIRS += \ examples \ - graphicswidgets \ # Cover parserstress \ # Cover qmetaobjectbuilder \ # Cover qdeclarativeanimations \ # Cover diff --git a/tests/auto/declarative/examples/tst_examples.cpp b/tests/auto/declarative/examples/tst_examples.cpp index 4f10a9841e..3759cb5476 100644 --- a/tests/auto/declarative/examples/tst_examples.cpp +++ b/tests/auto/declarative/examples/tst_examples.cpp @@ -80,16 +80,6 @@ tst_examples::tst_examples() // Add directories you want excluded here - excludedDirs << "examples/declarative/extending"; - excludedDirs << "examples/declarative/tutorials/extending"; - excludedDirs << "examples/declarative/plugins"; - excludedDirs << "examples/declarative/proxywidgets"; - excludedDirs << "examples/declarative/gestures"; - - excludedDirs << "examples/declarative/imageprovider"; - excludedDirs << "examples/declarative/layouts/graphicsLayouts"; - excludedDirs << "demos/declarative/minehunt"; - excludedDirs << "doc/src/snippets/declarative/graphicswidgets"; #ifdef QT_NO_WEBKIT @@ -160,11 +150,14 @@ QStringList tst_examples::findQmlFiles(const QDir &d) QStringList rv; - QStringList files = d.entryList(QStringList() << QLatin1String("*.qml"), - QDir::Files); - foreach (const QString &file, files) { - if (file.at(0).isLower()) { - rv << d.absoluteFilePath(file); + QStringList cppfiles = d.entryList(QStringList() << QLatin1String("*.cpp"), QDir::Files); + if (cppfiles.isEmpty()) { + QStringList files = d.entryList(QStringList() << QLatin1String("*.qml"), + QDir::Files); + foreach (const QString &file, files) { + if (file.at(0).isLower()) { + rv << d.absoluteFilePath(file); + } } } diff --git a/tests/auto/declarative/graphicswidgets/data/graphicswidgets.qml b/tests/auto/declarative/graphicswidgets/data/graphicswidgets.qml deleted file mode 100644 index d6cf4de9c1..0000000000 --- a/tests/auto/declarative/graphicswidgets/data/graphicswidgets.qml +++ /dev/null @@ -1,52 +0,0 @@ -import Qt 4.7 -import Qt.widgets 4.7 - -QGraphicsWidget { - geometry: "20,0,600x400" - layout: QGraphicsLinearLayout { - orientation: Qt.Horizontal - QGraphicsWidget { - layout: QGraphicsLinearLayout { - spacing: 10; orientation: Qt.Vertical - LayoutItem { - QGraphicsLinearLayout.stretchFactor: 1 - QGraphicsLinearLayout.spacing: 1 - objectName: "left" - minimumSize: "100x100" - maximumSize: "300x300" - preferredSize: "100x100" - Rectangle { objectName: "yellowRect"; color: "yellow"; anchors.fill: parent } - } - LayoutItem { - QGraphicsLinearLayout.stretchFactor: 10 - QGraphicsLinearLayout.spacing: 10 - objectName: "left" - minimumSize: "100x100" - maximumSize: "300x300" - preferredSize: "100x100" - Rectangle { objectName: "yellowRect"; color: "blue"; anchors.fill: parent } - } - } - } - QGraphicsWidget { - layout: QGraphicsLinearLayout { - spacing: 10; orientation: Qt.Horizontal; contentsMargin: 10 - LayoutItem { - objectName: "left" - minimumSize: "100x100" - maximumSize: "300x300" - preferredSize: "100x100" - Rectangle { objectName: "yellowRect"; color: "red"; anchors.fill: parent } - } - LayoutItem { - objectName: "left" - minimumSize: "100x100" - maximumSize: "300x300" - preferredSize: "100x100" - Rectangle { objectName: "yellowRect"; color: "green"; anchors.fill: parent } - } - } - } - } -} - diff --git a/tests/auto/declarative/graphicswidgets/graphicswidgets.pro b/tests/auto/declarative/graphicswidgets/graphicswidgets.pro deleted file mode 100644 index b77b43090a..0000000000 --- a/tests/auto/declarative/graphicswidgets/graphicswidgets.pro +++ /dev/null @@ -1,10 +0,0 @@ -load(qttest_p4) -contains(QT_CONFIG,declarative): QT += declarative gui -macx:CONFIG -= app_bundle - -SOURCES += tst_graphicswidgets.cpp - -# Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" - -CONFIG += parallel_test diff --git a/tests/auto/declarative/graphicswidgets/tst_graphicswidgets.cpp b/tests/auto/declarative/graphicswidgets/tst_graphicswidgets.cpp deleted file mode 100644 index f1a71d5b01..0000000000 --- a/tests/auto/declarative/graphicswidgets/tst_graphicswidgets.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 test suite 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 -#include -#include - -class tst_graphicswidgets : public QObject - -{ - Q_OBJECT -public: - tst_graphicswidgets(); - -private slots: - void widgets(); -}; - -tst_graphicswidgets::tst_graphicswidgets() -{ -} - -void tst_graphicswidgets::widgets() -{ - QDeclarativeEngine engine; - QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/graphicswidgets.qml")); - QGraphicsWidget *obj = qobject_cast(c.create()); - - QVERIFY(obj != 0); - delete obj; -} - -QTEST_MAIN(tst_graphicswidgets) - -#include "tst_graphicswidgets.moc" -- cgit v1.2.1 From f380ab3106cb6d39087adacd77f618184f6f90c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20R=C3=B8dal?= Date: Thu, 6 May 2010 19:07:39 +0200 Subject: Fixed bug in QIODevice::read after first reading 0 bytes. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change 02532ec80375c686503c4250c6ad6bb211515ec8 removed the early-exit for 0 byte reads, causing us to hit code that assumed the buffer was empty since nothing was read. It would thus read more into the end of the buffer, causing the buffer to grow bigger than QIODEVICE_BUFFERSIZE. Next, if the actual number of bytes we wanted to read was bigger than the original buffer size we'd read the same data twice. Reviewed-by: João Abecasis Reviewed-by: Thiago Macieira --- tests/auto/qbuffer/tst_qbuffer.cpp | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qbuffer/tst_qbuffer.cpp b/tests/auto/qbuffer/tst_qbuffer.cpp index fcef6a3978..dd5ca91dad 100644 --- a/tests/auto/qbuffer/tst_qbuffer.cpp +++ b/tests/auto/qbuffer/tst_qbuffer.cpp @@ -76,6 +76,7 @@ private slots: void atEnd(); void readLineBoundaries(); void writeAfterQByteArrayResize(); + void read_null(); protected slots: void readyReadSlot(); @@ -529,5 +530,30 @@ void tst_QBuffer::writeAfterQByteArrayResize() QCOMPARE(buffer.buffer().size(), 1000); } +void tst_QBuffer::read_null() +{ + QByteArray buffer; + buffer.resize(32000); + for (int i = 0; i < buffer.size(); ++i) + buffer[i] = char(i & 0xff); + + QBuffer in(&buffer); + in.open(QIODevice::ReadOnly); + + QByteArray chunk; + + chunk.resize(16380); + in.read(chunk.data(), 16380); + + QCOMPARE(chunk, buffer.mid(0, chunk.size())); + + in.read(chunk.data(), 0); + + chunk.resize(8); + in.read(chunk.data(), chunk.size()); + + QCOMPARE(chunk, buffer.mid(16380, chunk.size())); +} + QTEST_MAIN(tst_QBuffer) #include "tst_qbuffer.moc" -- cgit v1.2.1 From db1254131c8d372e1d47acbaaa7c5c2b2be5b7d7 Mon Sep 17 00:00:00 2001 From: Miikka Heikkinen Date: Fri, 7 May 2010 11:51:10 +0300 Subject: Fix fetchedRoot test variable to work also in Symbian RVCT builds cannot seem to be able to deal with data symbols at runtime, so made accessors for fetchedRoot test variable. Also moved it out of QFileInfoGatherer class as there is no need to have it there. Reviewed-by: Janne Koskinen --- tests/auto/qfiledialog2/tst_qfiledialog2.cpp | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qfiledialog2/tst_qfiledialog2.cpp b/tests/auto/qfiledialog2/tst_qfiledialog2.cpp index 6bfa8be52d..eee495fc33 100644 --- a/tests/auto/qfiledialog2/tst_qfiledialog2.cpp +++ b/tests/auto/qfiledialog2/tst_qfiledialog2.cpp @@ -76,6 +76,13 @@ # define SRCDIR "C:/Private/" TOSTRING(SYMBIAN_SRCDIR_UID) "/" #endif +#if defined QT_BUILD_INTERNAL +QT_BEGIN_NAMESPACE +Q_GUI_EXPORT bool qt_test_isFetchedRoot(); +Q_GUI_EXPORT void qt_test_resetFetchedRoot(); +QT_END_NAMESPACE +#endif + class QNonNativeFileDialog : public QFileDialog { Q_OBJECT @@ -139,7 +146,7 @@ private: }; tst_QFileDialog2::tst_QFileDialog2() -{ +{ #if defined(Q_OS_WINCE) qApp->setAutoMaximizeThreshold(-1); #endif @@ -177,19 +184,18 @@ void tst_QFileDialog2::listRoot() QFileInfoGatherer fileInfoGatherer; fileInfoGatherer.start(); QTest::qWait(1500); - - QFileInfoGatherer::fetchedRoot = false; + qt_test_resetFetchedRoot(); QString dir(QDir::currentPath()); QNonNativeFileDialog fd(0, QString(), dir); fd.show(); - QCOMPARE(QFileInfoGatherer::fetchedRoot,false); + QCOMPARE(qt_test_isFetchedRoot(),false); fd.setDirectory(""); #ifdef Q_OS_WINCE QTest::qWait(1500); #else QTest::qWait(500); #endif - QCOMPARE(QFileInfoGatherer::fetchedRoot,true); + QCOMPARE(qt_test_isFetchedRoot(),true); #endif } -- cgit v1.2.1 From 85ccffc829fd0d5a29e84f90bcab460770ea8601 Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Thu, 6 May 2010 21:09:50 +0200 Subject: Fix crash with stylesheet if widget change style in the changeEvent The problem appeared with KLineEdit and its proxy style. When setting a stylesheet, we create a QStyleSheetStyle in 9# and set it to the widget, which receive a changeEvent, that will set again the style so 3# will create a new QStyleSheetStyle with the new proxy. and set it. in 2# we will dereference the 'old' QStyleSheetStyle (the one created in #9) that will destroy it. Then, later in #7, we will still access that style ('newStyle') and we crash 0# QStyleSheetStyle::~QStyleSheetStyle() 1# QStyleSheetStyle::deref() 2# QWidgetPrivate::setStyle_helper(QStyle*, bool, bool) 3# QWidget::setStyle(QStyle*) (qwidget.cpp:2523) 4# ChangeEventWidget::changeEvent(QEvent*) [...] 6# QCoreApplication::sendEvent(QObject*, QEvent*) 7# QWidgetPrivate::setStyle_helper(QStyle*, bool, bool) 9# QWidget::setStyleSheet(QString const&) (qwidget.cpp:2470) The solution is to change the order, and do not use 'newstyle' after we sent the event. The origStyle is now protected wy a QWeakPointer, but this is just for safety reason and not related to the crash. Reviewed-by: JBache --- .../auto/qstylesheetstyle/tst_qstylesheetstyle.cpp | 31 +++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/qstylesheetstyle/tst_qstylesheetstyle.cpp b/tests/auto/qstylesheetstyle/tst_qstylesheetstyle.cpp index e0512a9d23..e370309716 100644 --- a/tests/auto/qstylesheetstyle/tst_qstylesheetstyle.cpp +++ b/tests/auto/qstylesheetstyle/tst_qstylesheetstyle.cpp @@ -98,6 +98,7 @@ private slots: void complexWidgetFocus(); void task188195_baseBackground(); void task232085_spinBoxLineEditBg(); + void changeStyleInChangeEvent(); //at the end because it mess with the style. void widgetStyle(); @@ -1256,7 +1257,7 @@ void tst_QStyleSheetStyle::proxyStyle() QStyleOptionViewItemV4 opt; opt.initFrom(w); opt.features |= QStyleOptionViewItemV2::HasCheckIndicator; - QVERIFY(pb5->style()->subElementRect(QStyle::SE_ItemViewItemCheckIndicator, + QVERIFY(pb5->style()->subElementRect(QStyle::SE_ItemViewItemCheckIndicator, &opt, pb5).width() == 3); delete w; delete proxy; @@ -1579,6 +1580,34 @@ void tst_QStyleSheetStyle::task232085_spinBoxLineEditBg() .toLocal8Bit().constData()); } +class ChangeEventWidget : public QWidget +{ public: + void changeEvent(QEvent * event) + { + if(event->type() == QEvent::StyleChange) { + static bool recurse = false; + if (!recurse) { + recurse = true; + QStyle *style = new QMotifStyle; + style->setParent(this); + setStyle(style); + recurse = false; + } + } + QWidget::changeEvent(event); + } +}; + +void tst_QStyleSheetStyle::changeStyleInChangeEvent() +{ //must not crash; + ChangeEventWidget wid; + wid.ensurePolished(); + wid.setStyleSheet(" /* */ "); + wid.ensurePolished(); + wid.setStyleSheet(" /* ** */ "); + wid.ensurePolished(); +} + QTEST_MAIN(tst_QStyleSheetStyle) #include "tst_qstylesheetstyle.moc" -- cgit v1.2.1 From cafffc1b161a5b5f2f856c626e8ad2ee50d5d1e1 Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Fri, 7 May 2010 13:45:12 +0200 Subject: fix tst_QDockWidget::taskQTBUG_9758_undockedGeometry on Linux --- tests/auto/qdockwidget/tst_qdockwidget.cpp | 31 +++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qdockwidget/tst_qdockwidget.cpp b/tests/auto/qdockwidget/tst_qdockwidget.cpp index 8d9e7bbf85..3ac0ce7f0d 100644 --- a/tests/auto/qdockwidget/tst_qdockwidget.cpp +++ b/tests/auto/qdockwidget/tst_qdockwidget.cpp @@ -654,7 +654,7 @@ void tst_QDockWidget::dockLocationChanged() QCOMPARE(qvariant_cast(spy.at(0).at(0)), Qt::TopDockWidgetArea); spy.clear(); - + dw.setFloating(true); QTest::qWait(100); dw.setFloating(false); @@ -881,20 +881,21 @@ void tst_QDockWidget::taskQTBUG_1665_closableChanged() void tst_QDockWidget::taskQTBUG_9758_undockedGeometry() { - QMainWindow window; - QDockWidget dock1(&window); - QDockWidget dock2(&window); - window.addDockWidget(Qt::RightDockWidgetArea, &dock1); - window.addDockWidget(Qt::RightDockWidgetArea, &dock2); - window.tabifyDockWidget(&dock1, &dock2); - dock1.hide(); - dock2.hide(); - window.show(); - dock1.setFloating(true); - dock1.show(); - - QVERIFY(dock1.x() >= 0); - QVERIFY(dock1.y() >= 0); + QMainWindow window; + QDockWidget dock1(&window); + QDockWidget dock2(&window); + window.addDockWidget(Qt::RightDockWidgetArea, &dock1); + window.addDockWidget(Qt::RightDockWidgetArea, &dock2); + window.tabifyDockWidget(&dock1, &dock2); + dock1.hide(); + dock2.hide(); + window.show(); + dock1.setFloating(true); + dock1.show(); + QTest::qWaitForWindowShown(&dock1); + + QVERIFY(dock1.x() >= 0); + QVERIFY(dock1.y() >= 0); } -- cgit v1.2.1 From 75f0c1f0f0496ae22ed89b996dfb0050defd0f3e Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Sat, 8 May 2010 18:36:26 +0200 Subject: QUrl: fix parsing of IRIs with more than one IDN label Task-number: QTBUG-10511 Reviewed-by: Trust Me --- tests/auto/qurl/tst_qurl.cpp | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qurl/tst_qurl.cpp b/tests/auto/qurl/tst_qurl.cpp index 83109b5cea..8dffebb689 100644 --- a/tests/auto/qurl/tst_qurl.cpp +++ b/tests/auto/qurl/tst_qurl.cpp @@ -3189,6 +3189,32 @@ void tst_QUrl::ace_testsuite_data() QTest::newRow("separator-3002") << QString::fromUtf8("example\343\200\202com") << "example.com" << "." << "example.com"; + + QString egyptianIDN = + QString::fromUtf8("\331\210\330\262\330\247\330\261\330\251\055\330\247\331\204\330" + "\243\330\252\330\265\330\247\331\204\330\247\330\252.\331\205" + "\330\265\330\261"); + QTest::newRow("egyptian-tld-ace") + << "xn----rmckbbajlc6dj7bxne2c.xn--wgbh1c" + << "xn----rmckbbajlc6dj7bxne2c.xn--wgbh1c" + << "." + << egyptianIDN; + QTest::newRow("egyptian-tld-unicode") + << egyptianIDN + << "xn----rmckbbajlc6dj7bxne2c.xn--wgbh1c" + << "." + << egyptianIDN; + QTest::newRow("egyptian-tld-mix1") + << QString::fromUtf8("\331\210\330\262\330\247\330\261\330\251\055\330\247\331\204\330" + "\243\330\252\330\265\330\247\331\204\330\247\330\252.xn--wgbh1c") + << "xn----rmckbbajlc6dj7bxne2c.xn--wgbh1c" + << "." + << egyptianIDN; + QTest::newRow("egyptian-tld-mix2") + << QString::fromUtf8("xn----rmckbbajlc6dj7bxne2c.\331\205\330\265\330\261") + << "xn----rmckbbajlc6dj7bxne2c.xn--wgbh1c" + << "." + << egyptianIDN; } void tst_QUrl::ace_testsuite() -- cgit v1.2.1 From 6ab242e23832f0ab10ef26a3b7b505cf086ddf43 Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Mon, 10 May 2010 12:04:18 +1000 Subject: Prevent handling of Up/Down on Mac OS X, for consistency with other platforms. Task-number: QTBUG-10438 --- .../qdeclarativetextinput/tst_qdeclarativetextinput.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp index 0065ccf97c..c00390dbe7 100644 --- a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp +++ b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp @@ -576,6 +576,14 @@ void tst_qdeclarativetextinput::navigation() simulateKey(canvas, Qt::Key_Left); QVERIFY(input->hasFocus() == true); + // Up and Down should NOT do Home/End, even on Mac OS X (QTBUG-10438). + input->setCursorPosition(2); + QCOMPARE(input->cursorPosition(),2); + simulateKey(canvas, Qt::Key_Up); + QCOMPARE(input->cursorPosition(),2); + simulateKey(canvas, Qt::Key_Down); + QCOMPARE(input->cursorPosition(),2); + delete canvas; } -- cgit v1.2.1 From c4d8435f80ef72fa419591a666b4e989ccb2c173 Mon Sep 17 00:00:00 2001 From: Leonardo Sobral Cunha Date: Mon, 10 May 2010 12:19:16 +1000 Subject: Remove debug messages from mousearea autotest file --- .../declarative/qdeclarativemousearea/data/rejectEvent.qml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativemousearea/data/rejectEvent.qml b/tests/auto/declarative/qdeclarativemousearea/data/rejectEvent.qml index fecfadfaa8..c01e9383ca 100644 --- a/tests/auto/declarative/qdeclarativemousearea/data/rejectEvent.qml +++ b/tests/auto/declarative/qdeclarativemousearea/data/rejectEvent.qml @@ -14,15 +14,15 @@ Rectangle { MouseArea { id: mouseRegion1 anchors.fill: parent - onPressed: {console.log("press111"); root.mr1_pressed = true} - onReleased: {console.log("release111"); root.mr1_released = true} - onCanceled: {console.log("ungrab1111"); root.mr1_canceled = true} + onPressed: { root.mr1_pressed = true } + onReleased: { root.mr1_released = true } + onCanceled: { root.mr1_canceled = true } } MouseArea { id: mouseRegion2 width: 120; height: 120 - onPressed: {console.log("press222"); root.mr2_pressed = true; mouse.accepted = false} - onReleased: {console.log("release2222"); root.mr2_released = true} - onCanceled: {console.log("ungrab2222"); root.mr2_canceled = true} + onPressed: { root.mr2_pressed = true; mouse.accepted = false } + onReleased: { root.mr2_released = true } + onCanceled: { root.mr2_canceled = true } } } -- cgit v1.2.1 From a863691765b1788a17a67e826f483b68f0f34066 Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Mon, 10 May 2010 10:11:18 +0200 Subject: Stabilize tst_QDockWidget::taskQTBUG_9758_undockedGeometry --- tests/auto/qdockwidget/tst_qdockwidget.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'tests/auto') diff --git a/tests/auto/qdockwidget/tst_qdockwidget.cpp b/tests/auto/qdockwidget/tst_qdockwidget.cpp index 3ac0ce7f0d..205910120c 100644 --- a/tests/auto/qdockwidget/tst_qdockwidget.cpp +++ b/tests/auto/qdockwidget/tst_qdockwidget.cpp @@ -890,6 +890,7 @@ void tst_QDockWidget::taskQTBUG_9758_undockedGeometry() dock1.hide(); dock2.hide(); window.show(); + QTest::qWaitForWindowShown(&window); dock1.setFloating(true); dock1.show(); QTest::qWaitForWindowShown(&dock1); -- cgit v1.2.1 From 2df5a9567ff83a547c3c66e4b523844b78968108 Mon Sep 17 00:00:00 2001 From: Shane Kearns Date: Thu, 6 May 2010 17:34:58 +0100 Subject: Run autotests with minimal capabilities The autotests were previously run with ALL-Tcb capability which gives them more access to the filesystem etc. than a typical Qt application. To have more realistic testing environmnent, tests are run with no capabilities other than those required for the Qt APIs they use. i.e. NetworkServices for network tests, None for others. Reviewed-by: Liang Qi --- tests/auto/languagechange/tst_languagechange.cpp | 4 ++-- tests/auto/qabstractnetworkcache/qabstractnetworkcache.pro | 1 + tests/auto/qabstractsocket/qabstractsocket.pro | 1 + tests/auto/qdirmodel/tst_qdirmodel.cpp | 5 +++++ tests/auto/qftp/qftp.pro | 1 + tests/auto/qhostaddress/qhostaddress.pro | 1 + tests/auto/qhostinfo/qhostinfo.pro | 1 + tests/auto/qhttp/qhttp.pro | 1 + tests/auto/qhttpnetworkconnection/qhttpnetworkconnection.pro | 2 ++ tests/auto/qhttpnetworkreply/qhttpnetworkreply.pro | 1 + tests/auto/qhttpsocketengine/qhttpsocketengine.pro | 1 + tests/auto/qiodevice/qiodevice.pro | 1 + tests/auto/qlocalsocket/qlocalsocket.pro | 1 + tests/auto/qnativesocketengine/qnativesocketengine.pro | 1 + tests/auto/qnetworkaccessmanager/qnetworkaccessmanager.pro | 1 + .../qnetworkaccessmanager_and_qprogressdialog.pro | 1 + tests/auto/qnetworkaddressentry/qnetworkaddressentry.pro | 2 ++ tests/auto/qnetworkcachemetadata/qnetworkcachemetadata.pro | 1 + tests/auto/qnetworkcookie/qnetworkcookie.pro | 1 + tests/auto/qnetworkcookiejar/qnetworkcookiejar.pro | 1 + tests/auto/qnetworkdiskcache/qnetworkdiskcache.pro | 1 + tests/auto/qnetworkinterface/qnetworkinterface.pro | 1 + tests/auto/qnetworkproxy/qnetworkproxy.pro | 1 + tests/auto/qnetworkreply/qnetworkreply.pro | 1 + tests/auto/qnetworkrequest/qnetworkrequest.pro | 1 + tests/auto/qnetworksession/qnetworksession.pro | 1 + tests/auto/qsocketnotifier/qsocketnotifier.pro | 1 + tests/auto/qsocks5socketengine/qsocks5socketengine.pro | 1 + tests/auto/qsslcertificate/qsslcertificate.pro | 1 + tests/auto/qsslcipher/qsslcipher.pro | 1 + tests/auto/qsslerror/qsslerror.pro | 1 + tests/auto/qsslkey/qsslkey.pro | 1 + tests/auto/qsslsocket/qsslsocket.pro | 2 +- tests/auto/qtcpserver/qtcpserver.pro | 1 + tests/auto/qtcpsocket/qtcpsocket.pro | 1 + tests/auto/qudpsocket/qudpsocket.pro | 1 + tests/auto/qurl/qurl.pro | 1 + 37 files changed, 44 insertions(+), 3 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/languagechange/tst_languagechange.cpp b/tests/auto/languagechange/tst_languagechange.cpp index d04707e7ab..bcc3be46a8 100644 --- a/tests/auto/languagechange/tst_languagechange.cpp +++ b/tests/auto/languagechange/tst_languagechange.cpp @@ -238,8 +238,8 @@ void tst_languageChange::retranslatability() QString fooName = tmpParentDir + "/foo"; QDir dir; QCOMPARE(dir.mkpath(tmpDir), true); -#if defined(Q_OS_SYMBIAN) && defined(Q_CC_NOKIAX86) - // Just create a new file instead of copying exe, because exe is not there in emulator +#if defined(Q_OS_SYMBIAN) + // Just create a new file instead of copying exe, because there is no read access to /sys/bin { QFile fooFile(fooName); QVERIFY(fooFile.open(QIODevice::WriteOnly | QIODevice::Text)); diff --git a/tests/auto/qabstractnetworkcache/qabstractnetworkcache.pro b/tests/auto/qabstractnetworkcache/qabstractnetworkcache.pro index a57c56f7a3..2e2577dcb1 100644 --- a/tests/auto/qabstractnetworkcache/qabstractnetworkcache.pro +++ b/tests/auto/qabstractnetworkcache/qabstractnetworkcache.pro @@ -9,3 +9,4 @@ wince*|symbian: { DEPLOYMENT += testFiles } +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qabstractsocket/qabstractsocket.pro b/tests/auto/qabstractsocket/qabstractsocket.pro index 59999af811..814a7d2600 100644 --- a/tests/auto/qabstractsocket/qabstractsocket.pro +++ b/tests/auto/qabstractsocket/qabstractsocket.pro @@ -7,4 +7,5 @@ QT = core network SOURCES += tst_qabstractsocket.cpp +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qdirmodel/tst_qdirmodel.cpp b/tests/auto/qdirmodel/tst_qdirmodel.cpp index 1bc5b7fddb..41bbd8708c 100644 --- a/tests/auto/qdirmodel/tst_qdirmodel.cpp +++ b/tests/auto/qdirmodel/tst_qdirmodel.cpp @@ -613,6 +613,11 @@ void tst_QDirModel::task196768_sorting() //this task showed that the persistent model indexes got corrupted when sorting QString path = SRCDIR; +#ifdef Q_OS_SYMBIAN + if(!RProcess().HasCapability(ECapabilityAllFiles)) + QEXPECT_FAIL("", "QTBUG-9746", Continue); +#endif + QDirModel model; /* QDirModel has a bug if we show the content of the subdirectory inside a hidden directory diff --git a/tests/auto/qftp/qftp.pro b/tests/auto/qftp/qftp.pro index c060296e7f..33d479aa56 100644 --- a/tests/auto/qftp/qftp.pro +++ b/tests/auto/qftp/qftp.pro @@ -14,6 +14,7 @@ wince*: { addFiles.path = . DEPLOYMENT += addFiles TARGET.EPOCHEAPSIZE="0x100 0x1000000" + TARGET.CAPABILITY = NetworkServices } else { DEFINES += SRCDIR=\\\"$$PWD/\\\" } diff --git a/tests/auto/qhostaddress/qhostaddress.pro b/tests/auto/qhostaddress/qhostaddress.pro index b208214103..7bcbfb0165 100644 --- a/tests/auto/qhostaddress/qhostaddress.pro +++ b/tests/auto/qhostaddress/qhostaddress.pro @@ -12,3 +12,4 @@ wince*: { } } +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qhostinfo/qhostinfo.pro b/tests/auto/qhostinfo/qhostinfo.pro index 9bfe576f3c..06a4b17071 100644 --- a/tests/auto/qhostinfo/qhostinfo.pro +++ b/tests/auto/qhostinfo/qhostinfo.pro @@ -10,4 +10,5 @@ wince*: { win32:LIBS += -lws2_32 } +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qhttp/qhttp.pro b/tests/auto/qhttp/qhttp.pro index 8678a19652..23a73c467f 100644 --- a/tests/auto/qhttp/qhttp.pro +++ b/tests/auto/qhttp/qhttp.pro @@ -21,6 +21,7 @@ wince*: { addFiles.sources = rfc3252.txt trolltech addFiles.path = . DEPLOYMENT = addFiles webFiles cgi + TARGET.CAPABILITY = NetworkServices } else:vxworks*: { DEFINES += SRCDIR=\\\"\\\" } else { diff --git a/tests/auto/qhttpnetworkconnection/qhttpnetworkconnection.pro b/tests/auto/qhttpnetworkconnection/qhttpnetworkconnection.pro index 0021bc1d28..d9e2dce0d3 100644 --- a/tests/auto/qhttpnetworkconnection/qhttpnetworkconnection.pro +++ b/tests/auto/qhttpnetworkconnection/qhttpnetworkconnection.pro @@ -4,3 +4,5 @@ INCLUDEPATH += $$QT_SOURCE_TREE/src/3rdparty/zlib requires(contains(QT_CONFIG,private_tests)) QT = core network + +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qhttpnetworkreply/qhttpnetworkreply.pro b/tests/auto/qhttpnetworkreply/qhttpnetworkreply.pro index 1782b431a2..36d56c6f20 100644 --- a/tests/auto/qhttpnetworkreply/qhttpnetworkreply.pro +++ b/tests/auto/qhttpnetworkreply/qhttpnetworkreply.pro @@ -4,3 +4,4 @@ INCLUDEPATH += $$QT_SOURCE_TREE/src/3rdparty/zlib requires(contains(QT_CONFIG,private_tests)) QT = core network +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qhttpsocketengine/qhttpsocketengine.pro b/tests/auto/qhttpsocketengine/qhttpsocketengine.pro index f6ad073b7a..d76ebb6f10 100644 --- a/tests/auto/qhttpsocketengine/qhttpsocketengine.pro +++ b/tests/auto/qhttpsocketengine/qhttpsocketengine.pro @@ -8,5 +8,6 @@ MOC_DIR=tmp QT = core network +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qiodevice/qiodevice.pro b/tests/auto/qiodevice/qiodevice.pro index e695bf6843..716cdcef10 100644 --- a/tests/auto/qiodevice/qiodevice.pro +++ b/tests/auto/qiodevice/qiodevice.pro @@ -14,6 +14,7 @@ wince*: { addFiles.sources = tst_qiodevice.cpp addFiles.path = . DEPLOYMENT += addFiles + TARGET.CAPABILITY = NetworkServices } else { DEFINES += SRCDIR=\\\"$$PWD/\\\" contains(QT_CONFIG, qt3support):QT += qt3support diff --git a/tests/auto/qlocalsocket/qlocalsocket.pro b/tests/auto/qlocalsocket/qlocalsocket.pro index 0849453aac..287e946aae 100644 --- a/tests/auto/qlocalsocket/qlocalsocket.pro +++ b/tests/auto/qlocalsocket/qlocalsocket.pro @@ -1,3 +1,4 @@ TEMPLATE = subdirs SUBDIRS = lackey test !wince*:!symbian*: SUBDIRS += example +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qnativesocketengine/qnativesocketengine.pro b/tests/auto/qnativesocketengine/qnativesocketengine.pro index ad40d53ca8..0275d378da 100644 --- a/tests/auto/qnativesocketengine/qnativesocketengine.pro +++ b/tests/auto/qnativesocketengine/qnativesocketengine.pro @@ -9,4 +9,5 @@ MOC_DIR=tmp QT = core network +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qnetworkaccessmanager/qnetworkaccessmanager.pro b/tests/auto/qnetworkaccessmanager/qnetworkaccessmanager.pro index e2889c140a..3ccbffbde8 100644 --- a/tests/auto/qnetworkaccessmanager/qnetworkaccessmanager.pro +++ b/tests/auto/qnetworkaccessmanager/qnetworkaccessmanager.pro @@ -2,4 +2,5 @@ load(qttest_p4) SOURCES += tst_qnetworkaccessmanager.cpp QT = core network +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qnetworkaccessmanager_and_qprogressdialog/qnetworkaccessmanager_and_qprogressdialog.pro b/tests/auto/qnetworkaccessmanager_and_qprogressdialog/qnetworkaccessmanager_and_qprogressdialog.pro index 7ed5b07f7e..378deba11e 100644 --- a/tests/auto/qnetworkaccessmanager_and_qprogressdialog/qnetworkaccessmanager_and_qprogressdialog.pro +++ b/tests/auto/qnetworkaccessmanager_and_qprogressdialog/qnetworkaccessmanager_and_qprogressdialog.pro @@ -2,4 +2,5 @@ load(qttest_p4) SOURCES += tst_qnetworkaccessmanager_and_qprogressdialog.cpp QT += network +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qnetworkaddressentry/qnetworkaddressentry.pro b/tests/auto/qnetworkaddressentry/qnetworkaddressentry.pro index 8feb95fbab..885dbf796c 100644 --- a/tests/auto/qnetworkaddressentry/qnetworkaddressentry.pro +++ b/tests/auto/qnetworkaddressentry/qnetworkaddressentry.pro @@ -2,3 +2,5 @@ load(qttest_p4) SOURCES += tst_qnetworkaddressentry.cpp QT = core network + +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qnetworkcachemetadata/qnetworkcachemetadata.pro b/tests/auto/qnetworkcachemetadata/qnetworkcachemetadata.pro index b24fe0074c..77ad34754c 100644 --- a/tests/auto/qnetworkcachemetadata/qnetworkcachemetadata.pro +++ b/tests/auto/qnetworkcachemetadata/qnetworkcachemetadata.pro @@ -2,4 +2,5 @@ load(qttest_p4) QT += network SOURCES += tst_qnetworkcachemetadata.cpp +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qnetworkcookie/qnetworkcookie.pro b/tests/auto/qnetworkcookie/qnetworkcookie.pro index 95d8b6ea1f..2f31138daf 100644 --- a/tests/auto/qnetworkcookie/qnetworkcookie.pro +++ b/tests/auto/qnetworkcookie/qnetworkcookie.pro @@ -2,3 +2,4 @@ load(qttest_p4) SOURCES += tst_qnetworkcookie.cpp QT = core network +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qnetworkcookiejar/qnetworkcookiejar.pro b/tests/auto/qnetworkcookiejar/qnetworkcookiejar.pro index 3a8e61b9de..6d75fab758 100644 --- a/tests/auto/qnetworkcookiejar/qnetworkcookiejar.pro +++ b/tests/auto/qnetworkcookiejar/qnetworkcookiejar.pro @@ -2,3 +2,4 @@ load(qttest_p4) SOURCES += tst_qnetworkcookiejar.cpp QT = core network +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qnetworkdiskcache/qnetworkdiskcache.pro b/tests/auto/qnetworkdiskcache/qnetworkdiskcache.pro index f47d6d7e41..3b13087836 100644 --- a/tests/auto/qnetworkdiskcache/qnetworkdiskcache.pro +++ b/tests/auto/qnetworkdiskcache/qnetworkdiskcache.pro @@ -2,4 +2,5 @@ load(qttest_p4) QT += network SOURCES += tst_qnetworkdiskcache.cpp +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qnetworkinterface/qnetworkinterface.pro b/tests/auto/qnetworkinterface/qnetworkinterface.pro index 26095e909e..1c5feee3f2 100644 --- a/tests/auto/qnetworkinterface/qnetworkinterface.pro +++ b/tests/auto/qnetworkinterface/qnetworkinterface.pro @@ -3,4 +3,5 @@ SOURCES += tst_qnetworkinterface.cpp QT = core network +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qnetworkproxy/qnetworkproxy.pro b/tests/auto/qnetworkproxy/qnetworkproxy.pro index 8ffc80c8c8..fc0a216a15 100644 --- a/tests/auto/qnetworkproxy/qnetworkproxy.pro +++ b/tests/auto/qnetworkproxy/qnetworkproxy.pro @@ -7,4 +7,5 @@ QT = core network SOURCES += tst_qnetworkproxy.cpp +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qnetworkreply/qnetworkreply.pro b/tests/auto/qnetworkreply/qnetworkreply.pro index fd8454c235..86d3155c05 100644 --- a/tests/auto/qnetworkreply/qnetworkreply.pro +++ b/tests/auto/qnetworkreply/qnetworkreply.pro @@ -4,3 +4,4 @@ SUBDIRS = test requires(contains(QT_CONFIG,private_tests)) !wince*:SUBDIRS += echo +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qnetworkrequest/qnetworkrequest.pro b/tests/auto/qnetworkrequest/qnetworkrequest.pro index f576ba221f..f96fd3bb02 100644 --- a/tests/auto/qnetworkrequest/qnetworkrequest.pro +++ b/tests/auto/qnetworkrequest/qnetworkrequest.pro @@ -2,3 +2,4 @@ load(qttest_p4) SOURCES += tst_qnetworkrequest.cpp QT = core network +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qnetworksession/qnetworksession.pro b/tests/auto/qnetworksession/qnetworksession.pro index a85925bc17..34761e53cf 100644 --- a/tests/auto/qnetworksession/qnetworksession.pro +++ b/tests/auto/qnetworksession/qnetworksession.pro @@ -1,2 +1,3 @@ TEMPLATE = subdirs SUBDIRS = lackey test +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qsocketnotifier/qsocketnotifier.pro b/tests/auto/qsocketnotifier/qsocketnotifier.pro index ec924c189b..c43c96aa74 100644 --- a/tests/auto/qsocketnotifier/qsocketnotifier.pro +++ b/tests/auto/qsocketnotifier/qsocketnotifier.pro @@ -6,5 +6,6 @@ requires(contains(QT_CONFIG,private_tests)) include(../qnativesocketengine/qsocketengine.pri) +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qsocks5socketengine/qsocks5socketengine.pro b/tests/auto/qsocks5socketengine/qsocks5socketengine.pro index 4a32852092..cd5e6e7824 100644 --- a/tests/auto/qsocks5socketengine/qsocks5socketengine.pro +++ b/tests/auto/qsocks5socketengine/qsocks5socketengine.pro @@ -11,6 +11,7 @@ QT = core network # Symbian toolchain does not support correct include semantics symbian:INCPATH+=..\..\..\include\QtNetwork\private +symbian: TARGET.CAPABILITY = NetworkServices requires(contains(QT_CONFIG,private_tests)) diff --git a/tests/auto/qsslcertificate/qsslcertificate.pro b/tests/auto/qsslcertificate/qsslcertificate.pro index b237f2e5e9..d7671ea23e 100644 --- a/tests/auto/qsslcertificate/qsslcertificate.pro +++ b/tests/auto/qsslcertificate/qsslcertificate.pro @@ -24,4 +24,5 @@ wince*: { DEFINES += SRCDIR=\\\".\\\" } else:!symbian { DEFINES += SRCDIR=\\\"$$PWD/\\\" + TARGET.CAPABILITY = NetworkServices } diff --git a/tests/auto/qsslcipher/qsslcipher.pro b/tests/auto/qsslcipher/qsslcipher.pro index 6eae588155..78fd387069 100644 --- a/tests/auto/qsslcipher/qsslcipher.pro +++ b/tests/auto/qsslcipher/qsslcipher.pro @@ -14,4 +14,5 @@ win32 { } } +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qsslerror/qsslerror.pro b/tests/auto/qsslerror/qsslerror.pro index ee5872b98c..5b907fb600 100644 --- a/tests/auto/qsslerror/qsslerror.pro +++ b/tests/auto/qsslerror/qsslerror.pro @@ -14,4 +14,5 @@ win32 { } } +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qsslkey/qsslkey.pro b/tests/auto/qsslkey/qsslkey.pro index 32138f84f9..e3eeef9149 100644 --- a/tests/auto/qsslkey/qsslkey.pro +++ b/tests/auto/qsslkey/qsslkey.pro @@ -24,4 +24,5 @@ wince*: { DEFINES += SRCDIR=\\\".\\\" } else:!symbian { DEFINES+= SRCDIR=\\\"$$PWD\\\" + TARGET.CAPABILITY = NetworkServices } diff --git a/tests/auto/qsslsocket/qsslsocket.pro b/tests/auto/qsslsocket/qsslsocket.pro index 541b2d9587..3557fc8969 100644 --- a/tests/auto/qsslsocket/qsslsocket.pro +++ b/tests/auto/qsslsocket/qsslsocket.pro @@ -24,7 +24,7 @@ wince* { } else:symbian { DEFINES += QSSLSOCKET_CERTUNTRUSTED_WORKAROUND TARGET.EPOCHEAPSIZE="0x100 0x1000000" - TARGET.CAPABILITY="ALL -TCB" + TARGET.CAPABILITY=NetworkServices certFiles.sources = certs ssl.tar.gz certFiles.path = . diff --git a/tests/auto/qtcpserver/qtcpserver.pro b/tests/auto/qtcpserver/qtcpserver.pro index fe5ea372d5..a3744a2c7f 100644 --- a/tests/auto/qtcpserver/qtcpserver.pro +++ b/tests/auto/qtcpserver/qtcpserver.pro @@ -1,5 +1,6 @@ TEMPLATE = subdirs SUBDIRS = test crashingServer +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qtcpsocket/qtcpsocket.pro b/tests/auto/qtcpsocket/qtcpsocket.pro index 3d4eba3eb3..370a69552a 100644 --- a/tests/auto/qtcpsocket/qtcpsocket.pro +++ b/tests/auto/qtcpsocket/qtcpsocket.pro @@ -6,3 +6,4 @@ wince*|symbian*|vxworks* : SUBDIRS = test requires(contains(QT_CONFIG,private_tests)) +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qudpsocket/qudpsocket.pro b/tests/auto/qudpsocket/qudpsocket.pro index 4ef8a40cb0..8fd3545262 100644 --- a/tests/auto/qudpsocket/qudpsocket.pro +++ b/tests/auto/qudpsocket/qudpsocket.pro @@ -1,5 +1,6 @@ TEMPLATE = subdirs SUBDIRS = test clientserver +symbian: TARGET.CAPABILITY = NetworkServices diff --git a/tests/auto/qurl/qurl.pro b/tests/auto/qurl/qurl.pro index 72c93bc696..018bb38612 100644 --- a/tests/auto/qurl/qurl.pro +++ b/tests/auto/qurl/qurl.pro @@ -1,3 +1,4 @@ load(qttest_p4) SOURCES += tst_qurl.cpp QT = core +symbian: TARGET.CAPABILITY = NetworkServices -- cgit v1.2.1 From 48acfd970f5fab740fd16ecdc31656c56ec2356b Mon Sep 17 00:00:00 2001 From: Shane Kearns Date: Mon, 10 May 2010 15:26:12 +0100 Subject: Fix compile errors Added #ifdef QT_BUILD_INTERNAL for autotests which rely on AUTOTEST_EXPORT symbols (only available in internal developer configurations) Reviewed-by: Liang Qi --- tests/auto/qwidget/tst_qwidget.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qwidget/tst_qwidget.cpp b/tests/auto/qwidget/tst_qwidget.cpp index 76e20b997e..5d47aedcad 100644 --- a/tests/auto/qwidget/tst_qwidget.cpp +++ b/tests/auto/qwidget/tst_qwidget.cpp @@ -9514,6 +9514,8 @@ void tst_QWidget::destroyBackingStore() w.update(); QApplication::processEvents(); QCOMPARE(w.numPaintEvents, 2); +#else + QSKIP("Test case relies on developer build (AUTOTEST_EXPORT)", SkipAll); #endif } @@ -9992,6 +9994,7 @@ void tst_QWidget::focusProxyAndInputMethods() delete toplevel; } +#ifdef QT_BUILD_INTERNAL class scrollWidgetWBS : public QWidget { public: @@ -10011,9 +10014,11 @@ public: } } }; +#endif void tst_QWidget::scrollWithoutBackingStore() { +#ifdef QT_BUILD_INTERNAL scrollWidgetWBS scrollable; scrollable.resize(100,100); QLabel child(QString("@"),&scrollable); @@ -10027,6 +10032,9 @@ void tst_QWidget::scrollWithoutBackingStore() QCOMPARE(child.pos(),QPoint(25,25)); scrollable.enableBackingStore(); QCOMPARE(child.pos(),QPoint(25,25)); +#else + QSKIP("Test case relies on developer build (AUTOTEST_EXPORT)", SkipAll); +#endif } void tst_QWidget::taskQTBUG_7532_tabOrderWithFocusProxy() -- cgit v1.2.1 From da8d6c23ceaeb1f266c9c499e98c9fedb1d1e20d Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Tue, 11 May 2010 08:13:33 +1000 Subject: Error message on QWS appears to have changed. --- .../declarative/qdeclarativefontloader/tst_qdeclarativefontloader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativefontloader/tst_qdeclarativefontloader.cpp b/tests/auto/declarative/qdeclarativefontloader/tst_qdeclarativefontloader.cpp index dc9c2b28db..d68b3e3fd0 100644 --- a/tests/auto/declarative/qdeclarativefontloader/tst_qdeclarativefontloader.cpp +++ b/tests/auto/declarative/qdeclarativefontloader/tst_qdeclarativefontloader.cpp @@ -123,7 +123,7 @@ void tst_qdeclarativefontloader::failLocalFont() QString componentStr = "import Qt 4.7\nFontLoader { source: \"" + QUrl::fromLocalFile(SRCDIR "/data/dummy.ttf").toString() + "\" }"; QTest::ignoreMessage(QtWarningMsg, QString("file::2:1: QML FontLoader: Cannot load font: \"" + QUrl::fromLocalFile(SRCDIR "/data/dummy.ttf").toString() + "\"").toUtf8().constData()); #ifdef Q_WS_QWS - QTest::ignoreMessage(QtDebugMsg, QString("FT_New_Face failed with index 0 : 51 ").toLatin1()); + QTest::ignoreMessage(QtDebugMsg, QString("FT_New_Face failed with index 0 : 2 ").toLatin1()); #endif QDeclarativeComponent component(&engine); component.setData(componentStr.toLatin1(), QUrl::fromLocalFile("")); -- cgit v1.2.1 From cd70183a86f3586eb34c15f11af03746f28f4acc Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Tue, 11 May 2010 08:57:17 +1000 Subject: Remove unnecesary check for debug output. --- .../declarative/qdeclarativefontloader/tst_qdeclarativefontloader.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativefontloader/tst_qdeclarativefontloader.cpp b/tests/auto/declarative/qdeclarativefontloader/tst_qdeclarativefontloader.cpp index d68b3e3fd0..36908d9143 100644 --- a/tests/auto/declarative/qdeclarativefontloader/tst_qdeclarativefontloader.cpp +++ b/tests/auto/declarative/qdeclarativefontloader/tst_qdeclarativefontloader.cpp @@ -122,9 +122,6 @@ void tst_qdeclarativefontloader::failLocalFont() { QString componentStr = "import Qt 4.7\nFontLoader { source: \"" + QUrl::fromLocalFile(SRCDIR "/data/dummy.ttf").toString() + "\" }"; QTest::ignoreMessage(QtWarningMsg, QString("file::2:1: QML FontLoader: Cannot load font: \"" + QUrl::fromLocalFile(SRCDIR "/data/dummy.ttf").toString() + "\"").toUtf8().constData()); -#ifdef Q_WS_QWS - QTest::ignoreMessage(QtDebugMsg, QString("FT_New_Face failed with index 0 : 2 ").toLatin1()); -#endif QDeclarativeComponent component(&engine); component.setData(componentStr.toLatin1(), QUrl::fromLocalFile("")); QDeclarativeFontLoader *fontObject = qobject_cast(component.create()); -- cgit v1.2.1 From 129940723d9145a4380f7e44c06cbaa88ee4053b Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Tue, 11 May 2010 11:07:23 +1000 Subject: Correct ownership of signal handlers in state changes. When a state uses override, we may apply the same replacesignalhandler on top of itself. Make sure we update ownership accordingly. Task-number: QTBUG-10523 --- .../data/signalOverrideCrash2.qml | 24 ++++++++++++++++++++++ .../qdeclarativestates/tst_qdeclarativestates.cpp | 16 +++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativestates/data/signalOverrideCrash2.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativestates/data/signalOverrideCrash2.qml b/tests/auto/declarative/qdeclarativestates/data/signalOverrideCrash2.qml new file mode 100644 index 0000000000..2215ee4ced --- /dev/null +++ b/tests/auto/declarative/qdeclarativestates/data/signalOverrideCrash2.qml @@ -0,0 +1,24 @@ +import Qt 4.7 + +Rectangle { + id: myRect + width: 400 + height: 400 + + states: [ + State { + name: "state1" + PropertyChanges { + target: myRect + onHeightChanged: console.log("Hello World") + color: "green" + } + }, + State { + name: "state2"; extend: "state1" + PropertyChanges { + target: myRect + color: "red" + } + }] +} diff --git a/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp b/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp index 13992ad801..ea074a4882 100644 --- a/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp +++ b/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp @@ -87,6 +87,7 @@ private slots: void basicBinding(); void signalOverride(); void signalOverrideCrash(); + void signalOverrideCrash2(); void parentChange(); void parentChangeErrors(); void anchorChanges(); @@ -449,6 +450,21 @@ void tst_qdeclarativestates::signalOverrideCrash() rect->doSomething(); } +void tst_qdeclarativestates::signalOverrideCrash2() +{ + QDeclarativeEngine engine; + + QDeclarativeComponent rectComponent(&engine, SRCDIR "/data/signalOverrideCrash2.qml"); + QDeclarativeRectangle *rect = qobject_cast(rectComponent.create()); + QVERIFY(rect != 0); + + QDeclarativeItemPrivate::get(rect)->setState("state1"); + QDeclarativeItemPrivate::get(rect)->setState("state2"); + QDeclarativeItemPrivate::get(rect)->setState("state1"); + + delete rect; +} + void tst_qdeclarativestates::parentChange() { QDeclarativeEngine engine; -- cgit v1.2.1 From aa40b01fcda22e654790aaf93a6b14f947cdea72 Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Tue, 11 May 2010 13:09:49 +1000 Subject: Round ideal width up to prevent incorrect word wrapping on Mac OS X QTBUG-10539 --- .../declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp index 8cc0e3f38a..b92024fb96 100644 --- a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp +++ b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp @@ -202,7 +202,7 @@ void tst_qdeclarativetextedit::width() QFont f; QFontMetricsF fm(f); qreal metricWidth = fm.size(Qt::TextExpandTabs && Qt::TextShowMnemonic, standard.at(i)).width(); - metricWidth = floor(metricWidth); + metricWidth = ceil(metricWidth); QString componentStr = "import Qt 4.7\nTextEdit { text: \"" + standard.at(i) + "\" }"; QDeclarativeComponent texteditComponent(&engine); @@ -219,7 +219,7 @@ void tst_qdeclarativetextedit::width() document.setHtml(richText.at(i)); document.setDocumentMargin(0); - int documentWidth = document.idealWidth(); + int documentWidth = ceil(document.idealWidth()); QString componentStr = "import Qt 4.7\nTextEdit { text: \"" + richText.at(i) + "\" }"; QDeclarativeComponent texteditComponent(&engine); -- cgit v1.2.1 From a7b128ae838b006be1259ef6ba79da5440ed52dd Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Tue, 11 May 2010 09:59:56 +0200 Subject: Stabilize tst_QColumnView::parentCurrentIndex --- tests/auto/qcolumnview/tst_qcolumnview.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qcolumnview/tst_qcolumnview.cpp b/tests/auto/qcolumnview/tst_qcolumnview.cpp index 90f499d22f..1da8c5dc16 100644 --- a/tests/auto/qcolumnview/tst_qcolumnview.cpp +++ b/tests/auto/qcolumnview/tst_qcolumnview.cpp @@ -596,11 +596,11 @@ void tst_QColumnView::clicked() QTest::mouseClick(view.viewport(), Qt::LeftButton, 0, localPoint); QCOMPARE(clickedSpy.count(), 1); qApp->processEvents(); - + if (sizeof(qreal) != sizeof(double)) { QSKIP("Skipped due to rounding errors", SkipAll); } - + for (int i = 0; i < view.createdColumns.count(); ++i) { QAbstractItemView *column = view.createdColumns.at(i); if (column && column->selectionModel() && (column->rootIndex() == home)) @@ -961,9 +961,9 @@ void tst_QColumnView::parentCurrentIndex() QVERIFY(third.isValid()); view.setCurrentIndex(third); QTest::qWait(ANIMATION_DELAY); - QCOMPARE(view.createdColumns[0]->currentIndex(), first); - QCOMPARE(view.createdColumns[1]->currentIndex(), second); - QCOMPARE(view.createdColumns[2]->currentIndex(), third); + QTRY_COMPARE(view.createdColumns[0]->currentIndex(), first); + QTRY_COMPARE(view.createdColumns[1]->currentIndex(), second); + QTRY_COMPARE(view.createdColumns[2]->currentIndex(), third); first = model.index(0, 0, QModelIndex()); second = model.index(secondRow, 0, first); -- cgit v1.2.1 From 814f7d3d607edacca091273302297b6b2674424f Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Tue, 11 May 2010 12:49:32 +0200 Subject: Fix compiler warning in QT_REQUIRE_VERSION warning: format not a string literal and no format arguments Task-number: QTBUG-8967 Reviewed-by: Gabriel --- tests/auto/qmessagebox/tst_qmessagebox.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qmessagebox/tst_qmessagebox.cpp b/tests/auto/qmessagebox/tst_qmessagebox.cpp index 2de1c52df7..d4ca0641af 100644 --- a/tests/auto/qmessagebox/tst_qmessagebox.cpp +++ b/tests/auto/qmessagebox/tst_qmessagebox.cpp @@ -140,6 +140,8 @@ private: tst_QMessageBox::tst_QMessageBox() : keyToSend(-1) { + int argc = qApp->argc(); + QT_REQUIRE_VERSION(argc, qApp->argv(), "4.6.2") } int tst_QMessageBox::exec(QMessageBox *msgBox, int key) -- cgit v1.2.1 From 355bacaa767f48014478d91e3d79f19f966c9756 Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Tue, 11 May 2010 16:50:24 +1000 Subject: Ensure QPixmapCache does not flush pixmaps that are still in use. Task-number: QTBUG-10576 Reviewed-by: Alexis Menard --- tests/auto/qpixmapcache/tst_qpixmapcache.cpp | 34 ++++++++++++++++++++-------- 1 file changed, 24 insertions(+), 10 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qpixmapcache/tst_qpixmapcache.cpp b/tests/auto/qpixmapcache/tst_qpixmapcache.cpp index f8951f5be2..70f2ac35bc 100644 --- a/tests/auto/qpixmapcache/tst_qpixmapcache.cpp +++ b/tests/auto/qpixmapcache/tst_qpixmapcache.cpp @@ -39,6 +39,7 @@ ** ****************************************************************************/ +#define Q_TEST_QPIXMAPCACHE #include @@ -152,6 +153,7 @@ void tst_QPixmapCache::setCacheLimit() p1 = new QPixmap(2, 3); key = QPixmapCache::insert(*p1); QVERIFY(QPixmapCache::find(key, p1) != 0); + p1->detach(); // dectach so that the cache thinks no-one is using it. QPixmapCache::setCacheLimit(0); QVERIFY(QPixmapCache::find(key, p1) == 0); QPixmapCache::setCacheLimit(1000); @@ -169,6 +171,8 @@ void tst_QPixmapCache::setCacheLimit() key = QPixmapCache::insert(*p1); QVERIFY(QPixmapCache::find(key, &p2) != 0); //we flush the cache + p1->detach(); + p2.detach(); QPixmapCache::setCacheLimit(0); QPixmapCache::setCacheLimit(1000); QPixmapCache::Key key2 = QPixmapCache::insert(*p1); @@ -180,21 +184,25 @@ void tst_QPixmapCache::setCacheLimit() delete p1; //Here we simulate the flushing when the app is idle - /*QPixmapCache::clear(); + QPixmapCache::clear(); QPixmapCache::setCacheLimit(originalCacheLimit); p1 = new QPixmap(300, 300); key = QPixmapCache::insert(*p1); + p1->detach(); QCOMPARE(getPrivate(key)->key, 1); key2 = QPixmapCache::insert(*p1); + p1->detach(); key2 = QPixmapCache::insert(*p1); + p1->detach(); QPixmapCache::Key key3 = QPixmapCache::insert(*p1); - QTest::qWait(32000); + p1->detach(); + QPixmapCache::flushDetachedPixmaps(); key2 = QPixmapCache::insert(*p1); QCOMPARE(getPrivate(key2)->key, 1); //This old key is not valid anymore after the flush QCOMPARE(getPrivate(key)->isValid, false); QVERIFY(QPixmapCache::find(key, &p2) == 0); - delete p1;*/ + delete p1; } void tst_QPixmapCache::find() @@ -225,12 +233,14 @@ void tst_QPixmapCache::find() QPixmapCache::clear(); QPixmapCache::setCacheLimit(128); - key = QPixmapCache::insert(p1); + QPixmap p4(10,10); + key = QPixmapCache::insert(p4); + p4.detach(); - //The int part of the API + QPixmap p5(10,10); QList keys; for (int i = 0; i < 4000; ++i) - QPixmapCache::insert(p1); + QPixmapCache::insert(p5); //at that time the first key has been erase because no more place in the cache QVERIFY(QPixmapCache::find(key, &p1) == 0); @@ -257,8 +267,10 @@ void tst_QPixmapCache::insert() QPixmapCache::insert("0", p1); // ditto - for (int j = 0; j < numberOfKeys; ++j) - QPixmapCache::insert(QString::number(j), p1); + for (int j = 0; j < numberOfKeys; ++j) { + QPixmap p3(10, 10); + QPixmapCache::insert(QString::number(j), p3); + } int num = 0; for (int k = 0; k < numberOfKeys; ++k) { @@ -286,8 +298,10 @@ void tst_QPixmapCache::insert() //The int part of the API // make sure it doesn't explode QList keys; - for (int i = 0; i < numberOfKeys; ++i) - keys.append(QPixmapCache::insert(p1)); + for (int i = 0; i < numberOfKeys; ++i) { + QPixmap p3(10,10); + keys.append(QPixmapCache::insert(p3)); + } num = 0; for (int k = 0; k < numberOfKeys; ++k) { -- cgit v1.2.1 From 6527735ff53a8ec593f5f85b037de46059e1207e Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Wed, 12 May 2010 09:24:30 +1000 Subject: Ensure PathView "attribute" attached properties are created correctly If an item was created spontaneously (i.e. delegate is a package and some other view created the item), ensure its attached properties are correctly initialized. Task-number: QTBUG-10527 --- .../qdeclarativepathview/data/pathview_package.qml | 88 ++++++++++++++++++++++ .../tst_qdeclarativepathview.cpp | 17 +++++ 2 files changed, 105 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativepathview/data/pathview_package.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativepathview/data/pathview_package.qml b/tests/auto/declarative/qdeclarativepathview/data/pathview_package.qml new file mode 100644 index 0000000000..082da13ad6 --- /dev/null +++ b/tests/auto/declarative/qdeclarativepathview/data/pathview_package.qml @@ -0,0 +1,88 @@ +import Qt 4.7 + +Item { + width: 800; height: 600 + Component { + id: photoDelegate + Package { + Item { id: pathItem; objectName: "pathItem"; Package.name: 'path'; width: 85; height: 85; scale: pathItem.PathView.scale } + Item { id: linearItem; Package.name: 'linear'; width: 85; height: 85 } + Rectangle { + id: wrapper + width: 85; height: 85; color: lColor + + transform: Rotation { + id: itemRotation; origin.x: wrapper.width/2; origin.y: wrapper.height/2 + axis.y: 1; axis.z: 0 + } + state: 'path' + states: [ + State { + name: 'path' + ParentChange { target: wrapper; parent: pathItem; x: 0; y: 0 } + PropertyChanges { target: wrapper; opacity: pathItem.PathView.onPath ? 1.0 : 0 } + } + ] + } + } + } + ListModel { + id: rssModel + ListElement { lColor: "red" } + ListElement { lColor: "green" } + ListElement { lColor: "yellow" } + ListElement { lColor: "blue" } + ListElement { lColor: "purple" } + ListElement { lColor: "gray" } + ListElement { lColor: "brown" } + ListElement { lColor: "thistle" } + } + VisualDataModel { id: visualModel; model: rssModel; delegate: photoDelegate } + + PathView { + id: photoPathView + objectName: "photoPathView" + width: 800; height: 330; pathItemCount: 4; offset: 1 + dragMargin: 24 + preferredHighlightBegin: 0.50 + preferredHighlightEnd: 0.50 + + path: Path { + startX: -50; startY: 40; + + PathAttribute { name: "scale"; value: 0.5 } + PathAttribute { name: "angle"; value: -45 } + + PathCubic { + x: 400; y: 220 + control1X: 140; control1Y: 40 + control2X: 210; control2Y: 220 + } + + PathAttribute { name: "scale"; value: 1.2 } + PathAttribute { name: "angle"; value: 0 } + + PathCubic { + x: 850; y: 40 + control2X: 660; control2Y: 40 + control1X: 590; control1Y: 220 + } + + PathAttribute { name: "scale"; value: 0.5 } + PathAttribute { name: "angle"; value: 45 } + } + + model: visualModel.parts.path + } + + PathView { + y: 400; width: 800; height: 330; pathItemCount: 8 + + path: Path { + startX: 0; startY: 40; + PathLine { x: 800; y: 40 } + } + + model: visualModel.parts.linear + } +} diff --git a/tests/auto/declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp b/tests/auto/declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp index c32e9ccfc2..62d0b891c7 100644 --- a/tests/auto/declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp +++ b/tests/auto/declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp @@ -78,6 +78,7 @@ private slots: void componentChanges(); void modelChanges(); void pathUpdateOnStartChanged(); + void package(); private: @@ -695,6 +696,22 @@ void tst_QDeclarativePathView::pathUpdateOnStartChanged() delete canvas; } +void tst_QDeclarativePathView::package() +{ + QDeclarativeView *canvas = createView(); + QVERIFY(canvas); + canvas->setSource(QUrl::fromLocalFile(SRCDIR "/data/pathview_package.qml")); + + QDeclarativePathView *pathView = canvas->rootObject()->findChild("photoPathView"); + QVERIFY(pathView); + + QDeclarativeItem *item = findItem(pathView, "pathItem"); + QVERIFY(item); + QVERIFY(item->scale() != 1.0); + + delete canvas; +} + QDeclarativeView *tst_QDeclarativePathView::createView() { QDeclarativeView *canvas = new QDeclarativeView(0); -- cgit v1.2.1 From 5e843ec092e2d236bd51f015b136db3fca5c10ba Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Wed, 12 May 2010 11:46:15 +1000 Subject: Bail out early if the same target value is reassigned to a Behavior. Task-number: QTBUG-10586 Reviewed-by: leo --- .../animation/qtbug10586/data/qtbug10586.0.png | Bin 0 -> 1149 bytes .../animation/qtbug10586/data/qtbug10586.1.png | Bin 0 -> 1173 bytes .../animation/qtbug10586/data/qtbug10586.2.png | Bin 0 -> 1173 bytes .../animation/qtbug10586/data/qtbug10586.3.png | Bin 0 -> 1149 bytes .../animation/qtbug10586/data/qtbug10586.qml | 1151 ++++++++++++++++++++ .../qmlvisual/animation/qtbug10586/qtbug10586.qml | 27 + tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp | 5 +- 7 files changed, 1181 insertions(+), 2 deletions(-) create mode 100644 tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.0.png create mode 100644 tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.1.png create mode 100644 tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.2.png create mode 100644 tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.3.png create mode 100644 tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.qml create mode 100644 tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.0.png b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.0.png new file mode 100644 index 0000000000..d8be67b465 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.0.png differ diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.1.png b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.1.png new file mode 100644 index 0000000000..249e0dda19 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.1.png differ diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.2.png b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.2.png new file mode 100644 index 0000000000..044f823d88 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.2.png differ diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.3.png b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.3.png new file mode 100644 index 0000000000..d8be67b465 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.3.png differ diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.qml b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.qml new file mode 100644 index 0000000000..dc8e2e211d --- /dev/null +++ b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.qml @@ -0,0 +1,1151 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 32 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 48 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 64 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 80 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 96 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 112 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 128 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 144 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 160 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 176 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 192 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 208 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 224 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 240 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 256 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 272 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 288 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 304 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 320 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 336 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 352 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 368 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 384 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 400 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 416 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 432 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 448 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 464 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 480 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 496 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 512 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 528 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 544 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 560 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 576 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 592 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 608 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 624 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 640 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 656 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 672 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 688 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 704 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 720 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 736 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 752 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 768 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 784 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 800 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 816 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 832 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 848 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 864 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 880 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 896 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 912 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 928 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 944 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 960 + image: "qtbug10586.0.png" + } + Frame { + msec: 976 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 992 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1008 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1024 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1040 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1056 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1072 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1088 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1104 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1120 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1136 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1152 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1168 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1184 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1200 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1216 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1232 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1248 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1264 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1280 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1296 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1312 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 174; y: 204 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 1328 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1344 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1360 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1376 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1392 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 170; y: 204 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 1408 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 156; y: 204 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 1424 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 1440 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 130; y: 204 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 130; y: 204 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 1456 + hash: "8b7dd0f0a3881f10d76b47cbec4754c3" + } + Frame { + msec: 1472 + hash: "b6fc4990acb245e015c35261a3c6fd75" + } + Frame { + msec: 1488 + hash: "849fa4174134804dadc000323141b341" + } + Frame { + msec: 1504 + hash: "35f2d6405ed7d992bb62eb6e24478492" + } + Frame { + msec: 1520 + hash: "673ebb4499522c3f27b775dff1dbbe44" + } + Frame { + msec: 1536 + hash: "96945f5489ffd0dc8ab995c96eb5da43" + } + Frame { + msec: 1552 + hash: "2e4543754429ac3db831a2432098c063" + } + Frame { + msec: 1568 + hash: "02253fe8a9fd5009a07265c2c6ffc8e4" + } + Frame { + msec: 1584 + hash: "200a89949df1e9ef58d005a139857d2c" + } + Frame { + msec: 1600 + hash: "ceb28be34c7ea8eff5fa00fdea087439" + } + Frame { + msec: 1616 + hash: "a9ece475c51f126094c5eff4e20f4a19" + } + Frame { + msec: 1632 + hash: "aa0776f84aef87d6971affdfa2d8dd82" + } + Frame { + msec: 1648 + hash: "4c74661e1c73fefc9c5154b257239352" + } + Frame { + msec: 1664 + hash: "c10d23df3a75966aad5016bd8ba8e9d8" + } + Frame { + msec: 1680 + hash: "41692977d654a55d3b1d037aea9f2c03" + } + Frame { + msec: 1696 + hash: "2f1835a1de94f962eb5dc781c85b4c32" + } + Frame { + msec: 1712 + hash: "7cb78e2e5f6d35d456c95f2bd8652eb5" + } + Frame { + msec: 1728 + hash: "4388aee9b1c8b4fde43634ad08f03557" + } + Frame { + msec: 1744 + hash: "1cdc71100fd11cb6e60c9ab7e65e95bf" + } + Frame { + msec: 1760 + hash: "feddbf269adfc8bb1b1a3656b5b5736d" + } + Frame { + msec: 1776 + hash: "76b39ce0ee9b9b4af8aa0141577b8460" + } + Frame { + msec: 1792 + hash: "bac963d3df2841ab7a3770a371f3a94d" + } + Frame { + msec: 1808 + hash: "403007bb6c0782fece1cedbd40994550" + } + Frame { + msec: 1824 + hash: "72076c743fdd33fab2ac789c7c22973a" + } + Frame { + msec: 1840 + hash: "662be553c32b0145b3f4fee9bb0d659d" + } + Frame { + msec: 1856 + hash: "e6b9049949a0ee4ff8a0fcaf5464f479" + } + Frame { + msec: 1872 + hash: "eb1939458851780b7bb51ee50f0a3bd7" + } + Frame { + msec: 1888 + hash: "41c8d2686ddb882981a7d3a5c8c69005" + } + Frame { + msec: 1904 + hash: "7d3b1fc34082a160cbea4409af85fc9c" + } + Frame { + msec: 1920 + image: "qtbug10586.1.png" + } + Frame { + msec: 1936 + hash: "17be4a9c3d4d19e93bf1fc3a13a374a2" + } + Frame { + msec: 1952 + hash: "d449593024a59487eb92195ee6b77a64" + } + Frame { + msec: 1968 + hash: "c6ccbc2acec8e32f043f2cfb7b7848a9" + } + Frame { + msec: 1984 + hash: "cef9f8e8cdd5e2d33b86a9a6fb64ecb4" + } + Frame { + msec: 2000 + hash: "2a8956de5ce417431bdb156144985370" + } + Frame { + msec: 2016 + hash: "73721425a9c658bd9d40eac3fcbe8e25" + } + Frame { + msec: 2032 + hash: "9a9cf8eee0bf2f09944a4fb3b1c139d5" + } + Frame { + msec: 2048 + hash: "3673cdee04343ce679ec2cebadc9f512" + } + Frame { + msec: 2064 + hash: "eedd62019867e3189f9cf6e2b4149c6d" + } + Frame { + msec: 2080 + hash: "7a66bc37f5cf917e8b121003af0530b0" + } + Frame { + msec: 2096 + hash: "401667ed0f38858553de27164e9cadb5" + } + Frame { + msec: 2112 + hash: "b391699437c4092de3ad1684a35bfd30" + } + Frame { + msec: 2128 + hash: "109c91215f075292910095a25eaded49" + } + Frame { + msec: 2144 + hash: "c44d3f6ce1fa1ab324dd9ef394f37f87" + } + Frame { + msec: 2160 + hash: "299d43cb3dcf7b95af8803df3eb17a46" + } + Frame { + msec: 2176 + hash: "7ddd97266383d954a008fbe7b95a3169" + } + Frame { + msec: 2192 + hash: "941f2837ff5145a26df9a0d9f6d20bd9" + } + Frame { + msec: 2208 + hash: "d99d76cba43f3ae953605d7732d6ce21" + } + Frame { + msec: 2224 + hash: "929f49416f7ca80d7f5f2be3b13b849e" + } + Frame { + msec: 2240 + hash: "929f49416f7ca80d7f5f2be3b13b849e" + } + Frame { + msec: 2256 + hash: "fff9bbf16d1c3f7510ddfc44af616a5e" + } + Frame { + msec: 2272 + hash: "70b6cdb95ad6723d18c623e1dc79a8db" + } + Frame { + msec: 2288 + hash: "70b6cdb95ad6723d18c623e1dc79a8db" + } + Frame { + msec: 2304 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2320 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2336 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2352 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2368 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2384 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2400 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2416 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2432 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2448 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2464 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2480 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2496 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2512 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2528 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2544 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2560 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2576 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2592 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2608 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2624 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2640 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2656 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2672 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2688 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2704 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2720 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2736 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 29; y: 239 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 2752 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2768 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2784 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2800 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Frame { + msec: 2816 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 35; y: 241 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 2832 + hash: "cdb3c12b1b0b6ab269ba7fcf75320f69" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 63; y: 243 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 2848 + hash: "2732b282b8ac482033694cd04c6f5b7e" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 106; y: 244 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 2864 + hash: "7d253797885f8b304d8fb3ba727a3c5d" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 158; y: 243 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 158; y: 243 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 2880 + image: "qtbug10586.2.png" + } + Frame { + msec: 2896 + hash: "d85a416e4ddf59dfd0723b0be0e2b418" + } + Frame { + msec: 2912 + hash: "f1934f6ca6a3c5ac5df3451596b8d8ba" + } + Frame { + msec: 2928 + hash: "28fc74a76f9eaeeccbd3063dc55a1000" + } + Frame { + msec: 2944 + hash: "eb8ad8dae734b624664fcf584cda6ba0" + } + Frame { + msec: 2960 + hash: "a6d0f4aba3e5ae1e003520f45b75d6dd" + } + Frame { + msec: 2976 + hash: "4e5a4d04dfa5f06292774e6bf4f86508" + } + Frame { + msec: 2992 + hash: "fc9e16fd8c7379d774a09fe50d4259dc" + } + Frame { + msec: 3008 + hash: "721ea322d9a5e9d48117336476f568cb" + } + Frame { + msec: 3024 + hash: "5930448341bce1c50de7acaba1f64ca1" + } + Frame { + msec: 3040 + hash: "7194bacd56906f83948844224ce6a3e7" + } + Frame { + msec: 3056 + hash: "fcf11cf70b8ac210d4bb2bc716942053" + } + Frame { + msec: 3072 + hash: "767d707db4dbb02b6f97153b3822a1d1" + } + Frame { + msec: 3088 + hash: "f8eb75b97f5233aa82b887aab34a38e3" + } + Frame { + msec: 3104 + hash: "1d3beb06b39fa1d5cabd31ec4297f59f" + } + Frame { + msec: 3120 + hash: "cadc775e0764afa7b50c5bab782035dd" + } + Frame { + msec: 3136 + hash: "385f5a6e80da0d3ddf24539a64f26eb9" + } + Frame { + msec: 3152 + hash: "34204871a684ea251c9d07fb125436da" + } + Frame { + msec: 3168 + hash: "bc3e496535e66ff0d1e800092b7c78ca" + } + Frame { + msec: 3184 + hash: "d6c4ff5bf223361be42c78d6d81248c3" + } + Frame { + msec: 3200 + hash: "cb09d41612df66a8d099153026adcbf3" + } + Frame { + msec: 3216 + hash: "f82180b8c0389ddc3623107a049c3366" + } + Frame { + msec: 3232 + hash: "1b0f65e4599c65b8a603abd8da718d48" + } + Frame { + msec: 3248 + hash: "897391a8206178356858139b3d1a4ce8" + } + Frame { + msec: 3264 + hash: "b66d268dc7a42a7b1172b1ff566f4eb8" + } + Frame { + msec: 3280 + hash: "0fe5d38a253dbd1ebcc67cca7ea86dc7" + } + Frame { + msec: 3296 + hash: "b788f8a7e1e42f768fd1fe1198ca0344" + } + Frame { + msec: 3312 + hash: "4f7f8b7f5bb78bb9327b6fa8142ce3a2" + } + Frame { + msec: 3328 + hash: "30f041278c08174671568a0dfb7cbdf7" + } + Frame { + msec: 3344 + hash: "6ecd90fc89ab9b6c4813fa6a6e9dffdb" + } + Frame { + msec: 3360 + hash: "6ecd90fc89ab9b6c4813fa6a6e9dffdb" + } + Frame { + msec: 3376 + hash: "6d79d9d0ba8da0b5654b39768b25591f" + } + Frame { + msec: 3392 + hash: "6d79d9d0ba8da0b5654b39768b25591f" + } + Frame { + msec: 3408 + hash: "6d79d9d0ba8da0b5654b39768b25591f" + } + Frame { + msec: 3424 + hash: "6d79d9d0ba8da0b5654b39768b25591f" + } + Frame { + msec: 3440 + hash: "6d79d9d0ba8da0b5654b39768b25591f" + } + Frame { + msec: 3456 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3472 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3488 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3504 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3520 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3536 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3552 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3568 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3584 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3600 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3616 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3632 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3648 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3664 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3680 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3696 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3712 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3728 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3744 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3760 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3776 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3792 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3808 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3824 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3840 + image: "qtbug10586.3.png" + } + Frame { + msec: 3856 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3872 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3888 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3904 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3920 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3936 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3952 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3968 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 3984 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 4000 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 4016 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 4032 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 4048 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 4064 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Key { + type: 6 + key: 16777249 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 4080 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 4096 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 4112 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 4128 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 4144 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 4160 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 4176 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } + Frame { + msec: 4192 + hash: "cba9afe3f351e6cd6dc72d7f263401b0" + } +} diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.qml b/tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.qml new file mode 100644 index 0000000000..f1a3ef7de0 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.qml @@ -0,0 +1,27 @@ +import Qt 4.7 + +Rectangle { + width: 200 + height: 400 + Flickable { + id: flick + anchors.fill: parent + contentWidth: 1000; contentHeight: parent.height + Rectangle { + border.color: "black" + border.width: 10 + width: 1000; height: 1000 + rotation: 90 + gradient: Gradient { + GradientStop { position: 0; color: "black" } + GradientStop { position: 1; color: "white" } + } + } + } + Rectangle { + color: "red" + width: 100; height: 100 + y: flick.contentX < 10 ? 300 : 0 + Behavior on y { NumberAnimation {} } + } +} diff --git a/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp b/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp index 5f25882732..0f33a0742f 100644 --- a/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp +++ b/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp @@ -101,9 +101,8 @@ void tst_qmlvisual::visual_data() files << findQmlFiles(QDir(QT_TEST_SOURCE_DIR)); else { //these are newly added tests we want to try out in CI (then move to the stable list) - files << QT_TEST_SOURCE_DIR "/qdeclarativeborderimage/borders.qml"; + files << QT_TEST_SOURCE_DIR "/animation/qtbug10586/qtbug10586.qml"; files << QT_TEST_SOURCE_DIR "/qdeclarativeborderimage/animated.qml"; - files << QT_TEST_SOURCE_DIR "/qdeclarativeborderimage/animated-smooth.qml"; files << QT_TEST_SOURCE_DIR "/qdeclarativeflipable/test-flipable.qml"; files << QT_TEST_SOURCE_DIR "/qdeclarativepositioners/usingRepeater.qml"; @@ -123,6 +122,8 @@ void tst_qmlvisual::visual_data() //these reliably fail in CI, for unknown reasons //files << QT_TEST_SOURCE_DIR "/animation/easing/easing.qml"; //files << QT_TEST_SOURCE_DIR "/animation/pauseAnimation/pauseAnimation-visual.qml"; + //files << QT_TEST_SOURCE_DIR "/qdeclarativeborderimage/borders.qml"; + //files << QT_TEST_SOURCE_DIR "/qdeclarativeborderimage/animated-smooth.qml"; //these reliably fail on Linux because of color interpolation (different float rounding) #if !defined(Q_WS_X11) && !defined(Q_WS_QWS) -- cgit v1.2.1 From 84ae0d5c700b9b7396585301e7ef129ee0a2696d Mon Sep 17 00:00:00 2001 From: Leonardo Sobral Cunha Date: Wed, 12 May 2010 13:17:13 +1000 Subject: Sorted the tests list in declarative.pro Also removed the #Cover tag, which is not used anymore. --- tests/auto/declarative/declarative.pro | 130 ++++++++++++++++----------------- 1 file changed, 65 insertions(+), 65 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/declarative.pro b/tests/auto/declarative/declarative.pro index a9b069c73d..2520bcd574 100644 --- a/tests/auto/declarative/declarative.pro +++ b/tests/auto/declarative/declarative.pro @@ -1,74 +1,74 @@ TEMPLATE = subdirs SUBDIRS += \ examples \ - parserstress \ # Cover - qmetaobjectbuilder \ # Cover - qdeclarativeanimations \ # Cover - qdeclarativebehaviors \ # Cover - qdeclarativebinding \ # Cover - qdeclarativecomponent \ # Cover - qdeclarativeconnection \ # Cover - qdeclarativecontext \ # Cover - qdeclarativedebug \ # Cover - qdeclarativedebugclient \ # Cover - qdeclarativedebugservice \ # Cover - qdeclarativedom \ # Cover - qdeclarativeecmascript \ # Cover - qdeclarativeengine \ # Cover - qdeclarativeerror \ # Cover - qdeclarativefontloader \ # Cover - qdeclarativeanchors \ # Cover - qdeclarativeanimatedimage \ # Cover - qdeclarativeimage \ # Cover - qdeclarativeborderimage \ # Cover - qdeclarativeflickable \ # Cover - qdeclarativeflipable \ # Cover - qdeclarativefocusscope \ # Cover - qdeclarativegridview \ # Cover - qdeclarativeitem \ # Cover - qdeclarativelistview \ # Cover - qdeclarativeloader \ # Cover - qdeclarativemousearea \ # Cover - qdeclarativeparticles \ # Cover - qdeclarativepathview \ # Cover - qdeclarativepositioners \ # Cover - qdeclarativetext \ # Cover - qdeclarativetextedit \ # Cover - qdeclarativetextinput \ # Cover - qdeclarativeinfo \ # Cover - qdeclarativeinstruction \ # Cover - qdeclarativelanguage \ # Cover - qdeclarativelistreference \ # Cover - qdeclarativelistmodel \ # Cover - qdeclarativeproperty \ # Cover - qdeclarativemetatype \ # Cover - qdeclarativemoduleplugin \ # Cover - qdeclarativepixmapcache \ # Cover - qdeclarativepropertymap \ # Cover - qdeclarativeqt \ # Cover - qdeclarativesmoothedanimation \ # Cover - qdeclarativesmoothedfollow\ # Cover - qdeclarativespringfollow \ # Cover - qdeclarativestates \ # Cover - qdeclarativesystempalette \ # Cover - qdeclarativetimer \ # Cover - qdeclarativexmllistmodel \ # Cover - qpacketprotocol \ # Cover - qdeclarativerepeater \ # Cover - qdeclarativeworkerscript \ # Cover - qdeclarativevaluetypes \ # Cover - qdeclarativeview \ # Cover - qdeclarativexmlhttprequest \ # Cover - qdeclarativeimageprovider \ # Cover - qdeclarativestyledtext \ # Cover - qdeclarativesqldatabase \ # Cover - qdeclarativevisualdatamodel \ # Cover - qdeclarativeviewer \ # Cover - qmlvisual # Cover + parserstress \ + qdeclarativeanchors \ + qdeclarativeanimatedimage \ + qdeclarativeanimations \ + qdeclarativebehaviors \ + qdeclarativebinding \ + qdeclarativeborderimage \ + qdeclarativecomponent \ + qdeclarativeconnection \ + qdeclarativecontext \ + qdeclarativedebug \ + qdeclarativedebugclient \ + qdeclarativedebugservice \ + qdeclarativedom \ + qdeclarativeecmascript \ + qdeclarativeengine \ + qdeclarativeerror \ + qdeclarativefontloader \ + qdeclarativeflickable \ + qdeclarativeflipable \ + qdeclarativefocusscope \ + qdeclarativegridview \ + qdeclarativeimage \ + qdeclarativeimageprovider \ + qdeclarativeinfo \ + qdeclarativeinstruction \ + qdeclarativeitem \ + qdeclarativelanguage \ + qdeclarativelistmodel \ + qdeclarativelistreference \ + qdeclarativelistview \ + qdeclarativeloader \ + qdeclarativemetatype \ + qdeclarativemoduleplugin \ + qdeclarativemousearea \ + qdeclarativeparticles \ + qdeclarativepathview \ + qdeclarativepixmapcache \ + qdeclarativepositioners \ + qdeclarativeproperty \ + qdeclarativepropertymap \ + qdeclarativeqt \ + qdeclarativerepeater \ + qdeclarativesmoothedanimation \ + qdeclarativesmoothedfollow\ + qdeclarativespringfollow \ + qdeclarativesqldatabase \ + qdeclarativestates \ + qdeclarativestyledtext \ + qdeclarativesystempalette \ + qdeclarativetext \ + qdeclarativetextedit \ + qdeclarativetextinput \ + qdeclarativetimer \ + qdeclarativevaluetypes \ + qdeclarativeview \ + qdeclarativeviewer \ + qdeclarativevisualdatamodel \ + qdeclarativeworkerscript \ + qdeclarativexmlhttprequest \ + qdeclarativexmllistmodel \ + qmlvisual \ + qpacketprotocol \ + qmetaobjectbuilder contains(QT_CONFIG, webkit) { SUBDIRS += \ - qdeclarativewebview # Cover + qdeclarativewebview } # Tests which should run in Pulse -- cgit v1.2.1 From 9e84653e20b20ea32a789deaef9d5d4acd5d68ea Mon Sep 17 00:00:00 2001 From: Leonardo Sobral Cunha Date: Wed, 12 May 2010 13:21:16 +1000 Subject: Add missing test, qdeclarativelayoutitem, to declarative.pro --- tests/auto/declarative/declarative.pro | 1 + 1 file changed, 1 insertion(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/declarative.pro b/tests/auto/declarative/declarative.pro index 2520bcd574..3496906f92 100644 --- a/tests/auto/declarative/declarative.pro +++ b/tests/auto/declarative/declarative.pro @@ -29,6 +29,7 @@ SUBDIRS += \ qdeclarativeinstruction \ qdeclarativeitem \ qdeclarativelanguage \ + qdeclarativelayoutitem \ qdeclarativelistmodel \ qdeclarativelistreference \ qdeclarativelistview \ -- cgit v1.2.1 From 798bdb4543f84d427659b950a3a1643ae4987b8b Mon Sep 17 00:00:00 2001 From: Alexis Menard Date: Wed, 12 May 2010 07:12:34 +0200 Subject: Reset the dragDropItem to 0 when the item dies while dragging on top it. If you drag something on top of an item and the former is deleted then we need to reset the dragDropItem pointer to 0. Task-number:KDE BUG 232182 Reviewed-by:leo --- tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp b/tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp index 81097be5c3..5a5a821424 100644 --- a/tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp +++ b/tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp @@ -45,6 +45,7 @@ #include #include #include +#include #include #include #include @@ -447,6 +448,7 @@ private slots: void QT_2649_focusScope(); void sortItemsWhileAdding(); void doNotMarkFullUpdateIfNotInScene(); + void itemDiesDuringDraggingOperation(); private: QList paintedItems; @@ -10484,5 +10486,27 @@ void tst_QGraphicsItem::doNotMarkFullUpdateIfNotInScene() QTRY_COMPARE(item3->painted, 3); } +void tst_QGraphicsItem::itemDiesDuringDraggingOperation() +{ + QGraphicsScene scene; + QGraphicsView view(&scene); + QGraphicsRectItem *item = new QGraphicsRectItem(QRectF(0, 0, 100, 100)); + item->setFlag(QGraphicsItem::ItemIsMovable); + item->setAcceptDrops(true); + scene.addItem(item); + view.show(); + QApplication::setActiveWindow(&view); + QTest::qWaitForWindowShown(&view); + QTRY_COMPARE(QApplication::activeWindow(), (QWidget *)&view); + QGraphicsSceneDragDropEvent dragEnter(QEvent::GraphicsSceneDragEnter); + dragEnter.setScenePos(item->boundingRect().center()); + QApplication::sendEvent(&scene, &dragEnter); + QGraphicsSceneDragDropEvent event(QEvent::GraphicsSceneDragMove); + event.setScenePos(item->boundingRect().center()); + QApplication::sendEvent(&scene, &event); + QVERIFY(QGraphicsScenePrivate::get(&scene)->dragDropItem == item); + delete item; + QVERIFY(QGraphicsScenePrivate::get(&scene)->dragDropItem == 0); +} QTEST_MAIN(tst_QGraphicsItem) #include "tst_qgraphicsitem.moc" -- cgit v1.2.1 From 71187a1f0d26ff61c033a7c2d46892f48816fc45 Mon Sep 17 00:00:00 2001 From: Yann Bodson Date: Tue, 11 May 2010 13:33:48 +1000 Subject: Flickable small API changes. - Split moving into movingHorizontally anf movingVertically - Split flicking into flickingHorizontally and flickingVertically - Rename flickDirection to flickableDirection - onMovementStarted, onMovementEnded, onFlickStarted and onFlickEnded signals removed Task-number: QTBUG-10572 Reviewed-by: Martin Jones --- .../tst_qdeclarativeflickable.cpp | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeflickable/tst_qdeclarativeflickable.cpp b/tests/auto/declarative/qdeclarativeflickable/tst_qdeclarativeflickable.cpp index 9ce9c49cc6..2c6890ec21 100644 --- a/tests/auto/declarative/qdeclarativeflickable/tst_qdeclarativeflickable.cpp +++ b/tests/auto/declarative/qdeclarativeflickable/tst_qdeclarativeflickable.cpp @@ -61,6 +61,7 @@ private slots: void maximumFlickVelocity(); void flickDeceleration(); void pressDelay(); + void flickableDirection(); private: QDeclarativeEngine engine; @@ -224,6 +225,33 @@ void tst_qdeclarativeflickable::pressDelay() QCOMPARE(spy.count(),1); } +void tst_qdeclarativeflickable::flickableDirection() +{ + QDeclarativeComponent component(&engine); + component.setData("import Qt 4.7; Flickable { flickableDirection: Flickable.VerticalFlick; }", QUrl::fromLocalFile("")); + QDeclarativeFlickable *flickable = qobject_cast(component.create()); + QSignalSpy spy(flickable, SIGNAL(flickableDirectionChanged())); + + QVERIFY(flickable); + QCOMPARE(flickable->flickableDirection(), QDeclarativeFlickable::VerticalFlick); + + flickable->setFlickableDirection(QDeclarativeFlickable::HorizontalAndVerticalFlick); + QCOMPARE(flickable->flickableDirection(), QDeclarativeFlickable::HorizontalAndVerticalFlick); + QCOMPARE(spy.count(),1); + + flickable->setFlickableDirection(QDeclarativeFlickable::AutoFlickDirection); + QCOMPARE(flickable->flickableDirection(), QDeclarativeFlickable::AutoFlickDirection); + QCOMPARE(spy.count(),2); + + flickable->setFlickableDirection(QDeclarativeFlickable::HorizontalFlick); + QCOMPARE(flickable->flickableDirection(), QDeclarativeFlickable::HorizontalFlick); + QCOMPARE(spy.count(),3); + + flickable->setFlickableDirection(QDeclarativeFlickable::HorizontalFlick); + QCOMPARE(flickable->flickableDirection(), QDeclarativeFlickable::HorizontalFlick); + QCOMPARE(spy.count(),3); +} + QTEST_MAIN(tst_qdeclarativeflickable) #include "tst_qdeclarativeflickable.moc" -- cgit v1.2.1 From 01fbf55727678509f87523ef2ddda1d21d4ac2ab Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Wed, 12 May 2010 17:02:14 +1000 Subject: Correctly assign bool to variant properties QTBUG-10623 --- .../declarative/qdeclarativelanguage/data/assignLiteralToVariant.qml | 2 ++ .../declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp | 4 ++++ 2 files changed, 6 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignLiteralToVariant.qml b/tests/auto/declarative/qdeclarativelanguage/data/assignLiteralToVariant.qml index 5af3d6e738..bac704e698 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/assignLiteralToVariant.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignLiteralToVariant.qml @@ -10,5 +10,7 @@ QtObject { property variant test7: "10x10" property variant test8: "100,100,100" property variant test9: String("#FF008800") + property variant test10: true + property variant test11: false } diff --git a/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp b/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp index ff03005f60..6b070f5231 100644 --- a/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp +++ b/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp @@ -536,6 +536,8 @@ void tst_qdeclarativelanguage::assignLiteralToVariant() QCOMPARE(object->property("test7").userType(), (int)QVariant::SizeF); QCOMPARE(object->property("test8").userType(), (int)QVariant::Vector3D); QCOMPARE(object->property("test9").userType(), (int)QVariant::String); + QCOMPARE(object->property("test10").userType(), (int)QVariant::Bool); + QCOMPARE(object->property("test11").userType(), (int)QVariant::Bool); QVERIFY(object->property("test1") == QVariant(1)); QVERIFY(object->property("test2") == QVariant((double)1.7)); @@ -546,6 +548,8 @@ void tst_qdeclarativelanguage::assignLiteralToVariant() QVERIFY(object->property("test7") == QVariant(QSizeF(10, 10))); QVERIFY(object->property("test8") == QVariant(QVector3D(100, 100, 100))); QVERIFY(object->property("test9") == QVariant(QString(QLatin1String("#FF008800")))); + QVERIFY(object->property("test10") == QVariant(bool(true))); + QVERIFY(object->property("test11") == QVariant(bool(false))); delete object; } -- cgit v1.2.1 From ad7988629c47a5fc1a671d36d9cdaed630f5e7f2 Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Wed, 12 May 2010 09:24:39 +0200 Subject: Stabilize tst_QWidgetAction::visibilityUpdate --- tests/auto/qwidgetaction/tst_qwidgetaction.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qwidgetaction/tst_qwidgetaction.cpp b/tests/auto/qwidgetaction/tst_qwidgetaction.cpp index 5dfcd43b07..53dc4b53b5 100644 --- a/tests/auto/qwidgetaction/tst_qwidgetaction.cpp +++ b/tests/auto/qwidgetaction/tst_qwidgetaction.cpp @@ -51,6 +51,8 @@ #include #include +#include "../../shared/util.h" + //TESTED_CLASS= //TESTED_FILES= @@ -190,8 +192,8 @@ void tst_QWidgetAction::visibilityUpdate() QVERIFY(action->isVisible()); action->setVisible(false); - QTest::qWait(100); //the call to hide is delayed by the toolbar layout - QVERIFY(!combo->isVisible()); + qApp->processEvents(); //the call to hide is delayed by the toolbar layout + QTRY_VERIFY(!combo->isVisible()); delete action; // action also deletes combo -- cgit v1.2.1 From 7894bbb901a2ba74284bd6c0544b06c6a41f6b6f Mon Sep 17 00:00:00 2001 From: Alan Alpert Date: Wed, 12 May 2010 14:44:06 +0200 Subject: Possibly fix autotest It's unclear why the autotest failed on a platform I can't test on right now, but this might clear it up. --- .../declarative/qdeclarativelayoutitem/tst_qdeclarativelayoutitem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativelayoutitem/tst_qdeclarativelayoutitem.cpp b/tests/auto/declarative/qdeclarativelayoutitem/tst_qdeclarativelayoutitem.cpp index 2207635331..c0c5abcb39 100644 --- a/tests/auto/declarative/qdeclarativelayoutitem/tst_qdeclarativelayoutitem.cpp +++ b/tests/auto/declarative/qdeclarativelayoutitem/tst_qdeclarativelayoutitem.cpp @@ -75,7 +75,7 @@ void tst_qdeclarativelayoutitem::test_resizing() view.setScene(&scene); //Add the QML snippet into the layout QDeclarativeEngine engine; - QDeclarativeComponent c(&engine, QUrl(SRCDIR "/data/layoutItem.qml")); + QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/layoutItem.qml")); QDeclarativeLayoutItem* obj = static_cast(c.create()); layout->addItem(obj); layout->setContentsMargins(0,0,0,0); -- cgit v1.2.1 From f17c706db16aae93f024e88208e139063f5b2c7c Mon Sep 17 00:00:00 2001 From: Joona Petrell Date: Wed, 12 May 2010 16:28:57 +1000 Subject: Fix for graphics widget in the background stealing declarative item's focus Task-number: QTBUG-10584 Reviewed-by: Warwick Allison --- .../qdeclarativeitem/data/mouseFocus.qml | 20 ++++++++++++ .../qdeclarativeitem/tst_qdeclarativeitem.cpp | 37 ++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativeitem/data/mouseFocus.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeitem/data/mouseFocus.qml b/tests/auto/declarative/qdeclarativeitem/data/mouseFocus.qml new file mode 100644 index 0000000000..a562b8b0ea --- /dev/null +++ b/tests/auto/declarative/qdeclarativeitem/data/mouseFocus.qml @@ -0,0 +1,20 @@ +import Qt 4.7 + +QGraphicsWidget { + size: "200x100" + focusPolicy: QGraphicsWidget.ClickFocus + Item { + objectName: "declarativeItem" + id: item + width: 200 + height: 100 + MouseArea { + anchors.fill: parent + onPressed: { + if (!item.focus) { + item.focus = true; + } + } + } + } +} diff --git a/tests/auto/declarative/qdeclarativeitem/tst_qdeclarativeitem.cpp b/tests/auto/declarative/qdeclarativeitem/tst_qdeclarativeitem.cpp index e0ca7460c5..f4edeb2463 100644 --- a/tests/auto/declarative/qdeclarativeitem/tst_qdeclarativeitem.cpp +++ b/tests/auto/declarative/qdeclarativeitem/tst_qdeclarativeitem.cpp @@ -45,6 +45,7 @@ #include #include #include +#include "../../../shared/util.h" class tst_QDeclarativeItem : public QObject @@ -67,6 +68,7 @@ private slots: void childrenProperty(); void resourcesProperty(); + void mouseFocus(); private: template @@ -466,6 +468,41 @@ void tst_QDeclarativeItem::resourcesProperty() delete o; } +void tst_QDeclarativeItem::mouseFocus() +{ + QDeclarativeView *canvas = new QDeclarativeView(0); + QVERIFY(canvas); + canvas->setSource(QUrl::fromLocalFile(SRCDIR "/data/mouseFocus.qml")); + canvas->show(); + QVERIFY(canvas->rootObject()); + QApplication::setActiveWindow(canvas); + QTest::qWaitForWindowShown(canvas); + QTRY_COMPARE(QApplication::activeWindow(), static_cast(canvas)); + + QDeclarativeItem *item = findItem(canvas->rootObject(), "declarativeItem"); + QVERIFY(item); + QSignalSpy focusSpy(item, SIGNAL(focusChanged(bool))); + + QTest::mouseClick(canvas->viewport(), Qt::LeftButton, 0, canvas->mapFromScene(item->scenePos())); + QApplication::processEvents(); + QCOMPARE(focusSpy.count(), 1); + QVERIFY(item->hasFocus()); + + // make sure focusable graphics widget underneath does not steal focus + QTest::mouseClick(canvas->viewport(), Qt::LeftButton, 0, canvas->mapFromScene(item->scenePos())); + QApplication::processEvents(); + QCOMPARE(focusSpy.count(), 1); + QVERIFY(item->hasFocus()); + + item->setFocus(false); + QVERIFY(!item->hasFocus()); + QCOMPARE(focusSpy.count(), 2); + item->setFocus(true); + QCOMPARE(focusSpy.count(), 3); + + delete canvas; +} + void tst_QDeclarativeItem::propertyChanges() { QDeclarativeView *canvas = new QDeclarativeView(0); -- cgit v1.2.1 From d45c45432ccd0a74c67e70ce5fc3a09f35923c26 Mon Sep 17 00:00:00 2001 From: Joona Petrell Date: Wed, 12 May 2010 18:20:18 +1000 Subject: Fix TextEdit and TextInput input panel support for mode RSIP_OnMouseClickAndAlreadyFocused Task-number: Reviewed-by: Warwick Allison --- .../qdeclarativelistview/tst_qdeclarativelistview.cpp | 2 -- .../qdeclarativetextedit/tst_qdeclarativetextedit.cpp | 11 ++++++++--- .../qdeclarativetextinput/tst_qdeclarativetextinput.cpp | 11 ++++++++--- 3 files changed, 16 insertions(+), 8 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp b/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp index 22eb734c25..ec2afaecc9 100644 --- a/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp +++ b/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp @@ -1432,8 +1432,6 @@ void tst_QDeclarativeListView::QTBUG_9791() { QDeclarativeView *canvas = createView(); - QDeclarativeContext *ctxt = canvas->rootContext(); - canvas->setSource(QUrl::fromLocalFile(SRCDIR "/data/strictlyenforcerange.qml")); qApp->processEvents(); diff --git a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp index b92024fb96..c65c8832b8 100644 --- a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp +++ b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp @@ -793,8 +793,6 @@ void tst_qdeclarativetextedit::sendRequestSoftwareInputPanelEvent() view.viewport()->setInputContext(&ic); QStyle::RequestSoftwareInputPanel behavior = QStyle::RequestSoftwareInputPanel( view.style()->styleHint(QStyle::SH_RequestSoftwareInputPanel)); - if ((behavior != QStyle::RSIP_OnMouseClick)) - QSKIP("This test need to have a style with RSIP_OnMouseClick", SkipSingle); QDeclarativeTextEdit edit; edit.setText("Hello world"); edit.setPos(0, 0); @@ -806,7 +804,14 @@ void tst_qdeclarativetextedit::sendRequestSoftwareInputPanelEvent() QTRY_COMPARE(QApplication::activeWindow(), static_cast(&view)); QTest::mouseClick(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(edit.scenePos())); QApplication::processEvents(); - QCOMPARE(ic.softwareInputPanelEventReceived, true); + 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); + } } void tst_qdeclarativetextedit::geometrySignals() diff --git a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp index c00390dbe7..ac80edb464 100644 --- a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp +++ b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp @@ -743,8 +743,6 @@ void tst_qdeclarativetextinput::sendRequestSoftwareInputPanelEvent() view.viewport()->setInputContext(&ic); QStyle::RequestSoftwareInputPanel behavior = QStyle::RequestSoftwareInputPanel( view.style()->styleHint(QStyle::SH_RequestSoftwareInputPanel)); - if ((behavior != QStyle::RSIP_OnMouseClick)) - QSKIP("This test need to have a style with RSIP_OnMouseClick", SkipSingle); QDeclarativeTextInput input; input.setText("Hello world"); input.setPos(0, 0); @@ -756,7 +754,14 @@ void tst_qdeclarativetextinput::sendRequestSoftwareInputPanelEvent() QTRY_COMPARE(QApplication::activeWindow(), static_cast(&view)); QTest::mouseClick(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(input.scenePos())); QApplication::processEvents(); - QCOMPARE(ic.softwareInputPanelEventReceived, true); + 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); + } } class MyTextInput : public QDeclarativeTextInput -- cgit v1.2.1 From 2555221bbcb33e0d12e786eb0b3d08bd9260eeb7 Mon Sep 17 00:00:00 2001 From: Leonardo Sobral Cunha Date: Wed, 12 May 2010 11:51:56 +1000 Subject: Avoid running animation when loopCount == 0 Task-number: QTBUG-10654 Reviewed-by: Thierry Bastian --- .../qpropertyanimation/tst_qpropertyanimation.cpp | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qpropertyanimation/tst_qpropertyanimation.cpp b/tests/auto/qpropertyanimation/tst_qpropertyanimation.cpp index 849b8b2b2e..ea527ded08 100644 --- a/tests/auto/qpropertyanimation/tst_qpropertyanimation.cpp +++ b/tests/auto/qpropertyanimation/tst_qpropertyanimation.cpp @@ -133,6 +133,7 @@ private slots: void twoAnimations(); void deletedInUpdateCurrentTime(); void totalDuration(); + void zeroLoopCount(); }; tst_QPropertyAnimation::tst_QPropertyAnimation() @@ -1214,6 +1215,29 @@ void tst_QPropertyAnimation::totalDuration() QCOMPARE(anim.totalDuration(), 0); } +void tst_QPropertyAnimation::zeroLoopCount() +{ + DummyPropertyAnimation* anim; + anim = new DummyPropertyAnimation; + anim->setStartValue(0); + anim->setDuration(20); + anim->setLoopCount(0); + + QSignalSpy runningSpy(anim, SIGNAL(stateChanged(QAbstractAnimation::State, QAbstractAnimation::State))); + QSignalSpy finishedSpy(anim, SIGNAL(finished())); + + QCOMPARE(anim->state(), QAnimationGroup::Stopped); + QCOMPARE(anim->currentValue().toInt(), 0); + QCOMPARE(runningSpy.count(), 0); + QCOMPARE(finishedSpy.count(), 0); + + anim->start(); + + QCOMPARE(anim->state(), QAnimationGroup::Stopped); + QCOMPARE(anim->currentValue().toInt(), 0); + QCOMPARE(runningSpy.count(), 0); + QCOMPARE(finishedSpy.count(), 0); +} QTEST_MAIN(tst_QPropertyAnimation) #include "tst_qpropertyanimation.moc" -- cgit v1.2.1 From ae8e4afcadc9ff084e1d1859c29fbc8b629e3392 Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Thu, 13 May 2010 15:07:21 +1000 Subject: Add an example spinner. Also add missing increment/decrementCurrentIndex() slots to PathView, and tweak the number of points cached along a Path. --- .../tst_qdeclarativepathview.cpp | 30 +++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp b/tests/auto/declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp index 62d0b891c7..0e16f66843 100644 --- a/tests/auto/declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp +++ b/tests/auto/declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp @@ -438,7 +438,8 @@ void tst_QDeclarativePathView::pathMoved() for(int i=0; i(pathview, "wrapper", i); - QCOMPARE(curItem->pos() + offset, path->pointAt(0.25 + i*0.25)); + QPointF itemPos(path->pointAt(0.25 + i*0.25)); + QCOMPARE(curItem->pos() + offset, QPointF(qRound(itemPos.x()), qRound(itemPos.y()))); } pathview->setOffset(0.0); @@ -479,13 +480,36 @@ void tst_QDeclarativePathView::setCurrentIndex() QCOMPARE(canvas->rootObject()->property("currentB").toInt(), 0); pathview->setCurrentIndex(2); - QTest::qWait(1000); firstItem = findItem(pathview, "wrapper", 2); - QCOMPARE(firstItem->pos() + offset, start); + QTRY_COMPARE(firstItem->pos() + offset, start); QCOMPARE(canvas->rootObject()->property("currentA").toInt(), 2); QCOMPARE(canvas->rootObject()->property("currentB").toInt(), 2); + pathview->decrementCurrentIndex(); + QTRY_COMPARE(pathview->currentIndex(), 1); + firstItem = findItem(pathview, "wrapper", 1); + QVERIFY(firstItem); + QTRY_COMPARE(firstItem->pos() + offset, start); + + pathview->decrementCurrentIndex(); + QTRY_COMPARE(pathview->currentIndex(), 0); + firstItem = findItem(pathview, "wrapper", 0); + QVERIFY(firstItem); + QTRY_COMPARE(firstItem->pos() + offset, start); + + pathview->decrementCurrentIndex(); + QTRY_COMPARE(pathview->currentIndex(), 3); + firstItem = findItem(pathview, "wrapper", 3); + QVERIFY(firstItem); + QTRY_COMPARE(firstItem->pos() + offset, start); + + pathview->incrementCurrentIndex(); + QTRY_COMPARE(pathview->currentIndex(), 0); + firstItem = findItem(pathview, "wrapper", 0); + QVERIFY(firstItem); + QTRY_COMPARE(firstItem->pos() + offset, start); + delete canvas; } -- cgit v1.2.1 From 5220b879a19b4fa1e28829e724c1ad12e85566f4 Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Thu, 13 May 2010 15:21:38 +1000 Subject: ListModel::get() should return undefined if bad index specified --- .../declarative/qdeclarativelistmodel/tst_qdeclarativelistmodel.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativelistmodel/tst_qdeclarativelistmodel.cpp b/tests/auto/declarative/qdeclarativelistmodel/tst_qdeclarativelistmodel.cpp index ec9746145b..aed478188d 100644 --- a/tests/auto/declarative/qdeclarativelistmodel/tst_qdeclarativelistmodel.cpp +++ b/tests/auto/declarative/qdeclarativelistmodel/tst_qdeclarativelistmodel.cpp @@ -282,7 +282,9 @@ void tst_qdeclarativelistmodel::dynamic() int actual = e.evaluate().toInt(); if (e.hasError()) qDebug() << e.error(); // errors not expected - QVERIFY(!e.hasError()); + + if (QTest::currentDataTag() != QLatin1String("clear3") && QTest::currentDataTag() != QLatin1String("remove3")) + QVERIFY(!e.hasError()); QCOMPARE(actual,result); } -- cgit v1.2.1 From 50ac9b21d999f698552125c0ba1ee9874f9e2989 Mon Sep 17 00:00:00 2001 From: Rohan McGovern Date: Thu, 13 May 2010 17:22:37 +1000 Subject: Remove garbage test. --- tests/auto/qdbusserver/.gitignore | 1 - tests/auto/qdbusserver/qdbusserver.pro | 11 ----- tests/auto/qdbusserver/server.cpp | 49 ------------------- tests/auto/qdbusserver/tst_qdbusserver.cpp | 78 ------------------------------ 4 files changed, 139 deletions(-) delete mode 100644 tests/auto/qdbusserver/.gitignore delete mode 100644 tests/auto/qdbusserver/qdbusserver.pro delete mode 100644 tests/auto/qdbusserver/server.cpp delete mode 100644 tests/auto/qdbusserver/tst_qdbusserver.cpp (limited to 'tests/auto') diff --git a/tests/auto/qdbusserver/.gitignore b/tests/auto/qdbusserver/.gitignore deleted file mode 100644 index 33a9be2bf2..0000000000 --- a/tests/auto/qdbusserver/.gitignore +++ /dev/null @@ -1 +0,0 @@ -tst_qdbusserver diff --git a/tests/auto/qdbusserver/qdbusserver.pro b/tests/auto/qdbusserver/qdbusserver.pro deleted file mode 100644 index 05a4eb84af..0000000000 --- a/tests/auto/qdbusserver/qdbusserver.pro +++ /dev/null @@ -1,11 +0,0 @@ -load(qttest_p4) -QT = core - -contains(QT_CONFIG,dbus): { - SOURCES += tst_qdbusserver.cpp - QT += dbus -} else { - SOURCES += ../qdbusmarshall/dummy.cpp -} - - diff --git a/tests/auto/qdbusserver/server.cpp b/tests/auto/qdbusserver/server.cpp deleted file mode 100644 index d4422f0826..0000000000 --- a/tests/auto/qdbusserver/server.cpp +++ /dev/null @@ -1,49 +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 test suite 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 - -int main(int argc, char *argv[]) -{ - QCoreApplication app(argc, argv); - QDBusServer server("unix:path=/tmp/qdbus-test"); - return app.exec(); -} diff --git a/tests/auto/qdbusserver/tst_qdbusserver.cpp b/tests/auto/qdbusserver/tst_qdbusserver.cpp deleted file mode 100644 index f0da02a6de..0000000000 --- a/tests/auto/qdbusserver/tst_qdbusserver.cpp +++ /dev/null @@ -1,78 +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 test suite 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 -#include - -static const QString bus = "unix:path=/tmp/qdbus-test"; -static const QString service = "com.trolltech.Qt.Autotests.QDBusServer"; -static const QString path = "/com/trolltech/test"; - -class tst_QDBusServer : public QObject -{ - Q_OBJECT - - void connectToServer(); - void callMethod(); -private slots: -}; - -void tst_QDBusServer::connectToServer() -{ - QDBusConnection connection = QDBusConnection::connectToBus(bus, "test-connection"); - QTest::qWait(100); - QVERIFY(connection.isConnected()); -} - -void tst_QDBusServer::callMethod() -{ - QDBusConnection connection = QDBusConnection::connectToBus(bus, "test-connection"); - QTest::qWait(100); - QVERIFY(connection.isConnected()); - //QDBusMessage msg = QDBusMessage::createMethodCall(bus, path, /*service*/"", "method"); - //QDBusMessage reply = connection.call(msg, QDBus::Block); -} - -QTEST_MAIN(tst_QDBusServer) - -#include "tst_qdbusserver.moc" -- cgit v1.2.1 From 286bc423df6ed670d46d9a7075114f787b8db4bc Mon Sep 17 00:00:00 2001 From: Aleksandar Sasha Babic Date: Thu, 13 May 2010 09:42:38 +0200 Subject: Fixing compiling issues. On tb92 compiler gets confused when there is private header in the main cpp file. This happens in a lot of places in autoteste and benchmarks. We have to give explicite path to the MW headers. Reviewed-by: TrustMe --- tests/auto/qhostinfo/qhostinfo.pro | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/qhostinfo/qhostinfo.pro b/tests/auto/qhostinfo/qhostinfo.pro index 9bfe576f3c..f5c3923cc3 100644 --- a/tests/auto/qhostinfo/qhostinfo.pro +++ b/tests/auto/qhostinfo/qhostinfo.pro @@ -2,7 +2,7 @@ load(qttest_p4) SOURCES += tst_qhostinfo.cpp -QT = core network core +QT = core network wince*: { LIBS += ws2.lib @@ -10,4 +10,8 @@ wince*: { win32:LIBS += -lws2_32 } +symbian: { + INCLUDEPATH *= $$MW_LAYER_SYSTEMINCLUDE +} + -- cgit v1.2.1 From 4698e02579a4427c7a4ff7d59b1e37ba28ebc8e0 Mon Sep 17 00:00:00 2001 From: Markus Goetz Date: Thu, 13 May 2010 14:54:34 +0200 Subject: QNAM HTTP: More testcases --- .../tst_qhttpnetworkconnection.cpp | 44 ++++++++++++++++++++ tests/auto/qnetworkreply/tst_qnetworkreply.cpp | 47 ++++++++++++++++++++++ 2 files changed, 91 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp b/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp index 21f228af2b..89f608edcb 100644 --- a/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp +++ b/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp @@ -109,6 +109,9 @@ private Q_SLOTS: void getMultipleWithPriorities(); void getEmptyWithPipelining(); + + void getAndThenDeleteObject(); + void getAndThenDeleteObject_data(); }; tst_QHttpNetworkConnection::tst_QHttpNetworkConnection() @@ -1033,6 +1036,47 @@ void tst_QHttpNetworkConnection::getEmptyWithPipelining() qDeleteAll(replies); } +void tst_QHttpNetworkConnection::getAndThenDeleteObject_data() +{ + QTest::addColumn("replyFirst"); + + QTest::newRow("delete-reply-first") << true; + QTest::newRow("delete-connection-first") << false; +} + +void tst_QHttpNetworkConnection::getAndThenDeleteObject() +{ + // yes, this will leak if the testcase fails. I don't care. It must not fail then :P + QHttpNetworkConnection *connection = new QHttpNetworkConnection(QtNetworkSettings::serverName()); + QHttpNetworkRequest request("http://" + QtNetworkSettings::serverName() + "/qtest/bigfile"); + QHttpNetworkReply *reply = connection->sendRequest(request); + reply->setDownstreamLimited(true); + + QTime stopWatch; + stopWatch.start(); + forever { + QCoreApplication::instance()->processEvents(); + if (reply->bytesAvailable()) + break; + if (stopWatch.elapsed() >= 30000) + break; + } + + QVERIFY(reply->bytesAvailable()); + QCOMPARE(reply->statusCode() ,200); + QVERIFY(!reply->isFinished()); // must not be finished + + QFETCH(bool, replyFirst); + + if (replyFirst) { + delete reply; + delete connection; + } else { + delete connection; + delete reply; + } +} + QTEST_MAIN(tst_QHttpNetworkConnection) diff --git a/tests/auto/qnetworkreply/tst_qnetworkreply.cpp b/tests/auto/qnetworkreply/tst_qnetworkreply.cpp index 038610d1b2..74ed7fc69b 100644 --- a/tests/auto/qnetworkreply/tst_qnetworkreply.cpp +++ b/tests/auto/qnetworkreply/tst_qnetworkreply.cpp @@ -276,6 +276,9 @@ private Q_SLOTS: void ignoreSslErrorsListWithSlot(); #endif + void getAndThenDeleteObject_data(); + void getAndThenDeleteObject(); + // NOTE: This test must be last! void parentingRepliesToTheApp(); }; @@ -4108,6 +4111,50 @@ void tst_QNetworkReply::ignoreSslErrorsListWithSlot() #endif // QT_NO_OPENSSL +void tst_QNetworkReply::getAndThenDeleteObject_data() +{ + QTest::addColumn("replyFirst"); + + QTest::newRow("delete-reply-first") << true; + QTest::newRow("delete-qnam-first") << false; +} + +void tst_QNetworkReply::getAndThenDeleteObject() +{ + // yes, this will leak if the testcase fails. I don't care. It must not fail then :P + QNetworkAccessManager *manager = new QNetworkAccessManager(); + QNetworkRequest request("http://" + QtNetworkSettings::serverName() + "/qtest/bigfile"); + QNetworkReply *reply = manager->get(request); + reply->setReadBufferSize(1); + reply->setParent((QObject*)0); // must be 0 because else it is the manager + + QTime stopWatch; + stopWatch.start(); + forever { + QCoreApplication::instance()->processEvents(); + if (reply->bytesAvailable()) + break; + if (stopWatch.elapsed() >= 30000) + break; + } + + QVERIFY(reply->bytesAvailable()); + QCOMPARE(reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt(), 200); + QVERIFY(!reply->isFinished()); // must not be finished + + QFETCH(bool, replyFirst); + + if (replyFirst) { + delete reply; + delete manager; + } else { + delete manager; + delete reply; + } +} + + + // NOTE: This test must be last testcase in tst_qnetworkreply! void tst_QNetworkReply::parentingRepliesToTheApp() { -- cgit v1.2.1 From cce4e4393277298b5b5246ab79e615173b2cb13a Mon Sep 17 00:00:00 2001 From: Alan Alpert Date: Thu, 13 May 2010 18:36:15 +0200 Subject: Minor declarative webview tweaks Added a comment to the class docs, and cleaned up the visual tests a little. However the visual tests are old and text heavy, and since we never seem to check them we might wait on updating them for a little longer. --- .../qmlvisual/qfxwebview/autosize/autosize.qml | 61 ---- .../qfxwebview/autosize/data-X11/autosize.0.png | Bin 6886 -> 0 bytes .../qfxwebview/autosize/data-X11/autosize.qml | 83 ----- .../qfxwebview/autosize/data/autosize.0.png | Bin 6886 -> 0 bytes .../qfxwebview/autosize/data/autosize.qml | 83 ----- .../qmlvisual/webview/autosize/autosize.qml | 61 ++++ .../webview/autosize/data-X11/autosize.0.png | Bin 0 -> 10185 bytes .../webview/autosize/data-X11/autosize.1.png | Bin 0 -> 10185 bytes .../webview/autosize/data-X11/autosize.2.png | Bin 0 -> 10185 bytes .../webview/autosize/data-X11/autosize.3.png | Bin 0 -> 10185 bytes .../webview/autosize/data-X11/autosize.4.png | Bin 0 -> 10185 bytes .../webview/autosize/data-X11/autosize.qml | 115 +++++++ .../qmlvisual/webview/autosize/data/autosize.0.png | Bin 0 -> 10185 bytes .../qmlvisual/webview/autosize/data/autosize.1.png | Bin 0 -> 10185 bytes .../qmlvisual/webview/autosize/data/autosize.2.png | Bin 0 -> 10185 bytes .../qmlvisual/webview/autosize/data/autosize.3.png | Bin 0 -> 10185 bytes .../qmlvisual/webview/autosize/data/autosize.4.png | Bin 0 -> 10185 bytes .../qmlvisual/webview/autosize/data/autosize.qml | 115 +++++++ .../qmlvisual/webview/embedding/data/nesting.0.png | Bin 5659 -> 0 bytes .../qmlvisual/webview/embedding/data/nesting.qml | 363 --------------------- .../qmlvisual/webview/embedding/egg.qml | 26 -- .../qmlvisual/webview/embedding/nesting.html | 9 - .../qmlvisual/webview/embedding/nesting.qml | 9 - 23 files changed, 291 insertions(+), 634 deletions(-) delete mode 100644 tests/auto/declarative/qmlvisual/qfxwebview/autosize/autosize.qml delete mode 100644 tests/auto/declarative/qmlvisual/qfxwebview/autosize/data-X11/autosize.0.png delete mode 100644 tests/auto/declarative/qmlvisual/qfxwebview/autosize/data-X11/autosize.qml delete mode 100644 tests/auto/declarative/qmlvisual/qfxwebview/autosize/data/autosize.0.png delete mode 100644 tests/auto/declarative/qmlvisual/qfxwebview/autosize/data/autosize.qml create mode 100644 tests/auto/declarative/qmlvisual/webview/autosize/autosize.qml create mode 100644 tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.0.png create mode 100644 tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.1.png create mode 100644 tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.2.png create mode 100644 tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.3.png create mode 100644 tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.4.png create mode 100644 tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.qml create mode 100644 tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.0.png create mode 100644 tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.1.png create mode 100644 tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.2.png create mode 100644 tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.3.png create mode 100644 tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.4.png create mode 100644 tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.qml delete mode 100644 tests/auto/declarative/qmlvisual/webview/embedding/data/nesting.0.png delete mode 100644 tests/auto/declarative/qmlvisual/webview/embedding/data/nesting.qml delete mode 100644 tests/auto/declarative/qmlvisual/webview/embedding/egg.qml delete mode 100644 tests/auto/declarative/qmlvisual/webview/embedding/nesting.html delete mode 100644 tests/auto/declarative/qmlvisual/webview/embedding/nesting.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qmlvisual/qfxwebview/autosize/autosize.qml b/tests/auto/declarative/qmlvisual/qfxwebview/autosize/autosize.qml deleted file mode 100644 index c4a502eb68..0000000000 --- a/tests/auto/declarative/qmlvisual/qfxwebview/autosize/autosize.qml +++ /dev/null @@ -1,61 +0,0 @@ -import Qt 4.7 -import org.webkit 1.0 - -// The WebView size is determined by the width, height, -// preferredWidth, and preferredHeight properties. -Rectangle { - id: rect - color: "white" - width: 200 - height: layout.height - Column { - id: layout - spacing: 2 - WebView { - html: "No width defined." - Rectangle { color: "#10000000" - anchors.fill: parent - } - } - WebView { - width: rect.width - html: "The width is full." - Rectangle { - color: "#10000000" - anchors.fill: parent - } - } - WebView { - width: rect.width/2 - html: "The width is half." - Rectangle { - color: "#10000000" - anchors.fill: parent - } - } - WebView { - preferredWidth: rect.width/2 - html: "The preferredWidth is half." - Rectangle { - color: "#10000000" - anchors.fill: parent - } - } - WebView { - preferredWidth: rect.width/2 - html: "The_preferredWidth_is_half." - Rectangle { - color: "#10000000" - anchors.fill: parent - } - } - WebView { - width: rect.width/2 - html: "The_width_is_half." - Rectangle { - color: "#10000000" - anchors.fill: parent - } - } - } -} diff --git a/tests/auto/declarative/qmlvisual/qfxwebview/autosize/data-X11/autosize.0.png b/tests/auto/declarative/qmlvisual/qfxwebview/autosize/data-X11/autosize.0.png deleted file mode 100644 index 1f28b9a410..0000000000 Binary files a/tests/auto/declarative/qmlvisual/qfxwebview/autosize/data-X11/autosize.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qfxwebview/autosize/data-X11/autosize.qml b/tests/auto/declarative/qmlvisual/qfxwebview/autosize/data-X11/autosize.qml deleted file mode 100644 index f4c4e29226..0000000000 --- a/tests/auto/declarative/qmlvisual/qfxwebview/autosize/data-X11/autosize.qml +++ /dev/null @@ -1,83 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "0c70d855adc847fe33d7959ccb98bb8b" - } - Frame { - msec: 32 - hash: "0c70d855adc847fe33d7959ccb98bb8b" - } - Frame { - msec: 48 - hash: "0c70d855adc847fe33d7959ccb98bb8b" - } - Frame { - msec: 64 - hash: "0c70d855adc847fe33d7959ccb98bb8b" - } - Frame { - msec: 80 - hash: "0c70d855adc847fe33d7959ccb98bb8b" - } - Frame { - msec: 96 - hash: "0c70d855adc847fe33d7959ccb98bb8b" - } - Frame { - msec: 112 - hash: "0c70d855adc847fe33d7959ccb98bb8b" - } - Frame { - msec: 128 - hash: "0c70d855adc847fe33d7959ccb98bb8b" - } - Frame { - msec: 144 - hash: "0c70d855adc847fe33d7959ccb98bb8b" - } - Frame { - msec: 160 - hash: "0c70d855adc847fe33d7959ccb98bb8b" - } - Frame { - msec: 176 - hash: "0c70d855adc847fe33d7959ccb98bb8b" - } - Frame { - msec: 192 - hash: "0c70d855adc847fe33d7959ccb98bb8b" - } - Frame { - msec: 208 - hash: "0c70d855adc847fe33d7959ccb98bb8b" - } - Frame { - msec: 224 - hash: "0c70d855adc847fe33d7959ccb98bb8b" - } - Frame { - msec: 240 - hash: "0c70d855adc847fe33d7959ccb98bb8b" - } - Frame { - msec: 256 - hash: "0c70d855adc847fe33d7959ccb98bb8b" - } - Frame { - msec: 272 - hash: "0c70d855adc847fe33d7959ccb98bb8b" - } - Frame { - msec: 288 - hash: "0c70d855adc847fe33d7959ccb98bb8b" - } - Frame { - msec: 304 - hash: "0c70d855adc847fe33d7959ccb98bb8b" - } -} diff --git a/tests/auto/declarative/qmlvisual/qfxwebview/autosize/data/autosize.0.png b/tests/auto/declarative/qmlvisual/qfxwebview/autosize/data/autosize.0.png deleted file mode 100644 index 1f28b9a410..0000000000 Binary files a/tests/auto/declarative/qmlvisual/qfxwebview/autosize/data/autosize.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qfxwebview/autosize/data/autosize.qml b/tests/auto/declarative/qmlvisual/qfxwebview/autosize/data/autosize.qml deleted file mode 100644 index 273c2b0fab..0000000000 --- a/tests/auto/declarative/qmlvisual/qfxwebview/autosize/data/autosize.qml +++ /dev/null @@ -1,83 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "66539e1b1983d95386b0d30d6e969904" - } - Frame { - msec: 32 - hash: "66539e1b1983d95386b0d30d6e969904" - } - Frame { - msec: 48 - hash: "66539e1b1983d95386b0d30d6e969904" - } - Frame { - msec: 64 - hash: "66539e1b1983d95386b0d30d6e969904" - } - Frame { - msec: 80 - hash: "66539e1b1983d95386b0d30d6e969904" - } - Frame { - msec: 96 - hash: "66539e1b1983d95386b0d30d6e969904" - } - Frame { - msec: 112 - hash: "66539e1b1983d95386b0d30d6e969904" - } - Frame { - msec: 128 - hash: "66539e1b1983d95386b0d30d6e969904" - } - Frame { - msec: 144 - hash: "66539e1b1983d95386b0d30d6e969904" - } - Frame { - msec: 160 - hash: "66539e1b1983d95386b0d30d6e969904" - } - Frame { - msec: 176 - hash: "66539e1b1983d95386b0d30d6e969904" - } - Frame { - msec: 192 - hash: "66539e1b1983d95386b0d30d6e969904" - } - Frame { - msec: 208 - hash: "66539e1b1983d95386b0d30d6e969904" - } - Frame { - msec: 224 - hash: "66539e1b1983d95386b0d30d6e969904" - } - Frame { - msec: 240 - hash: "66539e1b1983d95386b0d30d6e969904" - } - Frame { - msec: 256 - hash: "66539e1b1983d95386b0d30d6e969904" - } - Frame { - msec: 272 - hash: "66539e1b1983d95386b0d30d6e969904" - } - Frame { - msec: 288 - hash: "66539e1b1983d95386b0d30d6e969904" - } - Frame { - msec: 304 - hash: "66539e1b1983d95386b0d30d6e969904" - } -} diff --git a/tests/auto/declarative/qmlvisual/webview/autosize/autosize.qml b/tests/auto/declarative/qmlvisual/webview/autosize/autosize.qml new file mode 100644 index 0000000000..c4a502eb68 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/webview/autosize/autosize.qml @@ -0,0 +1,61 @@ +import Qt 4.7 +import org.webkit 1.0 + +// The WebView size is determined by the width, height, +// preferredWidth, and preferredHeight properties. +Rectangle { + id: rect + color: "white" + width: 200 + height: layout.height + Column { + id: layout + spacing: 2 + WebView { + html: "No width defined." + Rectangle { color: "#10000000" + anchors.fill: parent + } + } + WebView { + width: rect.width + html: "The width is full." + Rectangle { + color: "#10000000" + anchors.fill: parent + } + } + WebView { + width: rect.width/2 + html: "The width is half." + Rectangle { + color: "#10000000" + anchors.fill: parent + } + } + WebView { + preferredWidth: rect.width/2 + html: "The preferredWidth is half." + Rectangle { + color: "#10000000" + anchors.fill: parent + } + } + WebView { + preferredWidth: rect.width/2 + html: "The_preferredWidth_is_half." + Rectangle { + color: "#10000000" + anchors.fill: parent + } + } + WebView { + width: rect.width/2 + html: "The_width_is_half." + Rectangle { + color: "#10000000" + anchors.fill: parent + } + } + } +} diff --git a/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.0.png b/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.0.png new file mode 100644 index 0000000000..ed87174dce Binary files /dev/null and b/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.0.png differ diff --git a/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.1.png b/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.1.png new file mode 100644 index 0000000000..ed87174dce Binary files /dev/null and b/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.1.png differ diff --git a/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.2.png b/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.2.png new file mode 100644 index 0000000000..ed87174dce Binary files /dev/null and b/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.2.png differ diff --git a/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.3.png b/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.3.png new file mode 100644 index 0000000000..ed87174dce Binary files /dev/null and b/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.3.png differ diff --git a/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.4.png b/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.4.png new file mode 100644 index 0000000000..ed87174dce Binary files /dev/null and b/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.4.png differ diff --git a/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.qml b/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.qml new file mode 100644 index 0000000000..612213877f --- /dev/null +++ b/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.qml @@ -0,0 +1,115 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + hash: "b2d863e57dee2a297d038e18acc70f92" + } + Frame { + msec: 32 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 48 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 64 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 80 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 96 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 112 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 128 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 144 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 160 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 176 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 192 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 208 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 224 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 240 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 256 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 272 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 288 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 304 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 320 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 336 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 352 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 368 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 384 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 400 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 416 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 432 + hash: "903a4c7e619abba5342c8c827f26a722" + } +} diff --git a/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.0.png b/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.0.png new file mode 100644 index 0000000000..ed87174dce Binary files /dev/null and b/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.0.png differ diff --git a/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.1.png b/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.1.png new file mode 100644 index 0000000000..ed87174dce Binary files /dev/null and b/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.1.png differ diff --git a/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.2.png b/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.2.png new file mode 100644 index 0000000000..ed87174dce Binary files /dev/null and b/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.2.png differ diff --git a/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.3.png b/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.3.png new file mode 100644 index 0000000000..ed87174dce Binary files /dev/null and b/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.3.png differ diff --git a/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.4.png b/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.4.png new file mode 100644 index 0000000000..ed87174dce Binary files /dev/null and b/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.4.png differ diff --git a/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.qml b/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.qml new file mode 100644 index 0000000000..612213877f --- /dev/null +++ b/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.qml @@ -0,0 +1,115 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + hash: "b2d863e57dee2a297d038e18acc70f92" + } + Frame { + msec: 32 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 48 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 64 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 80 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 96 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 112 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 128 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 144 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 160 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 176 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 192 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 208 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 224 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 240 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 256 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 272 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 288 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 304 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 320 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 336 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 352 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 368 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 384 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 400 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 416 + hash: "903a4c7e619abba5342c8c827f26a722" + } + Frame { + msec: 432 + hash: "903a4c7e619abba5342c8c827f26a722" + } +} diff --git a/tests/auto/declarative/qmlvisual/webview/embedding/data/nesting.0.png b/tests/auto/declarative/qmlvisual/webview/embedding/data/nesting.0.png deleted file mode 100644 index 57de71069e..0000000000 Binary files a/tests/auto/declarative/qmlvisual/webview/embedding/data/nesting.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/webview/embedding/data/nesting.qml b/tests/auto/declarative/qmlvisual/webview/embedding/data/nesting.qml deleted file mode 100644 index 966456628d..0000000000 --- a/tests/auto/declarative/qmlvisual/webview/embedding/data/nesting.qml +++ /dev/null @@ -1,363 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "5dc8dca7a73022fbf2116b654b709244" - } - Frame { - msec: 32 - hash: "5dc8dca7a73022fbf2116b654b709244" - } - Frame { - msec: 48 - hash: "34079c4076ab6aadd8b64fcba7d95e15" - } - Frame { - msec: 64 - hash: "5ab5fc62b49e78d0609dcb4be6c9a157" - } - Frame { - msec: 80 - hash: "063cc7438bbffae717648d98006021a8" - } - Frame { - msec: 96 - hash: "c5cd16663e48639cbeade82c3bfa0403" - } - Frame { - msec: 112 - hash: "ea7f8df84ddbad0f683fe97ddb0a0130" - } - Frame { - msec: 128 - hash: "3c353e09bdb3a1e6ff388ad6020f55ea" - } - Frame { - msec: 144 - hash: "5b6de430365d0c9824337011916b0c0b" - } - Frame { - msec: 160 - hash: "48d353ac9e7ee1ce41361d0a2b47e008" - } - Frame { - msec: 176 - hash: "c96e4d02d343ddd78e8d3dd6aa8e0198" - } - Frame { - msec: 192 - hash: "543c63d77ec635b77672ba4c5160a3d4" - } - Frame { - msec: 208 - hash: "2d56ad9c2352e555fef613d625e71151" - } - Frame { - msec: 224 - hash: "18e433c3e3ee64510f875f674791d51c" - } - Frame { - msec: 240 - hash: "56889122c1ddacdd8ebd88310c7410bc" - } - Frame { - msec: 256 - hash: "d51c85458e0109bd5bf9528b741d98d0" - } - Frame { - msec: 272 - hash: "ac54137afc29a3022c6f01df7cdf2fd6" - } - Frame { - msec: 288 - hash: "c7a42b389bae3b729ba9e6cba7f54530" - } - Frame { - msec: 304 - hash: "7583b55841e80891652c3472c658f989" - } - Frame { - msec: 320 - hash: "95a7f8d47c3788261427727f82c9ff59" - } - Frame { - msec: 336 - hash: "a87bad3e2f010680e16cd1e3f5e03e99" - } - Frame { - msec: 352 - hash: "e16bc51653f21819e0eec412b99a069f" - } - Frame { - msec: 368 - hash: "f1e869580ac148ae207141c5f0adc185" - } - Frame { - msec: 384 - hash: "7e496e44363a16d7c62e4258af9ce087" - } - Frame { - msec: 400 - hash: "19e97915c84d3554c66d5a9ad3aa6a3e" - } - Frame { - msec: 416 - hash: "181181b48a1085d1850f18ca9b163549" - } - Frame { - msec: 432 - hash: "4637cb04595a543867bd43b0c1c829ea" - } - Frame { - msec: 448 - hash: "bd0a074fed5507f8556de6110bf56aa4" - } - Frame { - msec: 464 - hash: "9547618923edac6f7f9a3ff324c4f2d8" - } - Frame { - msec: 480 - hash: "a2f90c88eacb7c66878d45e33c2a787d" - } - Frame { - msec: 496 - hash: "d5ffd3e35d0426887c106069310f84d8" - } - Frame { - msec: 512 - hash: "6bc50a5b76e2a2ef0e6bee762abeb330" - } - Frame { - msec: 528 - hash: "d4439933c842ed8432434d272fea2845" - } - Frame { - msec: 544 - hash: "61699e6ec476ac3f090e4f485430421d" - } - Frame { - msec: 560 - hash: "02d7fa9bcd697d2cab364d0a3ca4a0e2" - } - Frame { - msec: 576 - hash: "914178cbf1f6a6822cc40f81823475e4" - } - Frame { - msec: 592 - hash: "280f867ea27891ee764332998567d40d" - } - Frame { - msec: 608 - hash: "ea0d00fe54a172a89c24eac781f7ae6d" - } - Frame { - msec: 624 - hash: "4e910fb507964a710e26f318c62227bf" - } - Frame { - msec: 640 - hash: "b0c3392eb739f270dd21f552ad999c23" - } - Frame { - msec: 656 - hash: "f3698c83b0972bd66a53ad95d4fc301e" - } - Frame { - msec: 672 - hash: "0d303a0d6a9b626943ac93cc6f3fb230" - } - Frame { - msec: 688 - hash: "ba56d49e6f51aa6f1bd2a7500e3538fd" - } - Frame { - msec: 704 - hash: "273ce89d5194168e5bfd1dcefad49be2" - } - Frame { - msec: 720 - hash: "c2beef4fb7996dbccdaff4f54bdc33f1" - } - Frame { - msec: 736 - hash: "1e1aa7d84f27158a8e61bd8698ddbf2a" - } - Frame { - msec: 752 - hash: "24e82479802e710c673133ca0413be66" - } - Frame { - msec: 768 - hash: "b77e935a690bcb396e15b942d772cf1b" - } - Frame { - msec: 784 - hash: "7b729c74df1d15d6b0e8e1fc19c2d710" - } - Frame { - msec: 800 - hash: "fd6cbdca3e481baaf35022dfea76e74c" - } - Frame { - msec: 816 - hash: "c975f6eb592793aa81895ffcb74ca577" - } - Frame { - msec: 832 - hash: "677c4039a650df53b4e885f37b049ab3" - } - Frame { - msec: 848 - hash: "89563aae36552cb1749ec06567e46d9d" - } - Frame { - msec: 864 - hash: "01f57402874de6608cc02937aaf91794" - } - Frame { - msec: 880 - hash: "50c9c4e5eaaadee1ff230975390d34e3" - } - Frame { - msec: 896 - hash: "20b7d277d398afad59afdf9e6b41a57e" - } - Frame { - msec: 912 - hash: "8f9ea938a2375afeba419199de66dd52" - } - Frame { - msec: 928 - hash: "b96745888ba954bcf304c0840a030f93" - } - Frame { - msec: 944 - hash: "f5715e931274011123160f7ad10d6c52" - } - Frame { - msec: 960 - image: "nesting.0.png" - } - Frame { - msec: 976 - hash: "459fe967816c795a177a3926093fae75" - } - Frame { - msec: 992 - hash: "c599a26083068b6db628c8d8416bab60" - } - Frame { - msec: 1008 - hash: "e0aee7d1152c971b1beee9d36542acb7" - } - Frame { - msec: 1024 - hash: "2af0facdf6412f7b06979aae25e4db26" - } - Frame { - msec: 1040 - hash: "f147a92cb1826f95d4fdb7d011ba79b1" - } - Frame { - msec: 1056 - hash: "12a1cb894b0fb8e44152cccacf855c1a" - } - Frame { - msec: 1072 - hash: "c7500cf58b74fef2c3e9820d1de8f843" - } - Frame { - msec: 1088 - hash: "3a031b2206835f8b2dc9837016df6ae6" - } - Frame { - msec: 1104 - hash: "7a4796b419bbc04237764dea0b1d47d5" - } - Frame { - msec: 1120 - hash: "151d350f0064e2faf0bfb9c58bc3e4f2" - } - Frame { - msec: 1136 - hash: "d72c20a97e678908acc1d6c1f8114d9e" - } - Frame { - msec: 1152 - hash: "22da1e645640a3c31b064ff757113197" - } - Frame { - msec: 1168 - hash: "401f0bf370e2ecea5a84276fb72eb1da" - } - Frame { - msec: 1184 - hash: "c6e00d7b0ac14a5c3860b6a29901c915" - } - Frame { - msec: 1200 - hash: "f1f7dc55d7719fcb6e97157c0ca85fc0" - } - Frame { - msec: 1216 - hash: "6a112e1d79c7128c235d093e4f1f9325" - } - Frame { - msec: 1232 - hash: "14a2caf8cdca8d5147261a315059b69d" - } - Frame { - msec: 1248 - hash: "5645243aa3cfd12b0b32442f063bedb2" - } - Frame { - msec: 1264 - hash: "c7f72534a88e33c72a54cb8580534551" - } - Frame { - msec: 1280 - hash: "6cd5e2e8e0128586a682b3c649ae0631" - } - Frame { - msec: 1296 - hash: "67cefb4526b52d40a31811bc0dfaeb6a" - } - Frame { - msec: 1312 - hash: "fbe2a43a27bf490719c8b9e2b094e34f" - } - Frame { - msec: 1328 - hash: "e028aad6f51a47d8189efcf9c5d277ee" - } - Frame { - msec: 1344 - hash: "2b4cc50c37c07289fa6f9309991d36da" - } - Frame { - msec: 1360 - hash: "b67b2244cd0616d07e100d7b3b00bbe2" - } - Frame { - msec: 1376 - hash: "4e4690cffc98c49e91bdb600f1e94c79" - } - Frame { - msec: 1392 - hash: "e5215c727836a5547a170d42363bc5c8" - } - Frame { - msec: 1408 - hash: "26868e91d1794bb3f42d51f508fef613" - } - Frame { - msec: 1424 - hash: "1e5f431b125a66096ac9a4d5a211a2c4" - } -} diff --git a/tests/auto/declarative/qmlvisual/webview/embedding/egg.qml b/tests/auto/declarative/qmlvisual/webview/embedding/egg.qml deleted file mode 100644 index c569c9a62c..0000000000 --- a/tests/auto/declarative/qmlvisual/webview/embedding/egg.qml +++ /dev/null @@ -1,26 +0,0 @@ -import Qt 4.7 - -Item { - property variant period : 250 - property variant color : "black" - id: root - - Item { - x: root.width/2 - y: root.height/2 - Rectangle { - radius: width/2 - color: root.color - x: -width/2 - y: -height/2 - width: root.width*1.5 - height: root.height*1.5 - } - rotation: NumberAnimation { - from: 0 - to: 360 - repeat: true - duration: root.period - } - } -} diff --git a/tests/auto/declarative/qmlvisual/webview/embedding/nesting.html b/tests/auto/declarative/qmlvisual/webview/embedding/nesting.html deleted file mode 100644 index 6e81689ec7..0000000000 --- a/tests/auto/declarative/qmlvisual/webview/embedding/nesting.html +++ /dev/null @@ -1,9 +0,0 @@ - -Nesting - - - -

Nesting

-This is a test... - -... with a spinning QML egg nested in it. diff --git a/tests/auto/declarative/qmlvisual/webview/embedding/nesting.qml b/tests/auto/declarative/qmlvisual/webview/embedding/nesting.qml deleted file mode 100644 index 9e008de213..0000000000 --- a/tests/auto/declarative/qmlvisual/webview/embedding/nesting.qml +++ /dev/null @@ -1,9 +0,0 @@ -import Qt 4.7 -import org.webkit 1.0 - -WebView { - width: 300 - height: 200 - url: "nesting.html" - settings.pluginsEnabled: true -} -- cgit v1.2.1 From fe947b2050184f02c429962981397586d06f2893 Mon Sep 17 00:00:00 2001 From: Rohan McGovern Date: Fri, 14 May 2010 10:25:11 +1000 Subject: Remove qdbusserver from tests/auto/dbus.pro --- tests/auto/dbus.pro | 1 - 1 file changed, 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/dbus.pro b/tests/auto/dbus.pro index 1c808df636..e5f87e34b3 100644 --- a/tests/auto/dbus.pro +++ b/tests/auto/dbus.pro @@ -13,7 +13,6 @@ SUBDIRS=\ qdbuspendingreply \ qdbusperformance \ qdbusreply \ - qdbusserver \ qdbusservicewatcher \ qdbusthreading \ qdbusxmlparser \ -- cgit v1.2.1 From 1e395c0ab9676995419ae8b20e4d95ad3fe11f31 Mon Sep 17 00:00:00 2001 From: Joona Petrell Date: Fri, 30 Apr 2010 15:11:11 +1000 Subject: Symbian build fix to declarative auto and benchmark tests Task-number: QTBUG-9491 Reviewed-by: Martin Jones --- tests/auto/declarative/declarative.pro | 11 +++++--- tests/auto/declarative/examples/examples.pro | 9 ++++++- .../auto/declarative/parserstress/parserstress.pro | 9 ++++++- .../declarative/parserstress/tst_parserstress.cpp | 6 ++++- .../qdeclarativeanchors/qdeclarativeanchors.pro | 9 ++++++- .../qdeclarativeanimatedimage.pro | 9 ++++++- .../qdeclarativeanimations.pro | 9 ++++++- .../qdeclarativebehaviors.pro | 9 ++++++- .../qdeclarativebinding/qdeclarativebinding.pro | 9 ++++++- .../qdeclarativeborderimage.pro | 9 ++++++- .../qdeclarativecomponent.pro | 6 ++++- .../qdeclarativeconnection.pro | 9 ++++++- .../qdeclarativecontext/qdeclarativecontext.pro | 6 ++++- .../qdeclarativedom/qdeclarativedom.pro | 9 ++++++- .../qdeclarativeengine/qdeclarativeengine.pro | 6 ++++- .../qdeclarativeerror/qdeclarativeerror.pro | 6 ++++- .../qdeclarativeflickable.pro | 9 ++++++- .../qdeclarativeflipable/qdeclarativeflipable.pro | 9 ++++++- .../qdeclarativefocusscope.pro | 9 ++++++- .../qdeclarativefontloader.pro | 9 ++++++- .../qdeclarativegridview/qdeclarativegridview.pro | 9 ++++++- .../qdeclarativeimage/qdeclarativeimage.pro | 9 ++++++- .../qdeclarativeimageprovider.pro | 9 ++++++- .../qdeclarativeinfo/qdeclarativeinfo.pro | 9 ++++++- .../qdeclarativeinstruction.pro | 6 ++++- .../qdeclarativeitem/qdeclarativeitem.pro | 9 ++++++- .../qdeclarativelanguage/qdeclarativelanguage.pro | 9 ++++++- .../qdeclarativelayoutitem.pro | 9 ++++++- .../qdeclarativelistmodel.pro | 9 ++++++- .../qdeclarativelistview/qdeclarativelistview.pro | 9 ++++++- .../qdeclarativeloader/qdeclarativeloader.pro | 9 ++++++- .../qdeclarativemetatype/qdeclarativemetatype.pro | 6 ++++- .../qdeclarativemoduleplugin/plugin/plugin.pro | 3 +++ .../tst_qdeclarativemoduleplugin.pro | 9 ++++++- .../qdeclarativemousearea.pro | 9 ++++++- .../qdeclarativeparticles.pro | 9 ++++++- .../qdeclarativepathview/qdeclarativepathview.pro | 9 ++++++- .../qdeclarativepixmapcache.pro | 9 ++++++- .../qdeclarativepositioners.pro | 9 ++++++- .../qdeclarativeproperty/qdeclarativeproperty.pro | 9 ++++++- .../declarative/qdeclarativeqt/qdeclarativeqt.pro | 9 ++++++- .../qdeclarativerepeater/qdeclarativerepeater.pro | 9 ++++++- .../qdeclarativesmoothedanimation.pro | 9 ++++++- .../qdeclarativesmoothedfollow.pro | 9 ++++++- .../qdeclarativespringfollow.pro | 9 ++++++- .../qdeclarativesqldatabase.pro | 9 ++++++- .../qdeclarativestates/qdeclarativestates.pro | 9 ++++++- .../qdeclarativesystempalette.pro | 7 +++++ .../qdeclarativetext/qdeclarativetext.pro | 9 ++++++- .../qdeclarativetextedit/qdeclarativetextedit.pro | 9 ++++++- .../qdeclarativetextinput.pro | 9 ++++++- .../qdeclarativetimer/qdeclarativetimer.pro | 6 ++++- .../qdeclarativevaluetypes.pro | 9 ++++++- .../qdeclarativeview/qdeclarativeview.pro | 9 ++++++- .../qdeclarativeviewer/qdeclarativeviewer.pro | 9 ++++++- .../qdeclarativevisualdatamodel.pro | 10 +++++-- .../qdeclarativewebview/qdeclarativewebview.pro | 9 ++++++- .../qdeclarativeworkerscript.pro | 9 ++++++- .../qdeclarativexmlhttprequest.pro | 10 +++++-- .../qdeclarativexmllistmodel.pro | 9 ++++++- tests/auto/declarative/qmlvisual/qmlvisual.pro | 31 ++++++++++++++++++++-- tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp | 2 +- .../qpacketprotocol/tst_qpacketprotocol.cpp | 2 +- 63 files changed, 480 insertions(+), 67 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/declarative.pro b/tests/auto/declarative/declarative.pro index 3496906f92..4bb351860a 100644 --- a/tests/auto/declarative/declarative.pro +++ b/tests/auto/declarative/declarative.pro @@ -1,6 +1,12 @@ TEMPLATE = subdirs +!symbian: { SUBDIRS += \ examples \ + qdeclarativemetatype \ + qmetaobjectbuilder +} + +SUBDIRS += \ parserstress \ qdeclarativeanchors \ qdeclarativeanimatedimage \ @@ -34,7 +40,6 @@ SUBDIRS += \ qdeclarativelistreference \ qdeclarativelistview \ qdeclarativeloader \ - qdeclarativemetatype \ qdeclarativemoduleplugin \ qdeclarativemousearea \ qdeclarativeparticles \ @@ -64,8 +69,7 @@ SUBDIRS += \ qdeclarativexmlhttprequest \ qdeclarativexmllistmodel \ qmlvisual \ - qpacketprotocol \ - qmetaobjectbuilder + qpacketprotocol contains(QT_CONFIG, webkit) { SUBDIRS += \ @@ -74,4 +78,3 @@ contains(QT_CONFIG, webkit) { # Tests which should run in Pulse PULSE_TESTS = $$SUBDIRS - diff --git a/tests/auto/declarative/examples/examples.pro b/tests/auto/declarative/examples/examples.pro index 4c325242b3..92a16f1f81 100644 --- a/tests/auto/declarative/examples/examples.pro +++ b/tests/auto/declarative/examples/examples.pro @@ -6,7 +6,14 @@ SOURCES += tst_examples.cpp include(../../../../tools/qml/qml.pri) -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/parserstress/parserstress.pro b/tests/auto/declarative/parserstress/parserstress.pro index 88305113f0..a95a8556d4 100644 --- a/tests/auto/declarative/parserstress/parserstress.pro +++ b/tests/auto/declarative/parserstress/parserstress.pro @@ -4,7 +4,14 @@ macx:CONFIG -= app_bundle SOURCES += tst_parserstress.cpp -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = ..\..\qscriptjstestsuite\tests + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/parserstress/tst_parserstress.cpp b/tests/auto/declarative/parserstress/tst_parserstress.cpp index 294f2f76eb..c86908b17f 100644 --- a/tests/auto/declarative/parserstress/tst_parserstress.cpp +++ b/tests/auto/declarative/parserstress/tst_parserstress.cpp @@ -86,12 +86,15 @@ QStringList tst_parserstress::findJSFiles(const QDir &d) void tst_parserstress::ecmascript_data() { +#ifdef Q_OS_SYMBIAN + QDir dir("tests"); +#else QDir dir(SRCDIR); dir.cdUp(); dir.cdUp(); dir.cd("qscriptjstestsuite"); dir.cd("tests"); - +#endif QStringList files = findJSFiles(dir); QTest::addColumn("file"); @@ -129,6 +132,7 @@ void tst_parserstress::ecmascript() QByteArray qmlData = qml.toUtf8(); QDeclarativeComponent component(&engine); + component.setData(qmlData, QUrl::fromLocalFile(SRCDIR + QString("/dummy.qml"))); QFileInfo info(file); diff --git a/tests/auto/declarative/qdeclarativeanchors/qdeclarativeanchors.pro b/tests/auto/declarative/qdeclarativeanchors/qdeclarativeanchors.pro index a2403f280c..452ad55fe5 100644 --- a/tests/auto/declarative/qdeclarativeanchors/qdeclarativeanchors.pro +++ b/tests/auto/declarative/qdeclarativeanchors/qdeclarativeanchors.pro @@ -3,7 +3,14 @@ contains(QT_CONFIG,declarative): QT += declarative SOURCES += tst_qdeclarativeanchors.cpp macx:CONFIG -= app_bundle -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativeanimatedimage/qdeclarativeanimatedimage.pro b/tests/auto/declarative/qdeclarativeanimatedimage/qdeclarativeanimatedimage.pro index 74f9be0c27..7213abda12 100644 --- a/tests/auto/declarative/qdeclarativeanimatedimage/qdeclarativeanimatedimage.pro +++ b/tests/auto/declarative/qdeclarativeanimatedimage/qdeclarativeanimatedimage.pro @@ -4,7 +4,14 @@ HEADERS += ../shared/testhttpserver.h SOURCES += tst_qdeclarativeanimatedimage.cpp ../shared/testhttpserver.cpp macx:CONFIG -= app_bundle -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativeanimations/qdeclarativeanimations.pro b/tests/auto/declarative/qdeclarativeanimations/qdeclarativeanimations.pro index ce38eebd45..f7ed371191 100644 --- a/tests/auto/declarative/qdeclarativeanimations/qdeclarativeanimations.pro +++ b/tests/auto/declarative/qdeclarativeanimations/qdeclarativeanimations.pro @@ -3,7 +3,14 @@ contains(QT_CONFIG,declarative): QT += declarative SOURCES += tst_qdeclarativeanimations.cpp macx:CONFIG -= app_bundle -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativebehaviors/qdeclarativebehaviors.pro b/tests/auto/declarative/qdeclarativebehaviors/qdeclarativebehaviors.pro index c2781b89df..7137af10b9 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/qdeclarativebehaviors.pro +++ b/tests/auto/declarative/qdeclarativebehaviors/qdeclarativebehaviors.pro @@ -3,7 +3,14 @@ contains(QT_CONFIG,declarative): QT += declarative SOURCES += tst_qdeclarativebehaviors.cpp macx:CONFIG -= app_bundle -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativebinding/qdeclarativebinding.pro b/tests/auto/declarative/qdeclarativebinding/qdeclarativebinding.pro index 04dd6f5e9d..04535db207 100644 --- a/tests/auto/declarative/qdeclarativebinding/qdeclarativebinding.pro +++ b/tests/auto/declarative/qdeclarativebinding/qdeclarativebinding.pro @@ -5,7 +5,14 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativebinding.cpp # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativeborderimage/qdeclarativeborderimage.pro b/tests/auto/declarative/qdeclarativeborderimage/qdeclarativeborderimage.pro index e754923475..3aa21974dc 100644 --- a/tests/auto/declarative/qdeclarativeborderimage/qdeclarativeborderimage.pro +++ b/tests/auto/declarative/qdeclarativeborderimage/qdeclarativeborderimage.pro @@ -6,7 +6,14 @@ HEADERS += ../shared/testhttpserver.h SOURCES += tst_qdeclarativeborderimage.cpp ../shared/testhttpserver.cpp # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativecomponent/qdeclarativecomponent.pro b/tests/auto/declarative/qdeclarativecomponent/qdeclarativecomponent.pro index e58c798d85..98c38ad3dd 100644 --- a/tests/auto/declarative/qdeclarativecomponent/qdeclarativecomponent.pro +++ b/tests/auto/declarative/qdeclarativecomponent/qdeclarativecomponent.pro @@ -5,7 +5,11 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativecomponent.cpp -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativeconnection/qdeclarativeconnection.pro b/tests/auto/declarative/qdeclarativeconnection/qdeclarativeconnection.pro index 959354d418..bbf8630fab 100644 --- a/tests/auto/declarative/qdeclarativeconnection/qdeclarativeconnection.pro +++ b/tests/auto/declarative/qdeclarativeconnection/qdeclarativeconnection.pro @@ -5,7 +5,14 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativeconnection.cpp # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativecontext/qdeclarativecontext.pro b/tests/auto/declarative/qdeclarativecontext/qdeclarativecontext.pro index 5db9a9e5ad..0e1a5b19ff 100644 --- a/tests/auto/declarative/qdeclarativecontext/qdeclarativecontext.pro +++ b/tests/auto/declarative/qdeclarativecontext/qdeclarativecontext.pro @@ -3,7 +3,11 @@ contains(QT_CONFIG,declarative): QT += declarative SOURCES += tst_qdeclarativecontext.cpp macx:CONFIG -= app_bundle -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativedom/qdeclarativedom.pro b/tests/auto/declarative/qdeclarativedom/qdeclarativedom.pro index 466c563273..9f1e50c77f 100644 --- a/tests/auto/declarative/qdeclarativedom/qdeclarativedom.pro +++ b/tests/auto/declarative/qdeclarativedom/qdeclarativedom.pro @@ -4,7 +4,14 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativedom.cpp -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativeengine/qdeclarativeengine.pro b/tests/auto/declarative/qdeclarativeengine/qdeclarativeengine.pro index e0ea2e5f98..23afd07290 100644 --- a/tests/auto/declarative/qdeclarativeengine/qdeclarativeengine.pro +++ b/tests/auto/declarative/qdeclarativeengine/qdeclarativeengine.pro @@ -5,7 +5,11 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativeengine.cpp # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativeerror/qdeclarativeerror.pro b/tests/auto/declarative/qdeclarativeerror/qdeclarativeerror.pro index 501f32c17e..fae11f937f 100644 --- a/tests/auto/declarative/qdeclarativeerror/qdeclarativeerror.pro +++ b/tests/auto/declarative/qdeclarativeerror/qdeclarativeerror.pro @@ -3,7 +3,11 @@ contains(QT_CONFIG,declarative): QT += declarative SOURCES += tst_qdeclarativeerror.cpp macx:CONFIG -= app_bundle -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativeflickable/qdeclarativeflickable.pro b/tests/auto/declarative/qdeclarativeflickable/qdeclarativeflickable.pro index 07637c937f..7a701096e1 100644 --- a/tests/auto/declarative/qdeclarativeflickable/qdeclarativeflickable.pro +++ b/tests/auto/declarative/qdeclarativeflickable/qdeclarativeflickable.pro @@ -5,7 +5,14 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativeflickable.cpp # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativeflipable/qdeclarativeflipable.pro b/tests/auto/declarative/qdeclarativeflipable/qdeclarativeflipable.pro index 9830b55e95..9b4fbc97b9 100644 --- a/tests/auto/declarative/qdeclarativeflipable/qdeclarativeflipable.pro +++ b/tests/auto/declarative/qdeclarativeflipable/qdeclarativeflipable.pro @@ -5,7 +5,14 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativeflipable.cpp # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativefocusscope/qdeclarativefocusscope.pro b/tests/auto/declarative/qdeclarativefocusscope/qdeclarativefocusscope.pro index 687c80c1a7..c021fcfc5b 100644 --- a/tests/auto/declarative/qdeclarativefocusscope/qdeclarativefocusscope.pro +++ b/tests/auto/declarative/qdeclarativefocusscope/qdeclarativefocusscope.pro @@ -3,5 +3,12 @@ contains(QT_CONFIG,declarative): QT += declarative SOURCES += tst_qdeclarativefocusscope.cpp macx:CONFIG -= app_bundle -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} diff --git a/tests/auto/declarative/qdeclarativefontloader/qdeclarativefontloader.pro b/tests/auto/declarative/qdeclarativefontloader/qdeclarativefontloader.pro index 9a8a3ffa61..dbe0dcbd95 100644 --- a/tests/auto/declarative/qdeclarativefontloader/qdeclarativefontloader.pro +++ b/tests/auto/declarative/qdeclarativefontloader/qdeclarativefontloader.pro @@ -6,7 +6,14 @@ HEADERS += ../shared/testhttpserver.h SOURCES += tst_qdeclarativefontloader.cpp ../shared/testhttpserver.cpp # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativegridview/qdeclarativegridview.pro b/tests/auto/declarative/qdeclarativegridview/qdeclarativegridview.pro index b06926088d..033e20ed9a 100644 --- a/tests/auto/declarative/qdeclarativegridview/qdeclarativegridview.pro +++ b/tests/auto/declarative/qdeclarativegridview/qdeclarativegridview.pro @@ -5,7 +5,14 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativegridview.cpp # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativeimage/qdeclarativeimage.pro b/tests/auto/declarative/qdeclarativeimage/qdeclarativeimage.pro index ff365ee06a..a8b8eca3e9 100644 --- a/tests/auto/declarative/qdeclarativeimage/qdeclarativeimage.pro +++ b/tests/auto/declarative/qdeclarativeimage/qdeclarativeimage.pro @@ -6,7 +6,14 @@ HEADERS += ../shared/testhttpserver.h SOURCES += tst_qdeclarativeimage.cpp ../shared/testhttpserver.cpp # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativeimageprovider/qdeclarativeimageprovider.pro b/tests/auto/declarative/qdeclarativeimageprovider/qdeclarativeimageprovider.pro index 22be991e94..1b828a50bf 100644 --- a/tests/auto/declarative/qdeclarativeimageprovider/qdeclarativeimageprovider.pro +++ b/tests/auto/declarative/qdeclarativeimageprovider/qdeclarativeimageprovider.pro @@ -9,7 +9,14 @@ SOURCES += tst_qdeclarativeimageprovider.cpp # LIBS += -lgcov # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativeinfo/qdeclarativeinfo.pro b/tests/auto/declarative/qdeclarativeinfo/qdeclarativeinfo.pro index bb54d6cde1..c6719c075e 100644 --- a/tests/auto/declarative/qdeclarativeinfo/qdeclarativeinfo.pro +++ b/tests/auto/declarative/qdeclarativeinfo/qdeclarativeinfo.pro @@ -4,7 +4,14 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativeinfo.cpp -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativeinstruction/qdeclarativeinstruction.pro b/tests/auto/declarative/qdeclarativeinstruction/qdeclarativeinstruction.pro index 0daa9e55ee..350f6c64a6 100644 --- a/tests/auto/declarative/qdeclarativeinstruction/qdeclarativeinstruction.pro +++ b/tests/auto/declarative/qdeclarativeinstruction/qdeclarativeinstruction.pro @@ -3,7 +3,11 @@ contains(QT_CONFIG,declarative): QT += declarative script SOURCES += tst_qdeclarativeinstruction.cpp macx:CONFIG -= app_bundle -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativeitem/qdeclarativeitem.pro b/tests/auto/declarative/qdeclarativeitem/qdeclarativeitem.pro index e834a4e5c7..f494ef18db 100644 --- a/tests/auto/declarative/qdeclarativeitem/qdeclarativeitem.pro +++ b/tests/auto/declarative/qdeclarativeitem/qdeclarativeitem.pro @@ -4,7 +4,14 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativeitem.cpp -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativelanguage/qdeclarativelanguage.pro b/tests/auto/declarative/qdeclarativelanguage/qdeclarativelanguage.pro index 5771469126..2b7eb1c758 100644 --- a/tests/auto/declarative/qdeclarativelanguage/qdeclarativelanguage.pro +++ b/tests/auto/declarative/qdeclarativelanguage/qdeclarativelanguage.pro @@ -11,6 +11,13 @@ INCLUDEPATH += ../shared/ HEADERS += ../shared/testhttpserver.h SOURCES += ../shared/testhttpserver.cpp -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\"\"\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativelayoutitem/qdeclarativelayoutitem.pro b/tests/auto/declarative/qdeclarativelayoutitem/qdeclarativelayoutitem.pro index eeb784d2ac..79954fe0fc 100644 --- a/tests/auto/declarative/qdeclarativelayoutitem/qdeclarativelayoutitem.pro +++ b/tests/auto/declarative/qdeclarativelayoutitem/qdeclarativelayoutitem.pro @@ -5,4 +5,11 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativelayoutitem.cpp # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} \ No newline at end of file diff --git a/tests/auto/declarative/qdeclarativelistmodel/qdeclarativelistmodel.pro b/tests/auto/declarative/qdeclarativelistmodel/qdeclarativelistmodel.pro index 9f1e146627..53bb9eca66 100644 --- a/tests/auto/declarative/qdeclarativelistmodel/qdeclarativelistmodel.pro +++ b/tests/auto/declarative/qdeclarativelistmodel/qdeclarativelistmodel.pro @@ -6,7 +6,14 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativelistmodel.cpp # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativelistview/qdeclarativelistview.pro b/tests/auto/declarative/qdeclarativelistview/qdeclarativelistview.pro index 5d962c0b10..b406fde433 100644 --- a/tests/auto/declarative/qdeclarativelistview/qdeclarativelistview.pro +++ b/tests/auto/declarative/qdeclarativelistview/qdeclarativelistview.pro @@ -5,6 +5,13 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativelistview.cpp # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativeloader/qdeclarativeloader.pro b/tests/auto/declarative/qdeclarativeloader/qdeclarativeloader.pro index 96fea5b999..93349283ba 100644 --- a/tests/auto/declarative/qdeclarativeloader/qdeclarativeloader.pro +++ b/tests/auto/declarative/qdeclarativeloader/qdeclarativeloader.pro @@ -7,7 +7,14 @@ HEADERS += ../shared/testhttpserver.h SOURCES += tst_qdeclarativeloader.cpp \ ../shared/testhttpserver.cpp -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativemetatype/qdeclarativemetatype.pro b/tests/auto/declarative/qdeclarativemetatype/qdeclarativemetatype.pro index cf3fa655b1..0d32ab8f69 100644 --- a/tests/auto/declarative/qdeclarativemetatype/qdeclarativemetatype.pro +++ b/tests/auto/declarative/qdeclarativemetatype/qdeclarativemetatype.pro @@ -3,7 +3,11 @@ contains(QT_CONFIG,declarative): QT += declarative SOURCES += tst_qdeclarativemetatype.cpp macx:CONFIG -= app_bundle -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativemoduleplugin/plugin/plugin.pro b/tests/auto/declarative/qdeclarativemoduleplugin/plugin/plugin.pro index fc772250e7..173a3026fb 100644 --- a/tests/auto/declarative/qdeclarativemoduleplugin/plugin/plugin.pro +++ b/tests/auto/declarative/qdeclarativemoduleplugin/plugin/plugin.pro @@ -4,3 +4,6 @@ SOURCES = plugin.cpp QT = core declarative DESTDIR = ../imports/com/nokia/AutoTestQmlPluginType +symbian: { + TARGET.EPOCALLOWDLLDATA=1 +} diff --git a/tests/auto/declarative/qdeclarativemoduleplugin/tst_qdeclarativemoduleplugin.pro b/tests/auto/declarative/qdeclarativemoduleplugin/tst_qdeclarativemoduleplugin.pro index d895ed070c..29a100929f 100644 --- a/tests/auto/declarative/qdeclarativemoduleplugin/tst_qdeclarativemoduleplugin.pro +++ b/tests/auto/declarative/qdeclarativemoduleplugin/tst_qdeclarativemoduleplugin.pro @@ -2,4 +2,11 @@ load(qttest_p4) SOURCES = tst_qdeclarativemoduleplugin.cpp QT += declarative CONFIG -= app_bundle -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} diff --git a/tests/auto/declarative/qdeclarativemousearea/qdeclarativemousearea.pro b/tests/auto/declarative/qdeclarativemousearea/qdeclarativemousearea.pro index 48fe0250b7..6f9c98cd3a 100644 --- a/tests/auto/declarative/qdeclarativemousearea/qdeclarativemousearea.pro +++ b/tests/auto/declarative/qdeclarativemousearea/qdeclarativemousearea.pro @@ -6,7 +6,14 @@ HEADERS += ../shared/testhttpserver.h SOURCES += tst_qdeclarativemousearea.cpp ../shared/testhttpserver.cpp # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativeparticles/qdeclarativeparticles.pro b/tests/auto/declarative/qdeclarativeparticles/qdeclarativeparticles.pro index 8a061c3489..31172a9c47 100644 --- a/tests/auto/declarative/qdeclarativeparticles/qdeclarativeparticles.pro +++ b/tests/auto/declarative/qdeclarativeparticles/qdeclarativeparticles.pro @@ -5,7 +5,14 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativeparticles.cpp # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativepathview/qdeclarativepathview.pro b/tests/auto/declarative/qdeclarativepathview/qdeclarativepathview.pro index 3c327d5353..6bef61c152 100644 --- a/tests/auto/declarative/qdeclarativepathview/qdeclarativepathview.pro +++ b/tests/auto/declarative/qdeclarativepathview/qdeclarativepathview.pro @@ -5,7 +5,14 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativepathview.cpp # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativepixmapcache/qdeclarativepixmapcache.pro b/tests/auto/declarative/qdeclarativepixmapcache/qdeclarativepixmapcache.pro index 4b247fc2d3..99a94bc7a6 100644 --- a/tests/auto/declarative/qdeclarativepixmapcache/qdeclarativepixmapcache.pro +++ b/tests/auto/declarative/qdeclarativepixmapcache/qdeclarativepixmapcache.pro @@ -9,7 +9,14 @@ INCLUDEPATH += ../shared/ HEADERS += ../shared/testhttpserver.h SOURCES += ../shared/testhttpserver.cpp -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} # QMAKE_CXXFLAGS = -fprofile-arcs -ftest-coverage # LIBS += -lgcov diff --git a/tests/auto/declarative/qdeclarativepositioners/qdeclarativepositioners.pro b/tests/auto/declarative/qdeclarativepositioners/qdeclarativepositioners.pro index dbe2cbeec0..2c5b473fb9 100644 --- a/tests/auto/declarative/qdeclarativepositioners/qdeclarativepositioners.pro +++ b/tests/auto/declarative/qdeclarativepositioners/qdeclarativepositioners.pro @@ -4,7 +4,14 @@ SOURCES += tst_qdeclarativepositioners.cpp macx:CONFIG -= app_bundle # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativeproperty/qdeclarativeproperty.pro b/tests/auto/declarative/qdeclarativeproperty/qdeclarativeproperty.pro index 6910ccca9e..f37d952702 100644 --- a/tests/auto/declarative/qdeclarativeproperty/qdeclarativeproperty.pro +++ b/tests/auto/declarative/qdeclarativeproperty/qdeclarativeproperty.pro @@ -4,7 +4,14 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativeproperty.cpp -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativeqt/qdeclarativeqt.pro b/tests/auto/declarative/qdeclarativeqt/qdeclarativeqt.pro index 10e10a351a..b381a9bce2 100644 --- a/tests/auto/declarative/qdeclarativeqt/qdeclarativeqt.pro +++ b/tests/auto/declarative/qdeclarativeqt/qdeclarativeqt.pro @@ -3,7 +3,14 @@ contains(QT_CONFIG,declarative): QT += declarative SOURCES += tst_qdeclarativeqt.cpp macx:CONFIG -= app_bundle -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} # QMAKE_CXXFLAGS = -fprofile-arcs -ftest-coverage # LIBS += -lgcov diff --git a/tests/auto/declarative/qdeclarativerepeater/qdeclarativerepeater.pro b/tests/auto/declarative/qdeclarativerepeater/qdeclarativerepeater.pro index abd36e0fc8..51667afcca 100644 --- a/tests/auto/declarative/qdeclarativerepeater/qdeclarativerepeater.pro +++ b/tests/auto/declarative/qdeclarativerepeater/qdeclarativerepeater.pro @@ -5,6 +5,13 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativerepeater.cpp # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativesmoothedanimation/qdeclarativesmoothedanimation.pro b/tests/auto/declarative/qdeclarativesmoothedanimation/qdeclarativesmoothedanimation.pro index 80b757ddae..6b98f1e620 100644 --- a/tests/auto/declarative/qdeclarativesmoothedanimation/qdeclarativesmoothedanimation.pro +++ b/tests/auto/declarative/qdeclarativesmoothedanimation/qdeclarativesmoothedanimation.pro @@ -5,7 +5,14 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativesmoothedanimation.cpp # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativesmoothedfollow/qdeclarativesmoothedfollow.pro b/tests/auto/declarative/qdeclarativesmoothedfollow/qdeclarativesmoothedfollow.pro index 7f737c2b4b..eb7d793a54 100644 --- a/tests/auto/declarative/qdeclarativesmoothedfollow/qdeclarativesmoothedfollow.pro +++ b/tests/auto/declarative/qdeclarativesmoothedfollow/qdeclarativesmoothedfollow.pro @@ -5,7 +5,14 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativesmoothedfollow.cpp # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativespringfollow/qdeclarativespringfollow.pro b/tests/auto/declarative/qdeclarativespringfollow/qdeclarativespringfollow.pro index 6f400a325e..6ed8924e2c 100644 --- a/tests/auto/declarative/qdeclarativespringfollow/qdeclarativespringfollow.pro +++ b/tests/auto/declarative/qdeclarativespringfollow/qdeclarativespringfollow.pro @@ -5,7 +5,14 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativespringfollow.cpp # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativesqldatabase/qdeclarativesqldatabase.pro b/tests/auto/declarative/qdeclarativesqldatabase/qdeclarativesqldatabase.pro index 3ff4529064..9cdb8846b3 100644 --- a/tests/auto/declarative/qdeclarativesqldatabase/qdeclarativesqldatabase.pro +++ b/tests/auto/declarative/qdeclarativesqldatabase/qdeclarativesqldatabase.pro @@ -6,7 +6,14 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativesqldatabase.cpp # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativestates/qdeclarativestates.pro b/tests/auto/declarative/qdeclarativestates/qdeclarativestates.pro index 706d04583c..6f4ecb3705 100644 --- a/tests/auto/declarative/qdeclarativestates/qdeclarativestates.pro +++ b/tests/auto/declarative/qdeclarativestates/qdeclarativestates.pro @@ -5,6 +5,13 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativestates.cpp # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativesystempalette/qdeclarativesystempalette.pro b/tests/auto/declarative/qdeclarativesystempalette/qdeclarativesystempalette.pro index b2705fa935..786bc1bb11 100644 --- a/tests/auto/declarative/qdeclarativesystempalette/qdeclarativesystempalette.pro +++ b/tests/auto/declarative/qdeclarativesystempalette/qdeclarativesystempalette.pro @@ -4,5 +4,12 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativesystempalette.cpp +# Define SRCDIR equal to test's source directory +symbian: { + DEFINES += SRCDIR=\".\" +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} + CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativetext/qdeclarativetext.pro b/tests/auto/declarative/qdeclarativetext/qdeclarativetext.pro index e70443e5d8..51c7f4385f 100644 --- a/tests/auto/declarative/qdeclarativetext/qdeclarativetext.pro +++ b/tests/auto/declarative/qdeclarativetext/qdeclarativetext.pro @@ -9,7 +9,14 @@ INCLUDEPATH += ../shared/ HEADERS += ../shared/testhttpserver.h SOURCES += ../shared/testhttpserver.cpp -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativetextedit/qdeclarativetextedit.pro b/tests/auto/declarative/qdeclarativetextedit/qdeclarativetextedit.pro index 2228f11deb..2adb2b849f 100644 --- a/tests/auto/declarative/qdeclarativetextedit/qdeclarativetextedit.pro +++ b/tests/auto/declarative/qdeclarativetextedit/qdeclarativetextedit.pro @@ -6,4 +6,11 @@ SOURCES += tst_qdeclarativetextedit.cpp ../shared/testhttpserver.cpp HEADERS += ../shared/testhttpserver.h # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} diff --git a/tests/auto/declarative/qdeclarativetextinput/qdeclarativetextinput.pro b/tests/auto/declarative/qdeclarativetextinput/qdeclarativetextinput.pro index 957e75c5a8..2953567cfe 100644 --- a/tests/auto/declarative/qdeclarativetextinput/qdeclarativetextinput.pro +++ b/tests/auto/declarative/qdeclarativetextinput/qdeclarativetextinput.pro @@ -5,5 +5,12 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativetextinput.cpp # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} diff --git a/tests/auto/declarative/qdeclarativetimer/qdeclarativetimer.pro b/tests/auto/declarative/qdeclarativetimer/qdeclarativetimer.pro index 42604d8aad..d95165ca22 100644 --- a/tests/auto/declarative/qdeclarativetimer/qdeclarativetimer.pro +++ b/tests/auto/declarative/qdeclarativetimer/qdeclarativetimer.pro @@ -4,6 +4,10 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativetimer.cpp -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativevaluetypes/qdeclarativevaluetypes.pro b/tests/auto/declarative/qdeclarativevaluetypes/qdeclarativevaluetypes.pro index d9f1c131be..02c480cc67 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/qdeclarativevaluetypes.pro +++ b/tests/auto/declarative/qdeclarativevaluetypes/qdeclarativevaluetypes.pro @@ -7,7 +7,14 @@ HEADERS += testtypes.h SOURCES += tst_qdeclarativevaluetypes.cpp \ testtypes.cpp -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativeview/qdeclarativeview.pro b/tests/auto/declarative/qdeclarativeview/qdeclarativeview.pro index d6be7289cd..ad54713cd1 100644 --- a/tests/auto/declarative/qdeclarativeview/qdeclarativeview.pro +++ b/tests/auto/declarative/qdeclarativeview/qdeclarativeview.pro @@ -4,4 +4,11 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativeview.cpp -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} diff --git a/tests/auto/declarative/qdeclarativeviewer/qdeclarativeviewer.pro b/tests/auto/declarative/qdeclarativeviewer/qdeclarativeviewer.pro index dc10f5be58..9bb61619dc 100644 --- a/tests/auto/declarative/qdeclarativeviewer/qdeclarativeviewer.pro +++ b/tests/auto/declarative/qdeclarativeviewer/qdeclarativeviewer.pro @@ -6,6 +6,13 @@ include(../../../../tools/qml/qml.pri) SOURCES += tst_qdeclarativeviewer.cpp -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativevisualdatamodel/qdeclarativevisualdatamodel.pro b/tests/auto/declarative/qdeclarativevisualdatamodel/qdeclarativevisualdatamodel.pro index d76b582742..c87171bc85 100644 --- a/tests/auto/declarative/qdeclarativevisualdatamodel/qdeclarativevisualdatamodel.pro +++ b/tests/auto/declarative/qdeclarativevisualdatamodel/qdeclarativevisualdatamodel.pro @@ -4,8 +4,14 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativevisualdatamodel.cpp -# Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativewebview/qdeclarativewebview.pro b/tests/auto/declarative/qdeclarativewebview/qdeclarativewebview.pro index 956272fdc2..8caa393b4f 100644 --- a/tests/auto/declarative/qdeclarativewebview/qdeclarativewebview.pro +++ b/tests/auto/declarative/qdeclarativewebview/qdeclarativewebview.pro @@ -6,6 +6,13 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativewebview.cpp # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativeworkerscript/qdeclarativeworkerscript.pro b/tests/auto/declarative/qdeclarativeworkerscript/qdeclarativeworkerscript.pro index 2e3da4d550..36b3449f96 100644 --- a/tests/auto/declarative/qdeclarativeworkerscript/qdeclarativeworkerscript.pro +++ b/tests/auto/declarative/qdeclarativeworkerscript/qdeclarativeworkerscript.pro @@ -5,7 +5,14 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativeworkerscript.cpp # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/qdeclarativexmlhttprequest.pro b/tests/auto/declarative/qdeclarativexmlhttprequest/qdeclarativexmlhttprequest.pro index 160300e5ee..b54f670491 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/qdeclarativexmlhttprequest.pro +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/qdeclarativexmlhttprequest.pro @@ -8,9 +8,15 @@ HEADERS += ../shared/testhttpserver.h SOURCES += tst_qdeclarativexmlhttprequest.cpp \ ../shared/testhttpserver.cpp - # Define SRCDIR equal to test's source directory -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativexmllistmodel/qdeclarativexmllistmodel.pro b/tests/auto/declarative/qdeclarativexmllistmodel/qdeclarativexmllistmodel.pro index 8c5052a18e..1bf1c58ab2 100644 --- a/tests/auto/declarative/qdeclarativexmllistmodel/qdeclarativexmllistmodel.pro +++ b/tests/auto/declarative/qdeclarativexmllistmodel/qdeclarativexmllistmodel.pro @@ -8,7 +8,14 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativexmllistmodel.cpp -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qmlvisual/qmlvisual.pro b/tests/auto/declarative/qmlvisual/qmlvisual.pro index a3abbe3a99..dca9b04c32 100644 --- a/tests/auto/declarative/qmlvisual/qmlvisual.pro +++ b/tests/auto/declarative/qmlvisual/qmlvisual.pro @@ -4,7 +4,34 @@ macx:CONFIG -= app_bundle SOURCES += tst_qmlvisual.cpp -DEFINES += QT_TEST_SOURCE_DIR=\"\\\"$$PWD\\\"\" +symbian: { + importFiles.path = + importFiles.sources = animation \ + fillmode \ + focusscope \ + ListView \ + qdeclarativeborderimage \ + qdeclarativeflickable \ + qdeclarativeflipable \ + qdeclarativegridview \ + qdeclarativemousearea \ + qdeclarativeparticles \ + qdeclarativepathview \ + qdeclarativepositioners \ + qdeclarativesmoothedanimation \ + qdeclarativespringfollow \ + qdeclarativetext \ + qdeclarativetextedit \ + qdeclarativetextinput \ + rect \ + repeater \ + selftest_noimages \ + webview + DEPLOYMENT = importFiles + + DEFINES += QT_TEST_SOURCE_DIR=\".\" +} else { + DEFINES += QT_TEST_SOURCE_DIR=\"\\\"$$PWD\\\"\" +} CONFIG += parallel_test - diff --git a/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp b/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp index 0f33a0742f..4aad29be60 100644 --- a/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp +++ b/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp @@ -82,7 +82,7 @@ QString tst_qmlvisual::viewer() #if defined(Q_WS_MAC) qmlruntime = QDir(binaries).absoluteFilePath("qml.app/Contents/MacOS/qml"); -#elif defined(Q_WS_WIN) +#elif defined(Q_WS_WIN) || defined(Q_WS_S60) qmlruntime = QDir(binaries).absoluteFilePath("qml.exe"); #else qmlruntime = QDir(binaries).absoluteFilePath("qml"); diff --git a/tests/auto/declarative/qpacketprotocol/tst_qpacketprotocol.cpp b/tests/auto/declarative/qpacketprotocol/tst_qpacketprotocol.cpp index b8e317e060..7d346985da 100644 --- a/tests/auto/declarative/qpacketprotocol/tst_qpacketprotocol.cpp +++ b/tests/auto/declarative/qpacketprotocol/tst_qpacketprotocol.cpp @@ -225,7 +225,7 @@ void tst_QPacketProtocol::read() void tst_QPacketProtocol::device() { QPacketProtocol p(m_client); - QCOMPARE(p.device(), m_client); + QVERIFY(p.device() == m_client); } void tst_QPacketProtocol::tst_QPacket_clear() -- cgit v1.2.1 From dc2e494acbd0a8e371c9fd92aef2da6975c5cccb Mon Sep 17 00:00:00 2001 From: Rohan McGovern Date: Fri, 14 May 2010 10:52:36 +1000 Subject: Fixed race condition compiling xmlpatterns tests. tests/auto/xmlpatterns.pro was missing some dependency information. --- tests/auto/xmlpatterns.pro | 1 + 1 file changed, 1 insertion(+) (limited to 'tests/auto') diff --git a/tests/auto/xmlpatterns.pro b/tests/auto/xmlpatterns.pro index f670266d51..c770934677 100644 --- a/tests/auto/xmlpatterns.pro +++ b/tests/auto/xmlpatterns.pro @@ -36,6 +36,7 @@ SUBDIRS=\ xmlpatternsdiagnosticsts.depends = xmlpatternssdk xmlpatternsview.depends = xmlpatternssdk xmlpatternsxslts.depends = xmlpatternssdk +xmlpatternsxqts.depends = xmlpatternssdk xmlpatternsschemats.depends = xmlpatternssdk !contains(QT_CONFIG, private_tests): SUBDIRS -= \ -- cgit v1.2.1 From 08b6114240a6c02dbeb0297d0deeb538ebc3fde9 Mon Sep 17 00:00:00 2001 From: Aaron McCarthy Date: Thu, 13 May 2010 10:16:48 +1000 Subject: Cherry pick fix for MOBILITY-828 from Qt Mobility. Change e5f8e3069d0de428a751e8a1dd88f3585f2d3f5f from Qt Mobility. --- tests/auto/qnetworksession/lackey/main.cpp | 24 +- .../qnetworksession/test/tst_qnetworksession.cpp | 361 +++++++++++++-------- 2 files changed, 242 insertions(+), 143 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qnetworksession/lackey/main.cpp b/tests/auto/qnetworksession/lackey/main.cpp index 8759b52007..ec2fad9e17 100644 --- a/tests/auto/qnetworksession/lackey/main.cpp +++ b/tests/auto/qnetworksession/lackey/main.cpp @@ -47,6 +47,8 @@ #include #include +#include +#include #include QT_USE_NAMESPACE @@ -60,15 +62,14 @@ int main(int argc, char** argv) { QCoreApplication app(argc, argv); - // Cannot read/write to processes on WinCE or Symbian. - // Easiest alternative is to use sockets for IPC. - - QLocalSocket oopSocket; - - oopSocket.connectToServer("tst_qnetworksession"); - oopSocket.waitForConnected(-1); - + // Update configurations so that everything is up to date for this process too. + // Event loop is used to wait for awhile. QNetworkConfigurationManager manager; + manager.updateConfigurations(); + QEventLoop iIgnoreEventLoop; + QTimer::singleShot(3000, &iIgnoreEventLoop, SLOT(quit())); + iIgnoreEventLoop.exec(); + QList discovered = manager.allConfigurations(QNetworkConfiguration::Discovered); @@ -82,6 +83,13 @@ int main(int argc, char** argv) return NO_DISCOVERED_CONFIGURATIONS_ERROR; } + // Cannot read/write to processes on WinCE or Symbian. + // Easiest alternative is to use sockets for IPC. + QLocalSocket oopSocket; + + oopSocket.connectToServer("tst_qnetworksession"); + oopSocket.waitForConnected(-1); + qDebug() << "Lackey started"; QNetworkSession *session = 0; diff --git a/tests/auto/qnetworksession/test/tst_qnetworksession.cpp b/tests/auto/qnetworksession/test/tst_qnetworksession.cpp index 23cdc6ab9d..8ab9da22f3 100644 --- a/tests/auto/qnetworksession/test/tst_qnetworksession.cpp +++ b/tests/auto/qnetworksession/test/tst_qnetworksession.cpp @@ -100,6 +100,7 @@ private slots: private: QNetworkConfigurationManager manager; + QMap testsToRun; int inProcessSessionManagementCount; @@ -117,6 +118,7 @@ private: bool openSession(QNetworkSession *session); bool closeSession(QNetworkSession *session, bool lastSessionOnConfiguration = true); void updateConfigurations(); +void printConfigurations(); QNetworkConfiguration suitableConfiguration(QString bearerType, QNetworkConfiguration::Type configType); void tst_QNetworkSession::initTestCase() @@ -125,7 +127,19 @@ void tst_QNetworkSession::initTestCase() qRegisterMetaType("QNetworkSession::SessionError"); qRegisterMetaType("QNetworkConfiguration"); qRegisterMetaType("QNetworkConfiguration::Type"); - + + // If you wish to skip tests, set value as false. This is often very convinient because tests are so lengthy. + // Better way still would be to make this readable from a file. + testsToRun["robustnessBombing"] = true; + testsToRun["outOfProcessSession"] = true; + testsToRun["invalidSession"] = true; + testsToRun["repeatedOpenClose"] = true; + testsToRun["roamingErrorCodes"] = true; + testsToRun["sessionStop"] = true; + testsToRun["sessionProperties"] = true; + testsToRun["userChoiceSession"] = true; + testsToRun["sessionOpenCloseStop"] = true; + #if defined(Q_WS_MAEMO_6) || defined(Q_WS_MAEMO_5) iapconf = new Maemo::IAPConf("007"); iapconf->setValue("ipv4_type", "AUTO"); @@ -238,6 +252,10 @@ void tst_QNetworkSession::cleanupTestCase() // Robustness test for calling interfaces in nonsense order / with nonsense parameters void tst_QNetworkSession::robustnessBombing() { + if (!testsToRun["robustnessBombing"]) { + QSKIP("Temporary skip due to value set false (or it is missing) in testsToRun map", SkipAll); + } + QNetworkConfigurationManager mgr; QNetworkSession testSession(mgr.defaultConfiguration()); // Should not reset even session is not opened @@ -253,7 +271,10 @@ void tst_QNetworkSession::robustnessBombing() void tst_QNetworkSession::invalidSession() -{ +{ + if (!testsToRun["invalidSession"]) { + QSKIP("Temporary skip due to value set false (or it is missing) in testsToRun map", SkipAll); + } // 1. Verify that session created with invalid configuration remains in invalid state QNetworkSession session(QNetworkConfiguration(), 0); QVERIFY(!session.isOpen()); @@ -270,11 +291,24 @@ void tst_QNetworkSession::invalidSession() QVERIFY(error == QNetworkSession::InvalidConfigurationError); QVERIFY(session.error() == QNetworkSession::InvalidConfigurationError); QVERIFY(session.state() == QNetworkSession::Invalid); - + #ifdef QNETWORKSESSION_MANUAL_TESTS + + QNetworkConfiguration invalidatedConfig = suitableConfiguration("WLAN",QNetworkConfiguration::InternetAccessPoint); + if (invalidatedConfig.isValid()) { + // 3. Verify that invalidating a session after its successfully configured works + QNetworkSession invalidatedSession(invalidatedConfig); + qDebug() << "Delete the WLAN IAP from phone now (waiting 60 seconds): " << invalidatedConfig.name(); + QTest::qWait(60000); + QVERIFY(!invalidatedConfig.isValid()); + QVERIFY(invalidatedSession.state() == QNetworkSession::Invalid); + qDebug() << "Add the WLAN IAP back (waiting 60 seconds): " << invalidatedConfig.name(); + QTest::qWait(60000); + } + QNetworkConfiguration definedConfig = suitableConfiguration("WLAN",QNetworkConfiguration::InternetAccessPoint); if (definedConfig.isValid()) { - // 3. Verify that opening a session with defined configuration emits error and enters notavailable-state + // 4. Verify that opening a session with defined configuration emits error and enters notavailable-state // TODO these timer waits should be changed to waiting appropriate signals, now these wait excessively qDebug() << "Shutdown WLAN IAP (waiting 60 seconds): " << definedConfig.name(); QTest::qWait(60000); @@ -283,43 +317,27 @@ void tst_QNetworkSession::invalidSession() QNetworkSession definedSession(definedConfig); QSignalSpy errorSpy(&definedSession, SIGNAL(error(QNetworkSession::SessionError))); QNetworkSession::SessionError sessionError; + updateConfigurations(); definedSession.open(); +#ifdef Q_OS_SYMBIAN + // On symbian, the connection opening is tried even with defined state. + qDebug("Waiting for 10 seconds to all signals to propagate."); + QTest::qWait(10000); +#endif + updateConfigurations(); QVERIFY(definedConfig.isValid()); // Session remains valid QVERIFY(definedSession.state() == QNetworkSession::NotAvailable); // State is not available because WLAN is not in coverage QVERIFY(!errorSpy.isEmpty()); // Session tells with error about invalidated configuration sessionError = qvariant_cast (errorSpy.first().at(0)); - qDebug() << "Error code is: " << sessionError; QVERIFY(sessionError == QNetworkSession::InvalidConfigurationError); - qDebug() << "Turn the WLAN IAP back on (waiting 60 seconds): " << definedConfig.name(); QTest::qWait(60000); - updateConfigurations(); - + updateConfigurations(); QVERIFY(definedConfig.state() == QNetworkConfiguration::Discovered); } - - QNetworkConfiguration invalidatedConfig = suitableConfiguration("WLAN",QNetworkConfiguration::InternetAccessPoint); - if (invalidatedConfig.isValid()) { - // 4. Verify that invalidating a session after its successfully configured works - QNetworkSession invalidatedSession(invalidatedConfig); - QSignalSpy errorSpy(&invalidatedSession, SIGNAL(error(QNetworkSession::SessionError))); - QNetworkSession::SessionError sessionError; - - qDebug() << "Delete the WLAN IAP from phone now (waiting 60 seconds): " << invalidatedConfig.name(); - QTest::qWait(60000); - - invalidatedSession.open(); - QVERIFY(!invalidatedConfig.isValid()); - QVERIFY(invalidatedSession.state() == QNetworkSession::Invalid); - QVERIFY(!errorSpy.isEmpty()); - - sessionError = qvariant_cast (errorSpy.first().at(0)); - QVERIFY(sessionError == QNetworkSession::InvalidConfigurationError); - qDebug() << "Add the WLAN IAP back (waiting 60 seconds): " << invalidatedConfig.name(); - QTest::qWait(60000); - } + #endif } @@ -337,12 +355,12 @@ void tst_QNetworkSession::sessionProperties_data() void tst_QNetworkSession::sessionProperties() { + if (!testsToRun["sessionProperties"]) { + QSKIP("Temporary skip due to value set false (or it is missing) in testsToRun map", SkipAll); + } QFETCH(QNetworkConfiguration, configuration); - QNetworkSession session(configuration); - QVERIFY(session.configuration() == configuration); - QStringList validBearerNames = QStringList() << QLatin1String("Unknown") << QLatin1String("Ethernet") << QLatin1String("WLAN") @@ -356,9 +374,6 @@ void tst_QNetworkSession::sessionProperties() if (!configuration.isValid()) { QVERIFY(configuration.bearerName().isEmpty()); } else { - qDebug() << "Type:" << configuration.type() - << "Bearer:" << configuration.bearerName(); - switch (configuration.type()) { case QNetworkConfiguration::ServiceNetwork: @@ -374,9 +389,7 @@ void tst_QNetworkSession::sessionProperties() // QNetworkSession::interface() should return an invalid interface unless // session is in the connected state. - qDebug() << "Session state:" << session.state(); #ifndef QT_NO_NETWORKINTERFACE - qDebug() << "Session iface:" << session.interface().isValid() << session.interface().name(); #if !(defined(Q_OS_SYMBIAN) && defined(__WINS__)) // On Symbian emulator, the support for data bearers is limited QCOMPARE(session.state() == QNetworkSession::Connected, session.interface().isValid()); @@ -420,7 +433,12 @@ void tst_QNetworkSession::repeatedOpenClose_data() { } // Tests repeated-open close. -void tst_QNetworkSession::repeatedOpenClose() { +void tst_QNetworkSession::repeatedOpenClose() +{ + if (!testsToRun["repeatedOpenClose"]) { + QSKIP("Temporary skip due to value set false (or it is missing) in testsToRun map", SkipAll); + } + QFETCH(QString, bearerType); QFETCH(QNetworkConfiguration::Type, configurationType); QFETCH(int, repeatTimes); @@ -436,13 +454,20 @@ void tst_QNetworkSession::repeatedOpenClose() { !closeSession(&permanentSession)) { QSKIP("Unable to open/close session, skipping this round of repeated open-close test.", SkipSingle); } - for (int i = repeatTimes; i > 0; i--) { + for (int i = 0; i < repeatTimes; i++) { + qDebug() << "Opening, loop number " << i; QVERIFY(openSession(&permanentSession)); + qDebug() << "Closing, loop number, then waiting 5 seconds: " << i; QVERIFY(closeSession(&permanentSession)); + QTest::qWait(5000); } } -void tst_QNetworkSession::roamingErrorCodes() { +void tst_QNetworkSession::roamingErrorCodes() +{ + if (!testsToRun["roamingErrorCodes"]) { + QSKIP("Temporary skip due to value set false (or it is missing) in testsToRun map", SkipAll); + } #ifndef Q_OS_SYMBIAN QSKIP("Roaming supported on Symbian.", SkipAll); #else @@ -466,41 +491,11 @@ void tst_QNetworkSession::roamingErrorCodes() { adminIapSession.stop(); // requires NetworkControl capabilities QTRY_VERIFY(!errorSpy.isEmpty()); // wait for error signals QNetworkSession::SessionError error = qvariant_cast(errorSpy.first().at(0)); + QTest::qWait(2000); // Wait for a moment to all platform signals to propagate QVERIFY(error == QNetworkSession::SessionAbortedError); QVERIFY(iapSession.state() == QNetworkSession::Disconnected); QVERIFY(adminIapSession.state() == QNetworkSession::Disconnected); #endif // Q_OS_SYMBIAN - -#ifdef QNETWORKSESSION_MANUAL_TESTS - // Check for roaming error. - // Case requires that you have controllable WLAN in Internet SNAP (only). - QNetworkConfiguration snapConfig = suitableConfiguration("bearer_not_relevant_with_snaps", QNetworkConfiguration::ServiceNetwork); - if (!snapConfig.isValid()) { - QSKIP("No SNAP accessible, skipping test.", SkipAll); - } - QNetworkSession snapSession(snapConfig); - QVERIFY(openSession(&snapSession)); - QSignalSpy errorSpySnap(&snapSession, SIGNAL(error(QNetworkSession::SessionError))); - qDebug("Disconnect the WLAN now"); - QTRY_VERIFY(!errorSpySnap.isEmpty()); // wait for error signals - QVERIFY(errorSpySnap.count() == 1); - error = qvariant_cast(errorSpySnap.first().at(0)); - qDebug() << "Error received when turning off wlan on SNAP: " << error; - QVERIFY(error == QNetworkSession::RoamingError); - - qDebug("Connect the WLAN now"); - QTest::qWait(60000); // Wait for WLAN to get up - QNetworkConfiguration wlanIapConfig2 = suitableConfiguration("WLAN", QNetworkConfiguration::InternetAccessPoint); - QNetworkSession iapSession2(wlanIapConfig2); - QVERIFY(openSession(&iapSession2)); - QSignalSpy errorSpy2(&iapSession2, SIGNAL(error(QNetworkSession::SessionError))); - qDebug("Disconnect the WLAN now"); - QTRY_VERIFY(!errorSpy2.isEmpty()); // wait for error signals - QVERIFY(errorSpy2.count() == 1); - error = qvariant_cast(errorSpy2.first().at(0)); - QVERIFY(error == QNetworkSession::SessionAbortedError); - QVERIFY(iapSession2.state() == QNetworkSession::Disconnected); -#endif } @@ -515,6 +510,9 @@ void tst_QNetworkSession::sessionStop_data() { void tst_QNetworkSession::sessionStop() { + if (!testsToRun["sessionStop"]) { + QSKIP("Temporary skip due to value set false (or it is missing) in testsToRun map", SkipAll); + } #ifndef Q_OS_SYMBIAN QSKIP("Testcase contains mainly Symbian specific checks, because it is only platform to really support interface (IAP-level) Stop.", SkipAll); #endif @@ -522,6 +520,9 @@ void tst_QNetworkSession::sessionStop() QFETCH(QNetworkConfiguration::Type, configurationType); int configWaitdelayInMs = 2000; + + updateConfigurations(); + printConfigurations(); QNetworkConfiguration config = suitableConfiguration(bearerType, configurationType); if (!config.isValid()) { @@ -539,6 +540,9 @@ void tst_QNetworkSession::sessionStop() QSignalSpy closedSessionStateChangedSpy(&closedSession, SIGNAL(stateChanged(QNetworkSession::State))); QSignalSpy closedErrorSpy(&closedSession, SIGNAL(error(QNetworkSession::SessionError))); + QSignalSpy openedSessionClosedSpy(&openedSession, SIGNAL(closed())); + QSignalSpy openedSessionStateChangedSpy(&openedSession, SIGNAL(stateChanged(QNetworkSession::State))); + QSignalSpy innocentSessionClosedSpy(&innocentSession, SIGNAL(closed())); QSignalSpy innocentSessionStateChangedSpy(&innocentSession, SIGNAL(stateChanged(QNetworkSession::State))); QSignalSpy innocentErrorSpy(&innocentSession, SIGNAL(error(QNetworkSession::SessionError))); @@ -554,10 +558,18 @@ void tst_QNetworkSession::sessionStop() closedSessionClosedSpy.clear(); closedSessionStateChangedSpy.clear(); closedErrorSpy.clear(); + openedSessionStateChangedSpy.clear(); + openedSessionClosedSpy.clear(); + openedSession.stop(); - QVERIFY(openedSession.state() == QNetworkSession::Disconnected); + qDebug("Waiting for %d ms to get all configurationChange signals from platform.", configWaitdelayInMs); QTest::qWait(configWaitdelayInMs); // Wait to get all relevant configurationChange() signals + + // First to closing, then to disconnected + QVERIFY(openedSessionStateChangedSpy.count() == 2); + QVERIFY(!openedSessionClosedSpy.isEmpty()); + QVERIFY(openedSession.state() == QNetworkSession::Disconnected); QVERIFY(config.state() != QNetworkConfiguration::Active); // 2. Verify that stopping a session based on non-connected configuration does nothing @@ -583,18 +595,20 @@ void tst_QNetworkSession::sessionStop() // 3. Check that stopping a opened session affects also other opened session based on the same configuration. if (config.type() == QNetworkConfiguration::InternetAccessPoint) { qDebug("----------3. Check that stopping a opened session affects also other opened session based on the same configuration."); + QVERIFY(openSession(&openedSession)); QVERIFY(openSession(&innocentSession)); - + configChangeSpy.clear(); innocentSessionClosedSpy.clear(); innocentSessionStateChangedSpy.clear(); innocentErrorSpy.clear(); - + openedSession.stop(); qDebug("Waiting for %d ms to get all configurationChange signals from platform.", configWaitdelayInMs); QTest::qWait(configWaitdelayInMs); // Wait to get all relevant configurationChange() signals - + QTest::qWait(configWaitdelayInMs); // Wait to get all relevant configurationChange() signals + QVERIFY(!innocentSessionClosedSpy.isEmpty()); QVERIFY(!innocentSessionStateChangedSpy.isEmpty()); QVERIFY(!innocentErrorSpy.isEmpty()); @@ -614,14 +628,19 @@ void tst_QNetworkSession::sessionStop() if (config.type() == QNetworkConfiguration::ServiceNetwork) { qDebug("----------4. Skip for SNAP configuration."); } else if (config.type() == QNetworkConfiguration::InternetAccessPoint) { - qDebug("----------4. Check that stopping a non-opened session stops the other session based on the same configuration"); - QVERIFY(openSession(&innocentSession)); + qDebug("----------4. Check that stopping a non-opened session stops the other session based on the same configuration"); + qDebug("----------4.1 Opening innocent session"); + QVERIFY(openSession(&innocentSession)); qDebug("Waiting for %d ms after open to make sure all platform indications are propagated", configWaitdelayInMs); QTest::qWait(configWaitdelayInMs); + qDebug("----------4.2 Calling closedSession.stop()"); closedSession.stop(); qDebug("Waiting for %d ms to get all configurationChange signals from platform..", configWaitdelayInMs); QTest::qWait(configWaitdelayInMs); // Wait to get all relevant configurationChange() signals + QTest::qWait(configWaitdelayInMs); + QTest::qWait(configWaitdelayInMs); + QVERIFY(!innocentSessionClosedSpy.isEmpty()); QVERIFY(!innocentSessionStateChangedSpy.isEmpty()); QVERIFY(!innocentErrorSpy.isEmpty()); @@ -653,6 +672,9 @@ void tst_QNetworkSession::userChoiceSession_data() void tst_QNetworkSession::userChoiceSession() { + if (!testsToRun["userChoiceSession"]) { + QSKIP("Temporary skip due to value set false (or it is missing) in testsToRun map", SkipAll); + } QFETCH(QNetworkConfiguration, configuration); QVERIFY(configuration.type() == QNetworkConfiguration::UserChoice); @@ -786,6 +808,9 @@ void tst_QNetworkSession::sessionOpenCloseStop_data() void tst_QNetworkSession::sessionOpenCloseStop() { + if (!testsToRun["sessionOpenCloseStop"]) { + QSKIP("Temporary skip due to value set false (or it is missing) in testsToRun map", SkipAll); + } QFETCH(QNetworkConfiguration, configuration); QFETCH(bool, forceSessionStop); @@ -894,26 +919,30 @@ void tst_QNetworkSession::sessionOpenCloseStop() QVERIFY(session.error() == QNetworkSession::UnknownSessionError); session2.open(); - + QTRY_VERIFY(!sessionOpenedSpy2.isEmpty() || !errorSpy2.isEmpty()); + if (errorSpy2.isEmpty()) { + QVERIFY(session2.isOpen()); + QVERIFY(session2.state() == QNetworkSession::Connected); + } QVERIFY(session.isOpen()); - QVERIFY(session2.isOpen()); QVERIFY(session.state() == QNetworkSession::Connected); - QVERIFY(session2.state() == QNetworkSession::Connected); #ifndef QT_NO_NETWORKINTERFACE #if !(defined(Q_OS_SYMBIAN) && defined(__WINS__)) // On Symbian emulator, the support for data bearers is limited QVERIFY(session.interface().isValid()); #endif - QCOMPARE(session.interface().hardwareAddress(), session2.interface().hardwareAddress()); - QCOMPARE(session.interface().index(), session2.interface().index()); + if (errorSpy2.isEmpty()) { + QCOMPARE(session.interface().hardwareAddress(), session2.interface().hardwareAddress()); + QCOMPARE(session.interface().index(), session2.interface().index()); + } #endif } sessionOpenedSpy2.clear(); - if (forceSessionStop) { + if (forceSessionStop && session2.isOpen()) { // Test forcing the second session to stop the interface. QNetworkSession::State previousState = session.state(); #ifdef Q_CC_NOKIAX86 @@ -922,15 +951,17 @@ void tst_QNetworkSession::sessionOpenCloseStop() #else bool expectStateChange = previousState != QNetworkSession::Disconnected; #endif - session2.stop(); + // QNetworkSession::stop() must result either closed() signal + // or error() signal QTRY_VERIFY(!sessionClosedSpy2.isEmpty() || !errorSpy2.isEmpty()); - QVERIFY(!session2.isOpen()); if (!errorSpy2.isEmpty()) { - QVERIFY(!errorSpy.isEmpty()); + // QNetworkSession::stop() resulted error() signal for session2 + // => also session should emit error() signal + QTRY_VERIFY(!errorSpy.isEmpty()); // check for SessionAbortedError QNetworkSession::SessionError error = @@ -950,9 +981,12 @@ void tst_QNetworkSession::sessionOpenCloseStop() QVERIFY(errorSpy.isEmpty()); QVERIFY(errorSpy2.isEmpty()); - + + // Wait for Disconnected state + QTRY_NOOP(session2.state() == QNetworkSession::Disconnected); + if (expectStateChange) - QTRY_VERIFY(stateChangedSpy2.count() >= 2 || !errorSpy2.isEmpty()); + QTRY_VERIFY(stateChangedSpy2.count() >= 1 || !errorSpy2.isEmpty()); if (!errorSpy2.isEmpty()) { QVERIFY(session2.state() == previousState); @@ -996,16 +1030,29 @@ void tst_QNetworkSession::sessionOpenCloseStop() state = qvariant_cast(stateChangedSpy2.at(3).at(0)); QVERIFY(state == QNetworkSession::Disconnected); + + QTRY_VERIFY(session.state() == QNetworkSession::Roaming || + session.state() == QNetworkSession::Connected || + session.state() == QNetworkSession::Disconnected); + QTRY_VERIFY(stateChangedSpy.count() > 0); - state = qvariant_cast(stateChangedSpy.at(0).at(0)); + state = qvariant_cast(stateChangedSpy.at(stateChangedSpy.count() - 1).at(0)); + if (state == QNetworkSession::Roaming) { - QTRY_VERIFY(!errorSpy.isEmpty() || stateChangedSpy.count() > 1); - if (stateChangedSpy.count() > 1 && - qvariant_cast(stateChangedSpy.at(1).at(0)) == - QNetworkSession::Connected) { - roamedSuccessfully = true; + QTRY_VERIFY(session.state() == QNetworkSession::Connected); + QTRY_VERIFY(session2.state() == QNetworkSession::Connected); + roamedSuccessfully = true; + } else if (state == QNetworkSession::Disconnected) { + QTRY_VERIFY(!errorSpy.isEmpty()); + QTRY_VERIFY(session2.state() == QNetworkSession::Disconnected); + } else if (state == QNetworkSession::Connected) { + QTRY_VERIFY(errorSpy.isEmpty()); + if (stateChangedSpy.count() > 1) { + state = qvariant_cast(stateChangedSpy.at(stateChangedSpy.count() - 2).at(0)); + QVERIFY(state == QNetworkSession::Roaming); } - } + roamedSuccessfully = true; + } if (roamedSuccessfully) { QString configId = session.sessionProperty("ActiveConfiguration").toString(); @@ -1013,37 +1060,36 @@ void tst_QNetworkSession::sessionOpenCloseStop() QNetworkSession session3(config); QSignalSpy errorSpy3(&session3, SIGNAL(error(QNetworkSession::SessionError))); QSignalSpy sessionOpenedSpy3(&session3, SIGNAL(opened())); - session3.open(); - session3.waitForOpened(); - + session3.waitForOpened(); if (session.isOpen()) QVERIFY(!sessionOpenedSpy3.isEmpty() || !errorSpy3.isEmpty()); - session.stop(); - QTRY_VERIFY(session.state() == QNetworkSession::Disconnected); - QTRY_VERIFY(session3.state() == QNetworkSession::Disconnected); } #ifndef Q_CC_NOKIAX86 if (!roamedSuccessfully) QVERIFY(!errorSpy.isEmpty()); #endif } else { - QCOMPARE(stateChangedSpy2.count(), 2); - - QNetworkSession::State state = - qvariant_cast(stateChangedSpy2.at(0).at(0)); - QVERIFY(state == QNetworkSession::Closing); - - state = qvariant_cast(stateChangedSpy2.at(1).at(0)); - QVERIFY(state == QNetworkSession::Disconnected); + QTest::qWait(2000); // Wait awhile to get all signals from platform + + if (stateChangedSpy2.count() == 2) { + QNetworkSession::State state = + qvariant_cast(stateChangedSpy2.at(0).at(0)); + QVERIFY(state == QNetworkSession::Closing); + state = qvariant_cast(stateChangedSpy2.at(1).at(0)); + QVERIFY(state == QNetworkSession::Disconnected); + } else { // Assume .count() == 1 + QCOMPARE(stateChangedSpy2.count(), 1); + QNetworkSession::State state = qvariant_cast(stateChangedSpy2.at(0).at(0)); + // Symbian version dependant. + QVERIFY(state == QNetworkSession::Disconnected); + } } QTRY_VERIFY(!sessionClosedSpy.isEmpty()); - QTRY_VERIFY(session.state() == QNetworkSession::Disconnected); - QTRY_VERIFY(session2.state() == QNetworkSession::Disconnected); } QVERIFY(errorSpy2.isEmpty()); @@ -1062,7 +1108,7 @@ void tst_QNetworkSession::sessionOpenCloseStop() QVERIFY(!session.isOpen()); #endif QVERIFY(!session2.isOpen()); - } else { + } else if (session2.isOpen()) { // Test closing the second session. { int stateChangedCountBeforeClose = stateChangedSpy2.count(); @@ -1161,11 +1207,15 @@ QDebug operator<<(QDebug debug, const QList &list) // at Discovered -state. void tst_QNetworkSession::outOfProcessSession() { - qDebug() << "START"; - + if (!testsToRun["outOfProcessSession"]) { + QSKIP("Temporary skip due to value set false (or it is missing) in testsToRun map", SkipAll); + } #if defined(Q_OS_SYMBIAN) && defined(__WINS__) QSKIP("Symbian emulator does not support two [QR]PRocesses linking a dll (QtBearer.dll) with global writeable static data.", SkipAll); #endif + updateConfigurations(); + QTest::qWait(2000); + QNetworkConfigurationManager manager; // Create a QNetworkConfigurationManager to detect configuration changes made in Lackey. This // is actually the essence of this testcase - to check that platform mediates/reflects changes @@ -1182,16 +1232,15 @@ void tst_QNetworkSession::outOfProcessSession() QLocalServer::removeServer("tst_qnetworksession"); oopServer.listen("tst_qnetworksession"); - qDebug() << "starting lackey"; QProcess lackey; lackey.start("lackey/lackey"); qDebug() << lackey.error() << lackey.errorString(); QVERIFY(lackey.waitForStarted()); - qDebug() << "waiting for connection"; + QVERIFY(oopServer.waitForNewConnection(-1)); QLocalSocket *oopSocket = oopServer.nextPendingConnection(); - qDebug() << "got connection"; + do { QByteArray output; @@ -1258,7 +1307,6 @@ void tst_QNetworkSession::outOfProcessSession() default: QSKIP("Lackey failed", SkipAll); } - qDebug("STOP"); } // A convinience / helper function for testcases. Return the first matching configuration. @@ -1269,6 +1317,7 @@ QNetworkConfiguration suitableConfiguration(QString bearerType, QNetworkConfigur // Refresh configurations and derive configurations matching given parameters. QNetworkConfigurationManager mgr; QSignalSpy updateSpy(&mgr, SIGNAL(updateCompleted())); + mgr.updateConfigurations(); QTRY_NOOP(updateSpy.count() == 1); if (updateSpy.count() != 1) { @@ -1277,8 +1326,7 @@ QNetworkConfiguration suitableConfiguration(QString bearerType, QNetworkConfigur } QList discoveredConfigs = mgr.allConfigurations(QNetworkConfiguration::Discovered); foreach(QNetworkConfiguration config, discoveredConfigs) { - if ((config.state() & QNetworkConfiguration::Active) == QNetworkConfiguration::Active) { - // qDebug() << "Dumping config because is active: " << config.name(); + if ((config.state() & QNetworkConfiguration::Active) == QNetworkConfiguration::Active) { discoveredConfigs.removeOne(config); } else if (config.type() != configType) { // qDebug() << "Dumping config because type (IAP/SNAP) mismatches: " << config.name(); @@ -1315,9 +1363,23 @@ void updateConfigurations() QTRY_NOOP(updateSpy.count() == 1); } +// A convinience-function: updates and prints all available confiurations and their states +void printConfigurations() +{ + QNetworkConfigurationManager manager; + QList allConfigs = + manager.allConfigurations(); + qDebug("tst_QNetworkSession::printConfigurations QNetworkConfigurationManager gives following configurations: "); + foreach(QNetworkConfiguration config, allConfigs) { + qDebug() << "Name of the configuration: " << config.name(); + qDebug() << "State of the configuration: " << config.state(); + } +} + // A convinience function for test-cases: opens the given configuration and return // true if it was done gracefully. bool openSession(QNetworkSession *session) { + bool result = true; QNetworkConfigurationManager mgr; QSignalSpy openedSpy(session, SIGNAL(opened())); QSignalSpy stateChangeSpy(session, SIGNAL(stateChanged(QNetworkSession::State))); @@ -1327,43 +1389,57 @@ bool openSession(QNetworkSession *session) { // active by some other session QNetworkConfiguration::StateFlags configInitState = session->configuration().state(); QNetworkSession::State sessionInitState = session->state(); + qDebug() << "tst_QNetworkSession::openSession() name of the configuration to be opened: " << session->configuration().name(); + qDebug() << "tst_QNetworkSession::openSession() state of the configuration to be opened: " << session->configuration().state(); + qDebug() << "tst_QNetworkSession::openSession() state of the session to be opened: " << session->state(); if (session->isOpen() || !session->sessionProperty("ActiveConfiguration").toString().isEmpty()) { qDebug("tst_QNetworkSession::openSession() failure: session was already open / active."); - return false; + result = false; } else { session->open(); session->waitForOpened(120000); // Bringing interfaces up and down may take time at platform } + QTest::qWait(5000); // Wait a moment to ensure all signals are propagated // Check that connection opening went by the book. Add checks here if more strictness needed. if (!session->isOpen()) { qDebug("tst_QNetworkSession::openSession() failure: QNetworkSession::open() failed."); - return false; + result = false; } if (openedSpy.count() != 1) { qDebug("tst_QNetworkSession::openSession() failure: QNetworkSession::opened() - signal not received."); - return false; + result = false; } if (!errorSpy.isEmpty()) { qDebug("tst_QNetworkSession::openSession() failure: QNetworkSession::error() - signal was detected."); - return false; + result = false; } if (sessionInitState != QNetworkSession::Connected && stateChangeSpy.isEmpty()) { qDebug("tst_QNetworkSession::openSession() failure: QNetworkSession::stateChanged() - signals not detected."); - return false; + result = false; } if (configInitState != QNetworkConfiguration::Active && configChangeSpy.isEmpty()) { qDebug("tst_QNetworkSession::openSession() failure: QNetworkConfigurationManager::configurationChanged() - signals not detected."); - return false; + result = false; } if (session->configuration().state() != QNetworkConfiguration::Active) { qDebug("tst_QNetworkSession::openSession() failure: session's configuration is not in 'Active' -state."); - return false; + qDebug() << "tst_QNetworkSession::openSession() state is: " << session->configuration().state(); + result = false; + } + if (result == false) { + qDebug() << "tst_QNetworkSession::openSession() opening session failed."; + } else { + qDebug() << "tst_QNetworkSession::openSession() opening session succeeded."; } - return true; + qDebug() << "tst_QNetworkSession::openSession() name of the configuration is: " << session->configuration().name(); + qDebug() << "tst_QNetworkSession::openSession() configuration state is: " << session->configuration().state(); + qDebug() << "tst_QNetworkSession::openSession() session state is: " << session->state(); + + return result; } // Helper function for closing opened session. Performs checks that @@ -1376,6 +1452,11 @@ bool closeSession(QNetworkSession *session, bool lastSessionOnConfiguration) { qDebug("tst_QNetworkSession::closeSession() failure: NULL session given"); return false; } + + qDebug() << "tst_QNetworkSession::closeSession() name of the configuration to be closed: " << session->configuration().name(); + qDebug() << "tst_QNetworkSession::closeSession() state of the configuration to be closed: " << session->configuration().state(); + qDebug() << "tst_QNetworkSession::closeSession() state of the session to be closed: " << session->state(); + if (session->state() != QNetworkSession::Connected || !session->isOpen()) { qDebug("tst_QNetworkSession::closeSession() failure: session is not opened."); @@ -1387,38 +1468,48 @@ bool closeSession(QNetworkSession *session, bool lastSessionOnConfiguration) { QSignalSpy sessionErrorSpy(session, SIGNAL(error(QNetworkSession::SessionError))); QSignalSpy configChangeSpy(&mgr, SIGNAL(configurationChanged(QNetworkConfiguration))); + bool result = true; session->close(); + QTest::qWait(5000); // Wait a moment so that all signals are propagated if (!sessionErrorSpy.isEmpty()) { qDebug("tst_QNetworkSession::closeSession() failure: QNetworkSession::error() received."); - return false; + result = false; } if (sessionClosedSpy.count() != 1) { qDebug("tst_QNetworkSession::closeSession() failure: QNetworkSession::closed() signal not received."); - return false; + result = false; } if (lastSessionOnConfiguration && sessionStateChangedSpy.isEmpty()) { qDebug("tst_QNetworkSession::closeSession() failure: QNetworkSession::stateChanged() signals not received."); - return false; + result = false; } if (lastSessionOnConfiguration && session->state() != QNetworkSession::Disconnected) { qDebug("tst_QNetworkSession::closeSession() failure: QNetworkSession is not in Disconnected -state"); - return false; + result = false; } QTRY_NOOP(!configChangeSpy.isEmpty()); if (lastSessionOnConfiguration && configChangeSpy.isEmpty()) { qDebug("tst_QNetworkSession::closeSession() failure: QNetworkConfigurationManager::configurationChanged() - signal not detected."); - return false; + result = false; } if (lastSessionOnConfiguration && session->configuration().state() == QNetworkConfiguration::Active) { qDebug("tst_QNetworkSession::closeSession() failure: session's configuration is still in active state."); - return false; + result = false; } - return true; + if (result == false) { + qDebug() << "tst_QNetworkSession::closeSession() closing session failed."; + } else { + qDebug() << "tst_QNetworkSession::closeSession() closing session succeeded."; + } + qDebug() << "tst_QNetworkSession::closeSession() name of the configuration is: " << session->configuration().name(); + qDebug() << "tst_QNetworkSession::closeSession() configuration state is: " << session->configuration().state(); + qDebug() << "tst_QNetworkSession::closeSession() session state is: " << session->state(); + return result; } void tst_QNetworkSession::sessionAutoClose_data() -- cgit v1.2.1 From e6efa3ea81dff9eb0ade1c2ba868c272ccfcc958 Mon Sep 17 00:00:00 2001 From: Aaron McCarthy Date: Thu, 13 May 2010 10:49:52 +1000 Subject: Bearer management changes from Qt Mobility. 9286bfcc43d38e0cb3bfd1d3f99ac7ab5d88b7e3 --- tests/auto/qnetworkconfiguration/tst_qnetworkconfiguration.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qnetworkconfiguration/tst_qnetworkconfiguration.cpp b/tests/auto/qnetworkconfiguration/tst_qnetworkconfiguration.cpp index ce3acb7ee7..a3cccb2065 100644 --- a/tests/auto/qnetworkconfiguration/tst_qnetworkconfiguration.cpp +++ b/tests/auto/qnetworkconfiguration/tst_qnetworkconfiguration.cpp @@ -45,6 +45,13 @@ #include #include +/* + Although this unit test doesn't use QNetworkAccessManager + this include is used to ensure that bearer continues to compile against + Qt 4.7+ which has a QNetworkConfiguration enabled QNetworkAccessManager +*/ +#include + #if defined(Q_WS_MAEMO_6) || defined(Q_WS_MAEMO_5) #include #include -- cgit v1.2.1 From e75161c4d54406d137f34b9f54fed853c16a6269 Mon Sep 17 00:00:00 2001 From: Aaron McCarthy Date: Thu, 13 May 2010 10:51:13 +1000 Subject: Cherry pick fix for MOBILITY-828 from Qt Mobility. Change 29776be110cdc121eb5a22446be6adae8ff6f4d8 from Qt Mobility. --- .../qnetworksession/test/tst_qnetworksession.cpp | 30 +++++++++++++++++++--- 1 file changed, 26 insertions(+), 4 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qnetworksession/test/tst_qnetworksession.cpp b/tests/auto/qnetworksession/test/tst_qnetworksession.cpp index 8ab9da22f3..934a50e3bd 100644 --- a/tests/auto/qnetworksession/test/tst_qnetworksession.cpp +++ b/tests/auto/qnetworksession/test/tst_qnetworksession.cpp @@ -263,10 +263,6 @@ void tst_QNetworkSession::robustnessBombing() testSession.accept(); testSession.ignore(); testSession.reject(); - quint64 temp; - temp = testSession.bytesWritten(); - temp = testSession.bytesReceived(); - temp = testSession.activeTime(); } @@ -704,7 +700,20 @@ void tst_QNetworkSession::userChoiceSession() session.open(); +#if defined(Q_OS_SYMBIAN) + // Opening & closing multiple connections in a row sometimes + // results hanging of connection opening on Symbian devices + // => If first open fails, wait a moment and try again. + if (!session.waitForOpened()) { + qDebug("**** Session open Timeout - Wait 5 seconds and try once again ****"); + session.close(); + QTest::qWait(5000); // Wait a while before trying to open session again + session.open(); + session.waitForOpened(); + } +#else session.waitForOpened(); +#endif if (session.isOpen()) QVERIFY(!sessionOpenedSpy.isEmpty() || !errorSpy.isEmpty()); @@ -843,7 +852,20 @@ void tst_QNetworkSession::sessionOpenCloseStop() session.open(); +#if defined(Q_OS_SYMBIAN) + // Opening & closing multiple connections in a row sometimes + // results hanging of connection opening on Symbian devices + // => If first open fails, wait a moment and try again. + if (!session.waitForOpened()) { + qDebug("**** Session open Timeout - Wait 5 seconds and try once again ****"); + session.close(); + QTest::qWait(5000); // Wait a while before trying to open session again + session.open(); + session.waitForOpened(); + } +#else session.waitForOpened(); +#endif if (session.isOpen()) QVERIFY(!sessionOpenedSpy.isEmpty() || !errorSpy.isEmpty()); -- cgit v1.2.1 From bea52aaaaf188293a5e235d5b5f96b386efba5ac Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Fri, 14 May 2010 13:32:49 +1000 Subject: Add a "priority" property to Keys and KeyNavigation Allows intercepting keys before or after normal item key processing. Task-number: QTBUG-10467 --- .../qdeclarativeitem/data/keyspriority.qml | 9 ++ .../qdeclarativeitem/tst_qdeclarativeitem.cpp | 131 ++++++++++++++++++++- 2 files changed, 139 insertions(+), 1 deletion(-) create mode 100644 tests/auto/declarative/qdeclarativeitem/data/keyspriority.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeitem/data/keyspriority.qml b/tests/auto/declarative/qdeclarativeitem/data/keyspriority.qml new file mode 100644 index 0000000000..171536b9d8 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeitem/data/keyspriority.qml @@ -0,0 +1,9 @@ +import Qt 4.7 +import Test 1.0 + +KeyTestItem { + focus: true + Keys.onPressed: keysTestObject.keyPress(event.key, event.text, event.modifiers) + Keys.onReleased: { keysTestObject.keyRelease(event.key, event.text, event.modifiers); event.accepted = true; } + Keys.priority: keysTestObject.processLast ? Keys.AfterItem : Keys.BeforeItem +} diff --git a/tests/auto/declarative/qdeclarativeitem/tst_qdeclarativeitem.cpp b/tests/auto/declarative/qdeclarativeitem/tst_qdeclarativeitem.cpp index f4edeb2463..ecc813efbb 100644 --- a/tests/auto/declarative/qdeclarativeitem/tst_qdeclarativeitem.cpp +++ b/tests/auto/declarative/qdeclarativeitem/tst_qdeclarativeitem.cpp @@ -55,7 +55,9 @@ public: tst_QDeclarativeItem(); private slots: + void initTestCase(); void keys(); + void keysProcessingOrder(); void keyNavigation(); void smooth(); void clip(); @@ -79,8 +81,11 @@ private: class KeysTestObject : public QObject { Q_OBJECT + + Q_PROPERTY(bool processLast READ processLast NOTIFY processLastChanged) + public: - KeysTestObject() : mKey(0), mModifiers(0), mForwardedKey(0) {} + KeysTestObject() : mKey(0), mModifiers(0), mForwardedKey(0), mLast(false) {} void reset() { mKey = 0; @@ -89,6 +94,14 @@ public: mForwardedKey = 0; } + bool processLast() const { return mLast; } + void setProcessLast(bool b) { + if (b != mLast) { + mLast = b; + emit processLastChanged(); + } + } + public slots: void keyPress(int key, QString text, int modifiers) { mKey = key; @@ -104,20 +117,73 @@ public slots: mForwardedKey = key; } +signals: + void processLastChanged(); + public: int mKey; QString mText; int mModifiers; int mForwardedKey; + bool mLast; private: }; +class KeyTestItem : public QDeclarativeItem +{ + Q_OBJECT +public: + KeyTestItem(QDeclarativeItem *parent=0) : QDeclarativeItem(parent), mKey(0) {} + +protected: + void keyPressEvent(QKeyEvent *e) { + keyPressPreHandler(e); + if (e->isAccepted()) + return; + + mKey = e->key(); + + if (e->key() == Qt::Key_A) + e->accept(); + else + e->ignore(); + + if (!e->isAccepted()) + QDeclarativeItem::keyPressEvent(e); + } + + void keyReleaseEvent(QKeyEvent *e) { + keyReleasePreHandler(e); + + if (e->isAccepted()) + return; + + if (e->key() == Qt::Key_B) + e->accept(); + else + e->ignore(); + + if (!e->isAccepted()) + QDeclarativeItem::keyReleaseEvent(e); + } + +public: + int mKey; +}; + +QML_DECLARE_TYPE(KeyTestItem); + tst_QDeclarativeItem::tst_QDeclarativeItem() { } +void tst_QDeclarativeItem::initTestCase() +{ + qmlRegisterType("Test",1,0,"KeyTestItem"); +} + void tst_QDeclarativeItem::keys() { QDeclarativeView *canvas = new QDeclarativeView(0); @@ -214,6 +280,69 @@ void tst_QDeclarativeItem::keys() QCOMPARE(testObject->mKey, 0); QVERIFY(!key.isAccepted()); + canvas->rootContext()->setContextProperty("enableKeyHanding", QVariant(true)); + + key = QKeyEvent(QEvent::KeyPress, Qt::Key_Return, Qt::NoModifier, "", false, 1); + QApplication::sendEvent(canvas, &key); + QCOMPARE(testObject->mKey, int(Qt::Key_Return)); + QVERIFY(key.isAccepted()); + + delete canvas; + delete testObject; +} + +void tst_QDeclarativeItem::keysProcessingOrder() +{ + QDeclarativeView *canvas = new QDeclarativeView(0); + canvas->setFixedSize(240,320); + + KeysTestObject *testObject = new KeysTestObject; + canvas->rootContext()->setContextProperty("keysTestObject", testObject); + + canvas->setSource(QUrl::fromLocalFile(SRCDIR "/data/keyspriority.qml")); + canvas->show(); + qApp->processEvents(); + + KeyTestItem *testItem = qobject_cast(canvas->rootObject()); + QVERIFY(testItem); + + QEvent wa(QEvent::WindowActivate); + QApplication::sendEvent(canvas, &wa); + QFocusEvent fe(QEvent::FocusIn); + QApplication::sendEvent(canvas, &fe); + + QKeyEvent key(QEvent::KeyPress, Qt::Key_A, Qt::NoModifier, "A", false, 1); + QApplication::sendEvent(canvas, &key); + QCOMPARE(testObject->mKey, int(Qt::Key_A)); + QCOMPARE(testObject->mText, QLatin1String("A")); + QVERIFY(testObject->mModifiers == Qt::NoModifier); + QVERIFY(key.isAccepted()); + + testObject->reset(); + + testObject->setProcessLast(true); + + key = QKeyEvent(QEvent::KeyPress, Qt::Key_A, Qt::NoModifier, "A", false, 1); + QApplication::sendEvent(canvas, &key); + QCOMPARE(testObject->mKey, 0); + QVERIFY(key.isAccepted()); + + testObject->reset(); + + key = QKeyEvent(QEvent::KeyPress, Qt::Key_B, Qt::NoModifier, "B", false, 1); + QApplication::sendEvent(canvas, &key); + QCOMPARE(testObject->mKey, int(Qt::Key_B)); + QCOMPARE(testObject->mText, QLatin1String("B")); + QVERIFY(testObject->mModifiers == Qt::NoModifier); + QVERIFY(!key.isAccepted()); + + testObject->reset(); + + key = QKeyEvent(QEvent::KeyRelease, Qt::Key_B, Qt::NoModifier, "B", false, 1); + QApplication::sendEvent(canvas, &key); + QCOMPARE(testObject->mKey, 0); + QVERIFY(key.isAccepted()); + delete canvas; delete testObject; } -- cgit v1.2.1 From 645b9ee9dd6e0576542cc61872ecedb408ca8a89 Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Fri, 14 May 2010 13:45:08 +1000 Subject: Add Qt.include() method for scoped inclusion of JavaScript files --- .../qdeclarativeecmascript/data/blank.js | 0 .../qdeclarativeecmascript/data/exception.js | 1 + .../qdeclarativeecmascript/data/include.js | 8 +++++++ .../qdeclarativeecmascript/data/include.qml | 23 +++++++++++++++++++ .../data/include_callback.js | 11 +++++++++ .../data/include_callback.qml | 15 +++++++++++++ .../qdeclarativeecmascript/data/include_remote.js | 26 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/include_remote.qml | 21 +++++++++++++++++ .../data/include_remote_missing.js | 13 +++++++++++ .../data/include_remote_missing.qml | 12 ++++++++++ .../qdeclarativeecmascript/data/include_shared.js | 12 ++++++++++ .../qdeclarativeecmascript/data/include_shared.qml | 22 ++++++++++++++++++ .../qdeclarativeecmascript/data/js/include2.js | 4 ++++ .../qdeclarativeecmascript/data/js/include3.js | 3 +++ .../qdeclarativeecmascript/data/remote_file.js | 2 ++ 15 files changed, 173 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/blank.js create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/exception.js create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/include.js create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/include.qml create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/include_callback.js create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/include_callback.qml create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/include_remote.js create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/include_remote.qml create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/include_remote_missing.js create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/include_remote_missing.qml create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/include_shared.js create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/include_shared.qml create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/js/include2.js create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/js/include3.js create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/remote_file.js (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/blank.js b/tests/auto/declarative/qdeclarativeecmascript/data/blank.js new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/exception.js b/tests/auto/declarative/qdeclarativeecmascript/data/exception.js new file mode 100644 index 0000000000..160bbfa5b6 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/exception.js @@ -0,0 +1 @@ +throw("Whoops!"); diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include.js b/tests/auto/declarative/qdeclarativeecmascript/data/include.js new file mode 100644 index 0000000000..232fd808f8 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include.js @@ -0,0 +1,8 @@ +var test1 = true +var test2 = false +var test3 = false + +function go() { + Qt.include("js/include2.js"); +} + diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include.qml b/tests/auto/declarative/qdeclarativeecmascript/data/include.qml new file mode 100644 index 0000000000..18543b2dee --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include.qml @@ -0,0 +1,23 @@ +import Qt 4.7 +import "include.js" as IncludeTest + +QtObject { + property int test0: 0 + property bool test1: false + property bool test2: false + property bool test2_1: false + property bool test3: false + property bool test3_1: false + + property int testValue: 99 + + Component.onCompleted: { + IncludeTest.go(); + test0 = IncludeTest.value + test1 = IncludeTest.test1 + test2 = IncludeTest.test2 + test2_1 = IncludeTest.test2_1 + test3 = IncludeTest.test3 + test3_1 = IncludeTest.test3_1 + } +} diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include_callback.js b/tests/auto/declarative/qdeclarativeecmascript/data/include_callback.js new file mode 100644 index 0000000000..ea19eba300 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include_callback.js @@ -0,0 +1,11 @@ +function go() { + var a = Qt.include("missing.js", function(o) { test2 = o.status == o.NETWORK_ERROR }); + test1 = a.status == a.NETWORK_ERROR + + var b = Qt.include("blank.js", function(o) { test4 = o.status == o.OK }); + test3 = b.status == b.OK + + var c = Qt.include("exception.js", function(o) { test6 = o.status == o.EXCEPTION }); + test5 = c.status == c.EXCEPTION +} + diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include_callback.qml b/tests/auto/declarative/qdeclarativeecmascript/data/include_callback.qml new file mode 100644 index 0000000000..a39e821ca7 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include_callback.qml @@ -0,0 +1,15 @@ +import Qt 4.7 +import "include_callback.js" as IncludeTest + +QtObject { + property bool test1: false + property bool test2: false + property bool test3: false + property bool test4: false + property bool test5: false + property bool test6: false + + Component.onCompleted: { + IncludeTest.go(); + } +} diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include_remote.js b/tests/auto/declarative/qdeclarativeecmascript/data/include_remote.js new file mode 100644 index 0000000000..e6a4676819 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include_remote.js @@ -0,0 +1,26 @@ +var myvar = 10; + +function go() +{ + var a = Qt.include("http://127.0.0.1:8111/remote_file.js", + function(o) { + test2 = o.status == o.OK + test3 = a.status == a.OK + test4 = myvar == 13 + + done = true; + }); + test1 = a.status == a.LOADING + + + var b = Qt.include("http://127.0.0.1:8111/exception.js", + function(o) { + test7 = o.status == o.EXCEPTION + test8 = b.status == a.EXCEPTION + test9 = b.exception.toString() == "Whoops!"; + test10 = o.exception.toString() == "Whoops!"; + + done2 = true; + }); + test6 = b.status == b.LOADING +} diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include_remote.qml b/tests/auto/declarative/qdeclarativeecmascript/data/include_remote.qml new file mode 100644 index 0000000000..06bd17476d --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include_remote.qml @@ -0,0 +1,21 @@ +import Qt 4.7 +import "include_remote.js" as IncludeTest + +QtObject { + property bool done: false + property bool done2: false + + property bool test1: false + property bool test2: false + property bool test3: false + property bool test4: false + property bool test5: false + + property bool test6: false + property bool test7: false + property bool test8: false + property bool test9: false + property bool test10: false + + Component.onCompleted: IncludeTest.go(); +} diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include_remote_missing.js b/tests/auto/declarative/qdeclarativeecmascript/data/include_remote_missing.js new file mode 100644 index 0000000000..cc90860cc9 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include_remote_missing.js @@ -0,0 +1,13 @@ +function go() +{ + var a = Qt.include("http://127.0.0.1:8111/missing.js", + function(o) { + test2 = o.status == o.NETWORK_ERROR + test3 = a.status == a.NETWORK_ERROR + + done = true; + }); + + test1 = a.status == a.LOADING +} + diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include_remote_missing.qml b/tests/auto/declarative/qdeclarativeecmascript/data/include_remote_missing.qml new file mode 100644 index 0000000000..8e486b20e9 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include_remote_missing.qml @@ -0,0 +1,12 @@ +import Qt 4.7 +import "include_remote_missing.js" as IncludeTest + +QtObject { + property bool done: false + + property bool test1: false + property bool test2: false + property bool test3: false + + Component.onCompleted: IncludeTest.go(); +} diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include_shared.js b/tests/auto/declarative/qdeclarativeecmascript/data/include_shared.js new file mode 100644 index 0000000000..a49c07bbfc --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include_shared.js @@ -0,0 +1,12 @@ +.pragma library + +var test1 = true +var test2 = false +var test3 = false + +var testValue = 99; + +function go() { + Qt.include("js/include2.js"); +} + diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include_shared.qml b/tests/auto/declarative/qdeclarativeecmascript/data/include_shared.qml new file mode 100644 index 0000000000..e957018908 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include_shared.qml @@ -0,0 +1,22 @@ +import Qt 4.7 +import "include_shared.js" as IncludeTest + +QtObject { + property int test0: 0 + property bool test1: false + property bool test2: false + property bool test2_1: false + property bool test3: false + property bool test3_1: false + + Component.onCompleted: { + IncludeTest.go(); + test0 = IncludeTest.value + test1 = IncludeTest.test1 + test2 = IncludeTest.test2 + test2_1 = IncludeTest.test2_1 + test3 = IncludeTest.test3 + test3_1 = IncludeTest.test3_1 + } +} + diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/js/include2.js b/tests/auto/declarative/qdeclarativeecmascript/data/js/include2.js new file mode 100644 index 0000000000..2a0c039dfa --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/js/include2.js @@ -0,0 +1,4 @@ +test2 = true +var test2_1 = true + +Qt.include("include3.js"); diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/js/include3.js b/tests/auto/declarative/qdeclarativeecmascript/data/js/include3.js new file mode 100644 index 0000000000..84b2770b6f --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/js/include3.js @@ -0,0 +1,3 @@ +test3 = true +var test3_1 = true +var value = testValue diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/remote_file.js b/tests/auto/declarative/qdeclarativeecmascript/data/remote_file.js new file mode 100644 index 0000000000..1b123aee61 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/remote_file.js @@ -0,0 +1,2 @@ +myvar = 13; +test5 = true; -- cgit v1.2.1 From 17a5c63a499b10036dc14135457ec22c89270f9a Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Fri, 14 May 2010 14:00:21 +1000 Subject: Missing files from 645b9ee9dd6e0576542cc61872ecedb408ca8a89 Grrr --- .../qdeclarativeecmascript.pro | 11 +- .../tst_qdeclarativeecmascript.cpp | 111 +++++++++++++++++++++ 2 files changed, 119 insertions(+), 3 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeecmascript/qdeclarativeecmascript.pro b/tests/auto/declarative/qdeclarativeecmascript/qdeclarativeecmascript.pro index eabed26add..c907be5270 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/qdeclarativeecmascript.pro +++ b/tests/auto/declarative/qdeclarativeecmascript/qdeclarativeecmascript.pro @@ -1,13 +1,18 @@ load(qttest_p4) -contains(QT_CONFIG,declarative): QT += declarative script +contains(QT_CONFIG,declarative): QT += declarative script network macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativeecmascript.cpp \ - testtypes.cpp -HEADERS += testtypes.h + testtypes.cpp \ + ../shared/testhttpserver.cpp +HEADERS += testtypes.h \ + ../shared/testhttpserver.h +INCLUDEPATH += ../shared # QMAKE_CXXFLAGS = -fprofile-arcs -ftest-coverage # LIBS += -lgcov +DEFINES += SRCDIR=\\\"$$PWD\\\" + CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp index 8c9290fc6b..b8faa7cb76 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp +++ b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp @@ -51,6 +51,7 @@ #include #include #include "testtypes.h" +#include "testhttpserver.h" /* This test covers evaluation of ECMAScript expressions and bindings from within @@ -149,6 +150,8 @@ private slots: void eval(); void function(); + void include(); + void callQtInvokables(); private: QDeclarativeEngine engine; @@ -2361,6 +2364,114 @@ void tst_qdeclarativeecmascript::function() delete o; } +#define TRY_WAIT(expr) \ + do { \ + for (int ii = 0; ii < 6; ++ii) { \ + if ((expr)) break; \ + QTest::qWait(50); \ + } \ + QVERIFY((expr)); \ + } while (false) + +// Test the "Qt.include" method +void tst_qdeclarativeecmascript::include() +{ + // Non-library relative include + { + QDeclarativeComponent component(&engine, TEST_FILE("include.qml")); + QObject *o = component.create(); + QVERIFY(o != 0); + + QCOMPARE(o->property("test0").toInt(), 99); + QCOMPARE(o->property("test1").toBool(), true); + QCOMPARE(o->property("test2").toBool(), true); + QCOMPARE(o->property("test2_1").toBool(), true); + QCOMPARE(o->property("test3").toBool(), true); + QCOMPARE(o->property("test3_1").toBool(), true); + + delete o; + } + + // Library relative include + { + QDeclarativeComponent component(&engine, TEST_FILE("include_shared.qml")); + QObject *o = component.create(); + QVERIFY(o != 0); + + QCOMPARE(o->property("test0").toInt(), 99); + QCOMPARE(o->property("test1").toBool(), true); + QCOMPARE(o->property("test2").toBool(), true); + QCOMPARE(o->property("test2_1").toBool(), true); + QCOMPARE(o->property("test3").toBool(), true); + QCOMPARE(o->property("test3_1").toBool(), true); + + delete o; + } + + // Callback + { + QDeclarativeComponent component(&engine, TEST_FILE("include_callback.qml")); + QObject *o = component.create(); + QVERIFY(o != 0); + + QCOMPARE(o->property("test1").toBool(), true); + QCOMPARE(o->property("test2").toBool(), true); + QCOMPARE(o->property("test3").toBool(), true); + QCOMPARE(o->property("test4").toBool(), true); + QCOMPARE(o->property("test5").toBool(), true); + QCOMPARE(o->property("test6").toBool(), true); + + delete o; + } + + // Remote - success + { + TestHTTPServer server(8111); + QVERIFY(server.isValid()); + server.serveDirectory(SRCDIR "/data"); + + QDeclarativeComponent component(&engine, TEST_FILE("include_remote.qml")); + QObject *o = component.create(); + QVERIFY(o != 0); + + TRY_WAIT(o->property("done").toBool() == true); + TRY_WAIT(o->property("done2").toBool() == true); + + QCOMPARE(o->property("test1").toBool(), true); + QCOMPARE(o->property("test2").toBool(), true); + QCOMPARE(o->property("test3").toBool(), true); + QCOMPARE(o->property("test4").toBool(), true); + QCOMPARE(o->property("test5").toBool(), true); + + QCOMPARE(o->property("test6").toBool(), true); + QCOMPARE(o->property("test7").toBool(), true); + QCOMPARE(o->property("test8").toBool(), true); + QCOMPARE(o->property("test9").toBool(), true); + QCOMPARE(o->property("test10").toBool(), true); + + delete o; + } + + // Remote - error + { + TestHTTPServer server(8111); + QVERIFY(server.isValid()); + server.serveDirectory(SRCDIR "/data"); + + QDeclarativeComponent component(&engine, TEST_FILE("include_remote_missing.qml")); + QObject *o = component.create(); + QVERIFY(o != 0); + + TRY_WAIT(o->property("done").toBool() == true); + + QCOMPARE(o->property("test1").toBool(), true); + QCOMPARE(o->property("test2").toBool(), true); + QCOMPARE(o->property("test3").toBool(), true); + + delete o; + } +} + QTEST_MAIN(tst_qdeclarativeecmascript) #include "tst_qdeclarativeecmascript.moc" -- cgit v1.2.1 From e301c82693c33c0f96c6a756d15fe35a9d877443 Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Mon, 26 Apr 2010 15:16:34 +0200 Subject: QUrl: parsing of host name with an undercore. This is not supposed to be allowed, but it work with other browsers Rask-number: QTBUG-7434 Reviewed-by: Thiago Reviewed-by: Markus Goetz (cherry picked from commit a8065da96b96fcc4baeca7615c2a4195c05cbc03) --- tests/auto/qurl/tst_qurl.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/qurl/tst_qurl.cpp b/tests/auto/qurl/tst_qurl.cpp index 8dffebb689..ede6cde965 100644 --- a/tests/auto/qurl/tst_qurl.cpp +++ b/tests/auto/qurl/tst_qurl.cpp @@ -1631,6 +1631,10 @@ void tst_QUrl::toString_data() QTest::newRow("nopath_task31320") << QString::fromLatin1("host://protocol") << uint(QUrl::None) << QString::fromLatin1("host://protocol"); + + QTest::newRow("underscore_QTBUG-7434") << QString::fromLatin1("http://foo_bar.host.com/rss.php") + << uint(QUrl::None) + << QString::fromLatin1("http://foo_bar.host.com/rss.php"); } void tst_QUrl::toString() @@ -3269,7 +3273,6 @@ void tst_QUrl::std3violations_data() QTest::newRow("question") << "foo?bar" << true; QTest::newRow("at") << "foo@bar" << true; QTest::newRow("backslash") << "foo\\bar" << false; - QTest::newRow("underline") << "foo_bar" << false; // these characters are transformed by NFKC to non-LDH characters QTest::newRow("dot-like") << QString::fromUtf8("foo\342\200\244bar") << false; // U+2024 ONE DOT LEADER @@ -3314,6 +3317,7 @@ void tst_QUrl::std3deviations_data() QTest::newRow("ending-dot") << "example.com."; QTest::newRow("ending-dot3002") << QString("example.com") + QChar(0x3002); + QTest::newRow("underline") << "foo_bar"; //QTBUG-7434 } void tst_QUrl::std3deviations() -- cgit v1.2.1 From c3bec5fa2dfc53051bd09a6c3c1a50b7f239ab41 Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Fri, 14 May 2010 10:35:33 +0200 Subject: Fix QUrl::isValid if the host contains invalid caracter. If the host contains invalid caracter, QUrl::isValid should return false Task-number: QTBUG-10355 Reviewed-by: thiago --- tests/auto/qurl/tst_qurl.cpp | 27 ++++++++++++++++++++------- 1 file changed, 20 insertions(+), 7 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qurl/tst_qurl.cpp b/tests/auto/qurl/tst_qurl.cpp index ede6cde965..3cc0d78898 100644 --- a/tests/auto/qurl/tst_qurl.cpp +++ b/tests/auto/qurl/tst_qurl.cpp @@ -1409,7 +1409,7 @@ void tst_QUrl::setUrl() void tst_QUrl::i18n_data() { QTest::addColumn("input"); - QTest::addColumn("punyOutput"); + QTest::addColumn("punyOutput"); QTest::newRow("l") << QString::fromLatin1("http://ole:passord@www.l.no/index.html?ole=semann&ilder gud=hei#top") << QByteArray("http://ole:passord@www.xn--l-4ga.no/index.html?ole=%C3%A6semann&ilder%20gud=hei#top"); @@ -2164,25 +2164,25 @@ void tst_QUrl::toPercentEncoding_data() QTest::addColumn("includeInEncoding"); QTest::newRow("test_01") << QString::fromLatin1("abcdevghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ012345678-._~") - << QByteArray("abcdevghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ012345678-._~") + << QByteArray("abcdevghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ012345678-._~") << QByteArray("") << QByteArray(""); QTest::newRow("test_02") << QString::fromLatin1("{\t\n\r^\"abc}") - << QByteArray("%7B%09%0A%0D%5E%22abc%7D") + << QByteArray("%7B%09%0A%0D%5E%22abc%7D") << QByteArray("") << QByteArray(""); QTest::newRow("test_03") << QString::fromLatin1("://?#[]@!$&'()*+,;=") - << QByteArray("%3A%2F%2F%3F%23%5B%5D%40%21%24%26%27%28%29%2A%2B%2C%3B%3D") + << QByteArray("%3A%2F%2F%3F%23%5B%5D%40%21%24%26%27%28%29%2A%2B%2C%3B%3D") << QByteArray("") << QByteArray(""); QTest::newRow("test_04") << QString::fromLatin1("://?#[]@!$&'()*+,;=") - << QByteArray("%3A%2F%2F%3F%23%5B%5D%40!$&'()*+,;=") + << QByteArray("%3A%2F%2F%3F%23%5B%5D%40!$&'()*+,;=") << QByteArray("!$&'()*+,;=") << QByteArray(""); QTest::newRow("test_05") << QString::fromLatin1("abcd") << QByteArray("a%62%63d") << QByteArray("") - << QByteArray("bc"); + << QByteArray("bc"); } void tst_QUrl::toPercentEncoding() @@ -2192,7 +2192,7 @@ void tst_QUrl::toPercentEncoding() QFETCH(QByteArray, excludeInEncoding); QFETCH(QByteArray, includeInEncoding); - QByteArray encodedUrl = QUrl::toPercentEncoding(original, excludeInEncoding, includeInEncoding); + QByteArray encodedUrl = QUrl::toPercentEncoding(original, excludeInEncoding, includeInEncoding); QCOMPARE(encodedUrl.constData(), encoded.constData()); QCOMPARE(original, QUrl::fromPercentEncoding(encodedUrl)); } @@ -2460,6 +2460,8 @@ void tst_QUrl::isValid() QUrl url = QUrl::fromEncoded("http://strange@ok-hostname/", QUrl::StrictMode); QVERIFY(!url.isValid()); // < and > are not allowed in userinfo in strict mode + url.setUserName("normal_username"); + QVERIFY(url.isValid()); } { QUrl url = QUrl::fromEncoded("http://strange@ok-hostname/"); @@ -2470,7 +2472,18 @@ void tst_QUrl::isValid() QUrl url = QUrl::fromEncoded("http://strange;hostname/here"); QVERIFY(!url.isValid()); QCOMPARE(url.path(), QString("/here")); + url.setAuthority("foobar@bar"); + QVERIFY(url.isValid()); + } + + { + QUrl url = QUrl::fromEncoded("foo://stuff;1/g"); + QVERIFY(!url.isValid()); + QCOMPARE(url.path(), QString("/g")); + url.setHost("stuff-1"); + QVERIFY(url.isValid()); } + } void tst_QUrl::schemeValidator_data() -- cgit v1.2.1 From 3ecb04cffdf491f5ea01eceb71de98d6ac647107 Mon Sep 17 00:00:00 2001 From: Markus Goetz Date: Fri, 14 May 2010 13:21:56 +0200 Subject: QNAM HTTP: And one more testcase --- tests/auto/qnetworkreply/tst_qnetworkreply.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qnetworkreply/tst_qnetworkreply.cpp b/tests/auto/qnetworkreply/tst_qnetworkreply.cpp index 74ed7fc69b..ca563ef49a 100644 --- a/tests/auto/qnetworkreply/tst_qnetworkreply.cpp +++ b/tests/auto/qnetworkreply/tst_qnetworkreply.cpp @@ -279,6 +279,8 @@ private Q_SLOTS: void getAndThenDeleteObject_data(); void getAndThenDeleteObject(); + void symbianOpenCDataUrlCrash(); + // NOTE: This test must be last! void parentingRepliesToTheApp(); }; @@ -4153,6 +4155,22 @@ void tst_QNetworkReply::getAndThenDeleteObject() } } +// see https://bugs.webkit.org/show_bug.cgi?id=38935 +void tst_QNetworkReply::symbianOpenCDataUrlCrash() +{ + QString requestUrl("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAWCAYAAAA1vze2AAAAB3RJTUUH2AUSEgolrgBvVQAAAAlwSFlzAAALEwAACxMBAJqcGAAAAARnQU1BAACxjwv8YQUAAAHlSURBVHja5VbNShxBEK6ZaXtnHTebQPA1gngNmfaeq+QNPIlIXkC9iQdJxJNvEHLN3VkxhxxE8gTmEhAVddXZ6Z3f9Ndriz89/sHmkBQUVVT1fB9d9c3uOERUKTunIdn3HzstxGpYBDS4wZk7TAJj/wlJ90J+jnuygqs8svSj+/rGHBos3rE18XBvfU3no7NzlJfUaY/5whAwl8Lr/WDUv4ODxTMb+P5xLExe5LmO559WqTX/MQR4WZYEAtSePS4pE0qSnuhnRUcBU5Gm2k9XljU4Z26I3NRxBrd80rj2fh+KNE0FY4xevRgTjREvPFpasAK8Xli6MUbbuKw3afAGgSBXozo5u4hkmncAlkl5wx8iMGbdyQjnCFEiEwGiosj1UQA/x2rVddiVoi+l4IxE0PTDnx+mrQBvvnx9cFz3krhVvuhzFn579/aq/n5rW8fbtTqiWhIQZEo17YBvbkxOXNVndnYpTvod7AtiuN2re0+siwcB9oH8VxxrNwQQAhzyRs30n7wTI2HIN2g2QtQwjjhJIQatOq7E8bIVCLwzpl83Lvtvl+NohWWlE8UZTWEMAGCcR77fHKhPnZF5tYie6dfdxCphACmLPM+j8bYfmTryg64kV9Vh3mV8jP0b/4wO/YUPiT/8i0MLf55lSQAAAABJRU5ErkJggg=="); + QUrl url = QUrl::fromEncoded(requestUrl.toLatin1()); + QNetworkRequest req(url); + QNetworkReplyPtr reply; + + RUN_REQUEST(runSimpleRequest(QNetworkAccessManager::GetOperation, req, reply)); + + QCOMPARE(reply->url(), url); + QCOMPARE(reply->error(), QNetworkReply::NoError); + + QCOMPARE(reply->header(QNetworkRequest::ContentLengthHeader).toLongLong(), qint64(598)); +} + // NOTE: This test must be last testcase in tst_qnetworkreply! -- cgit v1.2.1 From fea180d80112faa1a314e240ab07c37e4c2e0d1d Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Wed, 5 May 2010 17:04:31 +0200 Subject: Autotest: some improvements to timeout testing of tst_QTcpSocket --- tests/auto/qtcpsocket/tst_qtcpsocket.cpp | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qtcpsocket/tst_qtcpsocket.cpp b/tests/auto/qtcpsocket/tst_qtcpsocket.cpp index cd512a1286..d195d3c6ca 100644 --- a/tests/auto/qtcpsocket/tst_qtcpsocket.cpp +++ b/tests/auto/qtcpsocket/tst_qtcpsocket.cpp @@ -144,6 +144,7 @@ private slots: void blockingIMAP(); void nonBlockingIMAP(); void hostNotFound(); + void timeoutConnect_data(); void timeoutConnect(); void delayedClose(); void partialRead(); @@ -544,19 +545,36 @@ void tst_QTcpSocket::hostNotFound() } //---------------------------------------------------------------------------------- +void tst_QTcpSocket::timeoutConnect_data() +{ + QTest::addColumn("address"); + QTest::newRow("host") << QtNetworkSettings::serverName(); + QTest::newRow("ip") << QtNetworkSettings::serverIP(); +} void tst_QTcpSocket::timeoutConnect() { + QFETCH(QString, address); QTcpSocket *socket = newSocket(); - // Outgoing port 53 is firewalled in the Oslo office. - socket->connectToHost("cisco.com", 53); + QElapsedTimer timer; + timer.start(); + + // Port 1357 is configured to drop packets on the test server + socket->connectToHost(address, 1357); + QVERIFY(timer.elapsed() < 50); QVERIFY(!socket->waitForConnected(200)); QCOMPARE(socket->state(), QTcpSocket::UnconnectedState); QCOMPARE(int(socket->error()), int(QTcpSocket::SocketTimeoutError)); - socket->connectToHost("cisco.com", 53); - QTest::qSleep(50); + timer.start(); + socket->connectToHost(address, 1357); + QVERIFY(timer.elapsed() < 50); + QTimer::singleShot(50, &QTestEventLoop::instance(), SLOT(exitLoop())); + QTestEventLoop::enterLoop(5); + QVERIFY(!QTestEventLoop::instance().timeout()); + QVERIFY(socket->state() == QTcpSocket::ConnectingState + || socket->state() == QTcpSocket::HostLookupState); socket->abort(); QCOMPARE(socket->state(), QTcpSocket::UnconnectedState); QCOMPARE(socket->openMode(), QIODevice::NotOpen); -- cgit v1.2.1 From f8788e4202e51fb36b3dcb4a80c83e16ff389150 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Sat, 15 May 2010 18:36:56 +0200 Subject: Fix building of tst_QTcpSocket --- tests/auto/qtcpsocket/tst_qtcpsocket.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qtcpsocket/tst_qtcpsocket.cpp b/tests/auto/qtcpsocket/tst_qtcpsocket.cpp index d195d3c6ca..31cae403dd 100644 --- a/tests/auto/qtcpsocket/tst_qtcpsocket.cpp +++ b/tests/auto/qtcpsocket/tst_qtcpsocket.cpp @@ -549,7 +549,7 @@ void tst_QTcpSocket::timeoutConnect_data() { QTest::addColumn("address"); QTest::newRow("host") << QtNetworkSettings::serverName(); - QTest::newRow("ip") << QtNetworkSettings::serverIP(); + QTest::newRow("ip") << QtNetworkSettings::serverIP().toString(); } void tst_QTcpSocket::timeoutConnect() @@ -571,7 +571,7 @@ void tst_QTcpSocket::timeoutConnect() socket->connectToHost(address, 1357); QVERIFY(timer.elapsed() < 50); QTimer::singleShot(50, &QTestEventLoop::instance(), SLOT(exitLoop())); - QTestEventLoop::enterLoop(5); + QTestEventLoop::instance().enterLoop(5); QVERIFY(!QTestEventLoop::instance().timeout()); QVERIFY(socket->state() == QTcpSocket::ConnectingState || socket->state() == QTcpSocket::HostLookupState); -- cgit v1.2.1 From 2e3d004ba736f5c77614feeaf3594217217bd29e Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Sat, 15 May 2010 23:53:16 +0200 Subject: tst_bic: Fix building on Mac 64 --- tests/auto/bic/tst_bic.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/bic/tst_bic.cpp b/tests/auto/bic/tst_bic.cpp index 010965c6e5..400fcc11e3 100644 --- a/tests/auto/bic/tst_bic.cpp +++ b/tests/auto/bic/tst_bic.cpp @@ -191,7 +191,7 @@ void tst_Bic::sizesAndVTables_data() #elif defined Q_OS_MAC && defined(__i386__) # define FILESUFFIX "macx-gcc-ia32" #elif defined Q_OS_MAC && defined(__amd64__) -# define FILESUFFIX "macx-gcc-amd64"; +# define FILESUFFIX "macx-gcc-amd64" #elif defined Q_OS_WIN && defined Q_CC_GNU # define FILESUFFIX "win32-gcc-ia32" #else -- cgit v1.2.1 From 0aca20bf669ef7e7702ee96d0d0676392cfd1b72 Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Fri, 14 May 2010 11:26:54 +1000 Subject: graphicsWidgets doc example was previously removed --- tests/auto/declarative/examples/tst_examples.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/examples/tst_examples.cpp b/tests/auto/declarative/examples/tst_examples.cpp index 3759cb5476..10440354fd 100644 --- a/tests/auto/declarative/examples/tst_examples.cpp +++ b/tests/auto/declarative/examples/tst_examples.cpp @@ -80,7 +80,6 @@ tst_examples::tst_examples() // Add directories you want excluded here - excludedDirs << "doc/src/snippets/declarative/graphicswidgets"; #ifdef QT_NO_WEBKIT excludedDirs << "examples/declarative/webview"; -- cgit v1.2.1 From 029f98ee0176b34279e7cc944cca17f027fe5a0a Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Mon, 17 May 2010 11:26:51 +1000 Subject: ListModel::get() shouldn't print warnings for invalid indices since it returns undefined items for these cases anywyay. --- .../qdeclarativelistmodel/tst_qdeclarativelistmodel.cpp | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativelistmodel/tst_qdeclarativelistmodel.cpp b/tests/auto/declarative/qdeclarativelistmodel/tst_qdeclarativelistmodel.cpp index aed478188d..26a12f05c9 100644 --- a/tests/auto/declarative/qdeclarativelistmodel/tst_qdeclarativelistmodel.cpp +++ b/tests/auto/declarative/qdeclarativelistmodel/tst_qdeclarativelistmodel.cpp @@ -184,8 +184,8 @@ void tst_qdeclarativelistmodel::dynamic_data() QTest::newRow("count") << "count" << 0 << ""; - QTest::newRow("get1") << "{get(0)}" << 0 << ": QML ListModel: get: index 0 out of range"; - QTest::newRow("get2") << "{get(-1)}" << 0 << ": QML ListModel: get: index -1 out of range"; + QTest::newRow("get1") << "{get(0)}" << 0 << ""; + QTest::newRow("get2") << "{get(-1)}" << 0 << ""; QTest::newRow("append1") << "{append({'foo':123});count}" << 1 << ""; QTest::newRow("append2") << "{append({'foo':123,'bar':456});count}" << 1 << ""; @@ -196,13 +196,13 @@ void tst_qdeclarativelistmodel::dynamic_data() QTest::newRow("clear1") << "{append({'foo':456});clear();count}" << 0 << ""; QTest::newRow("clear2") << "{append({'foo':123});append({'foo':456});clear();count}" << 0 << ""; - QTest::newRow("clear3") << "{append({'foo':123});clear();get(0).foo}" << 0 << ": QML ListModel: get: index 0 out of range"; + QTest::newRow("clear3") << "{append({'foo':123});clear()}" << 0 << ""; QTest::newRow("remove1") << "{append({'foo':123});remove(0);count}" << 0 << ""; QTest::newRow("remove2a") << "{append({'foo':123});append({'foo':456});remove(0);count}" << 1 << ""; QTest::newRow("remove2b") << "{append({'foo':123});append({'foo':456});remove(0);get(0).foo}" << 456 << ""; QTest::newRow("remove2c") << "{append({'foo':123});append({'foo':456});remove(1);get(0).foo}" << 123 << ""; - QTest::newRow("remove3") << "{append({'foo':123});remove(0);get(0).foo}" << 0 << ": QML ListModel: get: index 0 out of range"; + QTest::newRow("remove3") << "{append({'foo':123});remove(0)}" << 0 << ""; QTest::newRow("remove3a") << "{append({'foo':123});remove(-1);count}" << 1 << ": QML ListModel: remove: index -1 out of range"; QTest::newRow("remove4a") << "{remove(0)}" << 0 << ": QML ListModel: remove: index 0 out of range"; QTest::newRow("remove4b") << "{append({'foo':123});remove(0);remove(0);count}" << 0 << ": QML ListModel: remove: index 0 out of range"; @@ -328,12 +328,6 @@ void tst_qdeclarativelistmodel::dynamic_worker() if (QByteArray(QTest::currentDataTag()).startsWith("nested")) QTest::ignoreMessage(QtWarningMsg, ": QML ListModel: Cannot add nested list values when modifying or after modification from a worker script"); - if (QByteArray(QTest::currentDataTag()).startsWith("nested-append")) { - int callsToGet = script.count(QLatin1String(";get(")); - for (int i=0; i: QML ListModel: get: index 0 out of range"); - } - QVERIFY(QMetaObject::invokeMethod(item, "evalExpressionViaWorker", Q_ARG(QVariant, operations.mid(0, operations.length()-1)))); waitForWorker(item); -- cgit v1.2.1 From cef452a2792cc15705f677c9b9c689496eeb500f Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Mon, 17 May 2010 13:14:18 +1000 Subject: Don't crash due to recursive positioning. Also extend positioner anchor check to include fill and centerIn. Task-number: QTBUG-10731 --- .../tst_qdeclarativepositioners.cpp | 27 ++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativepositioners/tst_qdeclarativepositioners.cpp b/tests/auto/declarative/qdeclarativepositioners/tst_qdeclarativepositioners.cpp index 7a2377305a..e639014f27 100644 --- a/tests/auto/declarative/qdeclarativepositioners/tst_qdeclarativepositioners.cpp +++ b/tests/auto/declarative/qdeclarativepositioners/tst_qdeclarativepositioners.cpp @@ -687,7 +687,13 @@ void tst_QDeclarativePositioners::test_conflictinganchors() component.setData("import Qt 4.7\nColumn { Item { anchors.top: parent.top } }", QUrl::fromLocalFile("")); item = qobject_cast(component.create()); QVERIFY(item); - QCOMPARE(warningMessage, QString("file::2:1: QML Column: Cannot specify top, bottom or verticalCenter anchors for items inside Column")); + QCOMPARE(warningMessage, QString("file::2:1: QML Column: Cannot specify top, bottom, verticalCenter, fill or centerIn anchors for items inside Column")); + warningMessage.clear(); + + component.setData("import Qt 4.7\nColumn { Item { anchors.centerIn: parent } }", QUrl::fromLocalFile("")); + item = qobject_cast(component.create()); + QVERIFY(item); + QCOMPARE(warningMessage, QString("file::2:1: QML Column: Cannot specify top, bottom, verticalCenter, fill or centerIn anchors for items inside Column")); warningMessage.clear(); component.setData("import Qt 4.7\nColumn { Item { anchors.left: parent.left } }", QUrl::fromLocalFile("")); @@ -699,7 +705,13 @@ void tst_QDeclarativePositioners::test_conflictinganchors() component.setData("import Qt 4.7\nRow { Item { anchors.left: parent.left } }", QUrl::fromLocalFile("")); item = qobject_cast(component.create()); QVERIFY(item); - QCOMPARE(warningMessage, QString("file::2:1: QML Row: Cannot specify left, right or horizontalCenter anchors for items inside Row")); + QCOMPARE(warningMessage, QString("file::2:1: QML Row: Cannot specify left, right, horizontalCenter, fill or centerIn anchors for items inside Row")); + warningMessage.clear(); + + component.setData("import Qt 4.7\nRow { Item { anchors.fill: parent } }", QUrl::fromLocalFile("")); + item = qobject_cast(component.create()); + QVERIFY(item); + QCOMPARE(warningMessage, QString("file::2:1: QML Row: Cannot specify left, right, horizontalCenter, fill or centerIn anchors for items inside Row")); warningMessage.clear(); component.setData("import Qt 4.7\nRow { Item { anchors.top: parent.top } }", QUrl::fromLocalFile("")); @@ -714,10 +726,21 @@ void tst_QDeclarativePositioners::test_conflictinganchors() QCOMPARE(warningMessage, QString("file::2:1: QML Grid: Cannot specify anchors for items inside Grid")); warningMessage.clear(); + component.setData("import Qt 4.7\nGrid { Item { anchors.centerIn: parent } }", QUrl::fromLocalFile("")); + item = qobject_cast(component.create()); + QVERIFY(item); + QCOMPARE(warningMessage, QString("file::2:1: QML Grid: Cannot specify anchors for items inside Grid")); + warningMessage.clear(); + component.setData("import Qt 4.7\nFlow { Item { anchors.verticalCenter: parent.verticalCenter } }", QUrl::fromLocalFile("")); item = qobject_cast(component.create()); QVERIFY(item); QCOMPARE(warningMessage, QString("file::2:1: QML Flow: Cannot specify anchors for items inside Flow")); + + component.setData("import Qt 4.7\nFlow { Item { anchors.fill: parent } }", QUrl::fromLocalFile("")); + item = qobject_cast(component.create()); + QVERIFY(item); + QCOMPARE(warningMessage, QString("file::2:1: QML Flow: Cannot specify anchors for items inside Flow")); } QDeclarativeView *tst_QDeclarativePositioners::createView(const QString &filename) -- cgit v1.2.1 From fd0b25da6997553bb95ea91bbdd509fa35711b9d Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Mon, 17 May 2010 13:36:35 +1000 Subject: Fix doc for status, add Image::onLoaded. statusChanged is NOT emitted for local files, nor should it be (they are loaded synchronously, so status is *initially* Ready). Add onLoaded signal that *is* emitted. Reviewed-by: Michael Brasser --- .../declarative/qdeclarativeloader/tst_qdeclarativeloader.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeloader/tst_qdeclarativeloader.cpp b/tests/auto/declarative/qdeclarativeloader/tst_qdeclarativeloader.cpp index b56ff13e1a..59580ea228 100644 --- a/tests/auto/declarative/qdeclarativeloader/tst_qdeclarativeloader.cpp +++ b/tests/auto/declarative/qdeclarativeloader/tst_qdeclarativeloader.cpp @@ -104,13 +104,14 @@ tst_QDeclarativeLoader::tst_QDeclarativeLoader() void tst_QDeclarativeLoader::url() { QDeclarativeComponent component(&engine); - component.setData(QByteArray("import Qt 4.7\nLoader { source: \"Rect120x60.qml\" }"), TEST_FILE("")); + component.setData(QByteArray("import Qt 4.7\nLoader { property int did_load: 0; onLoaded: did_load=123; source: \"Rect120x60.qml\" }"), TEST_FILE("")); QDeclarativeLoader *loader = qobject_cast(component.create()); QVERIFY(loader != 0); QVERIFY(loader->item()); QVERIFY(loader->source() == QUrl::fromLocalFile(SRCDIR "/data/Rect120x60.qml")); QCOMPARE(loader->progress(), 1.0); QCOMPARE(loader->status(), QDeclarativeLoader::Ready); + QCOMPARE(loader->property("did_load").toInt(), 123); QCOMPARE(static_cast(loader)->children().count(), 1); delete loader; @@ -427,7 +428,7 @@ void tst_QDeclarativeLoader::networkRequestUrl() server.serveDirectory(SRCDIR "/data"); QDeclarativeComponent component(&engine); - component.setData(QByteArray("import Qt 4.7\nLoader { source: \"http://127.0.0.1:14450/Rect120x60.qml\" }"), QUrl::fromLocalFile(SRCDIR "/dummy.qml")); + component.setData(QByteArray("import Qt 4.7\nLoader { property int did_load : 0; source: \"http://127.0.0.1:14450/Rect120x60.qml\"; onLoaded: did_load=123 }"), QUrl::fromLocalFile(SRCDIR "/dummy.qml")); if (component.isError()) qDebug() << component.errors(); QDeclarativeLoader *loader = qobject_cast(component.create()); @@ -437,6 +438,7 @@ void tst_QDeclarativeLoader::networkRequestUrl() QVERIFY(loader->item()); QCOMPARE(loader->progress(), 1.0); + QCOMPARE(loader->property("did_load").toInt(), 123); QCOMPARE(static_cast(loader)->children().count(), 1); delete loader; @@ -483,7 +485,7 @@ void tst_QDeclarativeLoader::failNetworkRequest() QTest::ignoreMessage(QtWarningMsg, ": Network error for URL http://127.0.0.1:14450/IDontExist.qml"); QDeclarativeComponent component(&engine); - component.setData(QByteArray("import Qt 4.7\nLoader { source: \"http://127.0.0.1:14450/IDontExist.qml\" }"), QUrl::fromLocalFile("http://127.0.0.1:14450/dummy.qml")); + component.setData(QByteArray("import Qt 4.7\nLoader { property int did_load: 123; source: \"http://127.0.0.1:14450/IDontExist.qml\"; onLoaded: did_load=456 }"), QUrl::fromLocalFile("http://127.0.0.1:14450/dummy.qml")); QDeclarativeLoader *loader = qobject_cast(component.create()); QVERIFY(loader != 0); @@ -491,6 +493,7 @@ void tst_QDeclarativeLoader::failNetworkRequest() QVERIFY(loader->item() == 0); QCOMPARE(loader->progress(), 0.0); + QCOMPARE(loader->property("did_load").toInt(), 123); QCOMPARE(static_cast(loader)->children().count(), 0); delete loader; -- cgit v1.2.1 From 58c08b1195add26e2ff96844885ea9d6c124da30 Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Mon, 17 May 2010 16:22:43 +1000 Subject: Check for acquireReg() failure QTBUG-10696 --- .../qdeclarativeecmascript/data/qtbug_10696.qml | 26 ++++++++++++++++++++++ .../tst_qdeclarativeecmascript.cpp | 9 ++++++++ 2 files changed, 35 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/qtbug_10696.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_10696.qml b/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_10696.qml new file mode 100644 index 0000000000..cb5c4c9189 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_10696.qml @@ -0,0 +1,26 @@ +import Qt 4.7 + +QtObject { + property string test: "aaaa" + + "bbbb" + + "cccc" + + "cccc" + + "cccc" + + "cccc" + + "cccc" + + "cccc" + + "cccc" + + "cccc" + + "cccc" + + "cccc" + + "cccc" + + "cccc" + + "cccc" + + "cccc" + + "cccc" + + "cccc" + + "cccc" + + "cccc" + + "cccc" + + "cccc"; +} diff --git a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp index b8faa7cb76..64e5b3f7b6 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp +++ b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp @@ -149,6 +149,7 @@ private slots: void functionAssignment(); void eval(); void function(); + void qtbug_10696(); void include(); @@ -2472,6 +2473,14 @@ void tst_qdeclarativeecmascript::include() } } +void tst_qdeclarativeecmascript::qtbug_10696() +{ + QDeclarativeComponent component(&engine, TEST_FILE("qtbug_10696.qml")); + QObject *o = component.create(); + QVERIFY(o != 0); + delete o; +} + QTEST_MAIN(tst_qdeclarativeecmascript) #include "tst_qdeclarativeecmascript.moc" -- cgit v1.2.1 From 5227833d76ee072ab7497b790e8058fc79ea8826 Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Mon, 17 May 2010 16:37:32 +1000 Subject: Fix examples autotest when compiled without webkit or xmlpatterns --- tests/auto/declarative/examples/tst_examples.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/examples/tst_examples.cpp b/tests/auto/declarative/examples/tst_examples.cpp index 10440354fd..605345e06b 100644 --- a/tests/auto/declarative/examples/tst_examples.cpp +++ b/tests/auto/declarative/examples/tst_examples.cpp @@ -82,12 +82,12 @@ tst_examples::tst_examples() // Add directories you want excluded here #ifdef QT_NO_WEBKIT - excludedDirs << "examples/declarative/webview"; + excludedDirs << "examples/declarative/modelviews/webview"; excludedDirs << "demos/declarative/webbrowser"; #endif #ifdef QT_NO_XMLPATTERNS - excludedDirs << "examples/declarative/xmldata"; + excludedDirs << "examples/declarative/xml/xmldata"; excludedDirs << "demos/declarative/twitter"; excludedDirs << "demos/declarative/flickr"; excludedDirs << "demos/declarative/photoviewer"; -- cgit v1.2.1 From 5a4329b6844277e92286fc0ae6d4ec15dece2bf6 Mon Sep 17 00:00:00 2001 From: Kurt Korbatits Date: Tue, 18 May 2010 10:11:45 +1000 Subject: Removed mediaservices. --- tests/auto/auto.pro | 1 - tests/auto/mediaservices.pro | 19 - tests/auto/qdeclarativeaudio/qdeclarativeaudio.pro | 14 - .../qdeclarativeaudio/tst_qdeclarativeaudio.cpp | 1252 --------------- tests/auto/qdeclarativevideo/qdeclarativevideo.pro | 14 - .../qdeclarativevideo/tst_qdeclarativevideo.cpp | 921 ----------- .../auto/qgraphicsvideoitem/qgraphicsvideoitem.pro | 5 - .../qgraphicsvideoitem/tst_qgraphicsvideoitem.cpp | 670 -------- tests/auto/qmediacontent/qmediacontent.pro | 6 - tests/auto/qmediacontent/tst_qmediacontent.cpp | 174 --- tests/auto/qmediaobject/qmediaobject.pro | 4 - tests/auto/qmediaobject/tst_qmediaobject.cpp | 549 ------- tests/auto/qmediaplayer/qmediaplayer.pro | 6 - tests/auto/qmediaplayer/tst_qmediaplayer.cpp | 986 ------------ tests/auto/qmediaplaylist/qmediaplaylist.pro | 6 - tests/auto/qmediaplaylist/tmp.unsupported_format | 0 tests/auto/qmediaplaylist/tst_qmediaplaylist.cpp | 593 -------- .../qmediaplaylistnavigator.pro | 6 - .../tst_qmediaplaylistnavigator.cpp | 316 ---- .../auto/qmediapluginloader/qmediapluginloader.pro | 6 - .../qmediapluginloader/tst_qmediapluginloader.cpp | 121 -- tests/auto/qmediaresource/qmediaresource.pro | 6 - tests/auto/qmediaresource/tst_qmediaresource.cpp | 516 ------- tests/auto/qmediaservice/qmediaservice.pro | 6 - tests/auto/qmediaservice/tst_qmediaservice.cpp | 219 --- .../qmediaserviceprovider.pro | 6 - .../tst_qmediaserviceprovider.cpp | 481 ------ tests/auto/qmediatimerange/qmediatimerange.pro | 6 - tests/auto/qmediatimerange/tst_qmediatimerange.cpp | 735 --------- tests/auto/qsoundeffect/qsoundeffect.pro | 20 - tests/auto/qsoundeffect/tst_qsoundeffect.cpp | 144 -- tests/auto/qvideowidget/qvideowidget.pro | 6 - tests/auto/qvideowidget/tst_qvideowidget.cpp | 1602 -------------------- 33 files changed, 9416 deletions(-) delete mode 100644 tests/auto/mediaservices.pro delete mode 100644 tests/auto/qdeclarativeaudio/qdeclarativeaudio.pro delete mode 100644 tests/auto/qdeclarativeaudio/tst_qdeclarativeaudio.cpp delete mode 100644 tests/auto/qdeclarativevideo/qdeclarativevideo.pro delete mode 100644 tests/auto/qdeclarativevideo/tst_qdeclarativevideo.cpp delete mode 100644 tests/auto/qgraphicsvideoitem/qgraphicsvideoitem.pro delete mode 100644 tests/auto/qgraphicsvideoitem/tst_qgraphicsvideoitem.cpp delete mode 100644 tests/auto/qmediacontent/qmediacontent.pro delete mode 100644 tests/auto/qmediacontent/tst_qmediacontent.cpp delete mode 100644 tests/auto/qmediaobject/qmediaobject.pro delete mode 100644 tests/auto/qmediaobject/tst_qmediaobject.cpp delete mode 100644 tests/auto/qmediaplayer/qmediaplayer.pro delete mode 100644 tests/auto/qmediaplayer/tst_qmediaplayer.cpp delete mode 100644 tests/auto/qmediaplaylist/qmediaplaylist.pro delete mode 100644 tests/auto/qmediaplaylist/tmp.unsupported_format delete mode 100644 tests/auto/qmediaplaylist/tst_qmediaplaylist.cpp delete mode 100644 tests/auto/qmediaplaylistnavigator/qmediaplaylistnavigator.pro delete mode 100644 tests/auto/qmediaplaylistnavigator/tst_qmediaplaylistnavigator.cpp delete mode 100644 tests/auto/qmediapluginloader/qmediapluginloader.pro delete mode 100644 tests/auto/qmediapluginloader/tst_qmediapluginloader.cpp delete mode 100644 tests/auto/qmediaresource/qmediaresource.pro delete mode 100644 tests/auto/qmediaresource/tst_qmediaresource.cpp delete mode 100644 tests/auto/qmediaservice/qmediaservice.pro delete mode 100644 tests/auto/qmediaservice/tst_qmediaservice.cpp delete mode 100644 tests/auto/qmediaserviceprovider/qmediaserviceprovider.pro delete mode 100644 tests/auto/qmediaserviceprovider/tst_qmediaserviceprovider.cpp delete mode 100644 tests/auto/qmediatimerange/qmediatimerange.pro delete mode 100644 tests/auto/qmediatimerange/tst_qmediatimerange.cpp delete mode 100644 tests/auto/qsoundeffect/qsoundeffect.pro delete mode 100644 tests/auto/qsoundeffect/tst_qsoundeffect.cpp delete mode 100644 tests/auto/qvideowidget/qvideowidget.pro delete mode 100644 tests/auto/qvideowidget/tst_qvideowidget.cpp (limited to 'tests/auto') diff --git a/tests/auto/auto.pro b/tests/auto/auto.pro index 12ebc75766..c0004f7cb1 100644 --- a/tests/auto/auto.pro +++ b/tests/auto/auto.pro @@ -16,7 +16,6 @@ unix:!embedded:contains(QT_CONFIG, dbus): SUBDIRS += dbus.pro contains(QT_CONFIG, script): SUBDIRS += script.pro contains(QT_CONFIG, webkit): SUBDIRS += webkit.pro contains(QT_CONFIG, multimedia): SUBDIRS += multimedia.pro -contains(QT_CONFIG, mediaservices): SUBDIRS += mediaservices.pro contains(QT_CONFIG, phonon): SUBDIRS += phonon.pro contains(QT_CONFIG, svg): SUBDIRS += svg.pro contains(QT_CONFIG, declarative): SUBDIRS += declarative.pro diff --git a/tests/auto/mediaservices.pro b/tests/auto/mediaservices.pro deleted file mode 100644 index 1b50cd7817..0000000000 --- a/tests/auto/mediaservices.pro +++ /dev/null @@ -1,19 +0,0 @@ -TEMPLATE=subdirs -SUBDIRS=\ - qsoundeffect \ - qdeclarativeaudio \ - qdeclarativevideo \ - qgraphicsvideoitem \ - qmediacontent \ - qmediaobject \ - qmediaplayer \ - qmediaplaylist \ - qmediaplaylistnavigator \ - qmediapluginloader \ - qmediaresource \ - qmediaservice \ - qmediaserviceprovider \ - qmediatimerange \ - qvideowidget - - diff --git a/tests/auto/qdeclarativeaudio/qdeclarativeaudio.pro b/tests/auto/qdeclarativeaudio/qdeclarativeaudio.pro deleted file mode 100644 index ecfe299443..0000000000 --- a/tests/auto/qdeclarativeaudio/qdeclarativeaudio.pro +++ /dev/null @@ -1,14 +0,0 @@ -load(qttest_p4) - -HEADERS += \ - $$PWD/../../../src/imports/multimedia/qdeclarativeaudio_p.h \ - $$PWD/../../../src/imports/multimedia/qdeclarativemediabase_p.h \ - $$PWD/../../../src/imports/multimedia/qmetadatacontrolmetaobject_p.h - -SOURCES += \ - tst_qdeclarativeaudio.cpp \ - $$PWD/../../../src/imports/multimedia/qdeclarativeaudio.cpp \ - $$PWD/../../../src/imports/multimedia/qdeclarativemediabase.cpp \ - $$PWD/../../../src/imports/multimedia/qmetadatacontrolmetaobject.cpp - -QT += mediaservices declarative diff --git a/tests/auto/qdeclarativeaudio/tst_qdeclarativeaudio.cpp b/tests/auto/qdeclarativeaudio/tst_qdeclarativeaudio.cpp deleted file mode 100644 index e393599295..0000000000 --- a/tests/auto/qdeclarativeaudio/tst_qdeclarativeaudio.cpp +++ /dev/null @@ -1,1252 +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 test suite 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 "../../../src/imports/multimedia/qdeclarativeaudio_p.h" - -#include -#include -#include -#include - - -class tst_QDeclarativeAudio : public QObject -{ - Q_OBJECT -public slots: - void initTestCase(); - -private slots: - void nullPlayerControl(); - void nullMetaDataControl(); - void nullService(); - - void source(); - void autoLoad(); - void playing(); - void paused(); - void duration(); - void position(); - void volume(); - void muted(); - void bufferProgress(); - void seekable(); - void playbackRate(); - void status(); - void metaData_data(); - void metaData(); - void error(); -}; - -Q_DECLARE_METATYPE(QtMediaServices::MetaData); -Q_DECLARE_METATYPE(QDeclarativeAudio::Error); - -class QtTestMediaPlayerControl : public QMediaPlayerControl -{ - Q_OBJECT -public: - QtTestMediaPlayerControl(QObject *parent = 0) - : QMediaPlayerControl(parent) - , m_state(QMediaPlayer::StoppedState) - , m_mediaStatus(QMediaPlayer::NoMedia) - , m_duration(0) - , m_position(0) - , m_playbackRate(1.0) - , m_volume(50) - , m_bufferStatus(0) - , m_muted(false) - , m_audioAvailable(false) - , m_videoAvailable(false) - , m_seekable(false) - { - } - - QMediaPlayer::State state() const { return m_state; } - void updateState(QMediaPlayer::State state) { emit stateChanged(m_state = state); } - - QMediaPlayer::MediaStatus mediaStatus() const { return m_mediaStatus; } - void updateMediaStatus(QMediaPlayer::MediaStatus status) { - emit mediaStatusChanged(m_mediaStatus = status); } - void updateMediaStatus(QMediaPlayer::MediaStatus status, QMediaPlayer::State state) - { - m_mediaStatus = status; - m_state = state; - - emit mediaStatusChanged(m_mediaStatus); - emit stateChanged(m_state); - } - - qint64 duration() const { return m_duration; } - void setDuration(qint64 duration) { emit durationChanged(m_duration = duration); } - - qint64 position() const { return m_position; } - void setPosition(qint64 position) { emit positionChanged(m_position = position); } - - int volume() const { return m_volume; } - void setVolume(int volume) { emit volumeChanged(m_volume = volume); } - - bool isMuted() const { return m_muted; } - void setMuted(bool muted) { emit mutedChanged(m_muted = muted); } - - int bufferStatus() const { return m_bufferStatus; } - void setBufferStatus(int status) { emit bufferStatusChanged(m_bufferStatus = status); } - - bool isAudioAvailable() const { return m_audioAvailable; } - void setAudioAvailable(bool available) { - emit audioAvailableChanged(m_audioAvailable = available); } - bool isVideoAvailable() const { return m_videoAvailable; } - void setVideoAvailable(bool available) { - emit videoAvailableChanged(m_videoAvailable = available); } - - bool isSeekable() const { return m_seekable; } - void setSeekable(bool seekable) { emit seekableChanged(m_seekable = seekable); } - - QMediaTimeRange availablePlaybackRanges() const { return QMediaTimeRange(); } - - qreal playbackRate() const { return m_playbackRate; } - void setPlaybackRate(qreal rate) { emit playbackRateChanged(m_playbackRate = rate); } - - QMediaContent media() const { return m_media; } - const QIODevice *mediaStream() const { return 0; } - void setMedia(const QMediaContent &media, QIODevice *) - { - m_media = media; - - m_mediaStatus = m_media.isNull() - ? QMediaPlayer::NoMedia - : QMediaPlayer::LoadingMedia; - - emit mediaChanged(m_media); - emit mediaStatusChanged(m_mediaStatus); - } - - void play() { emit stateChanged(m_state = QMediaPlayer::PlayingState); } - void pause() { emit stateChanged(m_state = QMediaPlayer::PausedState); } - void stop() { emit stateChanged(m_state = QMediaPlayer::StoppedState); } - - void emitError(QMediaPlayer::Error err, const QString &errorString) { - emit error(err, errorString); } - -private: - QMediaPlayer::State m_state; - QMediaPlayer::MediaStatus m_mediaStatus; - qint64 m_duration; - qint64 m_position; - qreal m_playbackRate; - int m_volume; - int m_bufferStatus; - bool m_muted; - bool m_audioAvailable; - bool m_videoAvailable; - bool m_seekable; - QMediaContent m_media; -}; - -class QtTestMetaDataControl : public QMetaDataControl -{ - Q_OBJECT -public: - QtTestMetaDataControl(QObject *parent = 0) - : QMetaDataControl(parent) - { - } - - bool isWritable() const { return true; } - bool isMetaDataAvailable() const { return true; } - - QVariant metaData(QtMediaServices::MetaData key) const { return m_metaData.value(key); } - void setMetaData(QtMediaServices::MetaData key, const QVariant &value) { - m_metaData.insert(key, value); emit metaDataChanged(); } - void setMetaData(const QMap &metaData) { - m_metaData = metaData; emit metaDataChanged(); } - - QList availableMetaData() const { return m_metaData.keys(); } - - QVariant extendedMetaData(const QString &) const { return QVariant(); } - void setExtendedMetaData(const QString &, const QVariant &) {} - QStringList availableExtendedMetaData() const { return QStringList(); } - -private: - QMap m_metaData; -}; - -class QtTestMediaService : public QMediaService -{ - Q_OBJECT -public: - QtTestMediaService( - QtTestMediaPlayerControl *playerControl, - QtTestMetaDataControl *metaDataControl, - QObject *parent) - : QMediaService(parent) - , playerControl(playerControl) - , metaDataControl(metaDataControl) - { - } - - QMediaControl *control(const char *name) const - { - if (qstrcmp(name, QMediaPlayerControl_iid) == 0) - return playerControl; - else if (qstrcmp(name, QMetaDataControl_iid) == 0) - return metaDataControl; - else - return 0; - } - - QtTestMediaPlayerControl *playerControl; - QtTestMetaDataControl *metaDataControl; -}; - -class QtTestMediaServiceProvider : public QMediaServiceProvider -{ - Q_OBJECT -public: - QtTestMediaServiceProvider() - : service(new QtTestMediaService( - new QtTestMediaPlayerControl(this), new QtTestMetaDataControl(this), this)) - { - setDefaultServiceProvider(this); - } - - QtTestMediaServiceProvider(QtTestMediaService *service) - : service(service) - { - setDefaultServiceProvider(this); - } - - QtTestMediaServiceProvider( - QtTestMediaPlayerControl *playerControl, QtTestMetaDataControl *metaDataControl) - : service(new QtTestMediaService(playerControl, metaDataControl, this)) - { - setDefaultServiceProvider(this); - } - - ~QtTestMediaServiceProvider() - { - setDefaultServiceProvider(0); - } - - QMediaService *requestService( - const QByteArray &type, - const QMediaServiceProviderHint & = QMediaServiceProviderHint()) - { - requestedService = type; - - return service; - } - - void releaseService(QMediaService *) {} - - inline QtTestMediaPlayerControl *playerControl() { return service->playerControl; } - inline QtTestMetaDataControl *metaDataControl() { return service->metaDataControl; } - - QtTestMediaService *service; - QByteArray requestedService; -}; - - -void tst_QDeclarativeAudio::initTestCase() -{ - qRegisterMetaType(); -} - -void tst_QDeclarativeAudio::nullPlayerControl() -{ - QtTestMetaDataControl metaDataControl; - QtTestMediaServiceProvider provider(0, &metaDataControl); - - QDeclarativeAudio audio; - - QCOMPARE(audio.source(), QUrl()); - audio.setSource(QUrl("http://example.com")); - QCOMPARE(audio.source(), QUrl("http://example.com")); - - QCOMPARE(audio.isPlaying(), false); - audio.setPlaying(true); - QCOMPARE(audio.isPlaying(), true); - audio.setPlaying(false); - audio.play(); - QCOMPARE(audio.isPlaying(), false); - - QCOMPARE(audio.isPaused(), false); - audio.pause(); - QCOMPARE(audio.isPaused(), false); - audio.setPaused(true); - QCOMPARE(audio.isPaused(), true); - - QCOMPARE(audio.duration(), 0); - - QCOMPARE(audio.position(), 0); - audio.setPosition(10000); - QCOMPARE(audio.position(), 10000); - - QCOMPARE(audio.volume(), qreal(1.0)); - audio.setVolume(0.5); - QCOMPARE(audio.volume(), qreal(0.5)); - - QCOMPARE(audio.isMuted(), false); - audio.setMuted(true); - QCOMPARE(audio.isMuted(), true); - - QCOMPARE(audio.bufferProgress(), qreal(0)); - - QCOMPARE(audio.isSeekable(), false); - - QCOMPARE(audio.playbackRate(), qreal(1.0)); - - QCOMPARE(audio.status(), QDeclarativeAudio::NoMedia); - - QCOMPARE(audio.error(), QDeclarativeAudio::ServiceMissing); -} - -void tst_QDeclarativeAudio::nullMetaDataControl() -{ - QtTestMediaPlayerControl playerControl; - QtTestMediaServiceProvider provider(&playerControl, 0); - - QDeclarativeAudio audio; - - QCOMPARE(audio.metaObject()->indexOfProperty("title"), -1); - QCOMPARE(audio.metaObject()->indexOfProperty("genre"), -1); - QCOMPARE(audio.metaObject()->indexOfProperty("description"), -1); -} - -void tst_QDeclarativeAudio::nullService() -{ - QtTestMediaServiceProvider provider(0); - - QDeclarativeAudio audio; - - QCOMPARE(audio.source(), QUrl()); - audio.setSource(QUrl("http://example.com")); - QCOMPARE(audio.source(), QUrl("http://example.com")); - - QCOMPARE(audio.isPlaying(), false); - audio.setPlaying(true); - QCOMPARE(audio.isPlaying(), true); - audio.setPlaying(false); - audio.play(); - QCOMPARE(audio.isPlaying(), false); - - QCOMPARE(audio.isPaused(), false); - audio.pause(); - QCOMPARE(audio.isPaused(), false); - audio.setPaused(true); - QCOMPARE(audio.isPaused(), true); - - QCOMPARE(audio.duration(), 0); - - QCOMPARE(audio.position(), 0); - audio.setPosition(10000); - QCOMPARE(audio.position(), 10000); - - QCOMPARE(audio.volume(), qreal(1.0)); - audio.setVolume(0.5); - QCOMPARE(audio.volume(), qreal(0.5)); - - QCOMPARE(audio.isMuted(), false); - audio.setMuted(true); - QCOMPARE(audio.isMuted(), true); - - QCOMPARE(audio.bufferProgress(), qreal(0)); - - QCOMPARE(audio.isSeekable(), false); - - QCOMPARE(audio.playbackRate(), qreal(1.0)); - - QCOMPARE(audio.status(), QDeclarativeAudio::NoMedia); - - QCOMPARE(audio.error(), QDeclarativeAudio::ServiceMissing); - - QCOMPARE(audio.metaObject()->indexOfProperty("title"), -1); - QCOMPARE(audio.metaObject()->indexOfProperty("genre"), -1); - QCOMPARE(audio.metaObject()->indexOfProperty("description"), -1); -} - -void tst_QDeclarativeAudio::source() -{ - const QUrl url1("http://example.com"); - const QUrl url2("file:///local/path"); - const QUrl url3; - - QtTestMediaServiceProvider provider; - QDeclarativeAudio audio; - audio.componentComplete(); - - QSignalSpy spy(&audio, SIGNAL(sourceChanged())); - - audio.setSource(url1); - QCOMPARE(audio.source(), url1); - QCOMPARE(provider.playerControl()->media().canonicalUrl(), url1); - QCOMPARE(spy.count(), 1); - - audio.setSource(url2); - QCOMPARE(audio.source(), url2); - QCOMPARE(provider.playerControl()->media().canonicalUrl(), url2); - QCOMPARE(spy.count(), 2); - - audio.setSource(url3); - QCOMPARE(audio.source(), url3); - QCOMPARE(provider.playerControl()->media().canonicalUrl(), url3); - QCOMPARE(spy.count(), 3); -} - -void tst_QDeclarativeAudio::autoLoad() -{ - QtTestMediaServiceProvider provider; - QDeclarativeAudio audio; - audio.componentComplete(); - - QSignalSpy spy(&audio, SIGNAL(autoLoadChanged())); - - QCOMPARE(audio.isAutoLoad(), true); - - audio.setAutoLoad(false); - QCOMPARE(audio.isAutoLoad(), false); - QCOMPARE(spy.count(), 1); - - audio.setSource(QUrl("http://example.com")); - QCOMPARE(audio.source(), QUrl("http://example.com")); - audio.play(); - QCOMPARE(audio.isPlaying(), true); - audio.stop(); - - audio.setAutoLoad(true); - audio.setSource(QUrl("http://example.com")); - audio.setPaused(true); - QCOMPARE(spy.count(), 2); - QCOMPARE(audio.isPaused(), true); -} - -void tst_QDeclarativeAudio::playing() -{ - QtTestMediaServiceProvider provider; - QDeclarativeAudio audio; - - QSignalSpy playingChangedSpy(&audio, SIGNAL(playingChanged())); - QSignalSpy startedSpy(&audio, SIGNAL(started())); - QSignalSpy stoppedSpy(&audio, SIGNAL(stopped())); - - int playingChanged = 0; - int started = 0; - int stopped = 0; - - audio.componentComplete(); - - QCOMPARE(audio.isPlaying(), false); - - // setPlaying(true) when stopped. - audio.setPlaying(true); - QCOMPARE(audio.isPlaying(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PlayingState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(startedSpy.count(), ++started); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPlaying(false) when playing. - audio.setPlaying(false); - QCOMPARE(audio.isPlaying(), false); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(stoppedSpy.count(), ++stopped); - - // play() when stopped. - audio.play(); - QCOMPARE(audio.isPlaying(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PlayingState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(startedSpy.count(), ++started); - QCOMPARE(stoppedSpy.count(), stopped); - - // stop() when playing. - audio.stop(); - QCOMPARE(audio.isPlaying(), false); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(stoppedSpy.count(), ++stopped); - - // stop() when stopped. - audio.stop(); - QCOMPARE(audio.isPlaying(), false); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPlaying(false) when stopped. - audio.setPlaying(false); - QCOMPARE(audio.isPlaying(), false); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(stoppedSpy.count(), stopped); - - audio.setPlaying(true); - QCOMPARE(audio.isPlaying(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PlayingState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(startedSpy.count(), ++started); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPlaying(true) when playing. - audio.setPlaying(true); - QCOMPARE(audio.isPlaying(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PlayingState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(stoppedSpy.count(), stopped); - - // play() when playing. - audio.play(); - QCOMPARE(audio.isPlaying(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PlayingState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(stoppedSpy.count(), stopped); -} - -void tst_QDeclarativeAudio::paused() -{ - QtTestMediaServiceProvider provider; - QDeclarativeAudio audio; - - QSignalSpy playingChangedSpy(&audio, SIGNAL(playingChanged())); - QSignalSpy pausedChangedSpy(&audio, SIGNAL(pausedChanged())); - QSignalSpy startedSpy(&audio, SIGNAL(started())); - QSignalSpy pausedSpy(&audio, SIGNAL(paused())); - QSignalSpy resumedSpy(&audio, SIGNAL(resumed())); - QSignalSpy stoppedSpy(&audio, SIGNAL(stopped())); - - int playingChanged = 0; - int pausedChanged = 0; - int started = 0; - int paused = 0; - int resumed = 0; - int stopped = 0; - - audio.componentComplete(); - - QCOMPARE(audio.isPlaying(), false); - QCOMPARE(audio.isPaused(), false); - - // setPlaying(true) when stopped. - audio.setPlaying(true); - QCOMPARE(audio.isPlaying(), true); - QCOMPARE(audio.isPaused(), false); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PlayingState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(pausedChangedSpy.count(), pausedChanged); - QCOMPARE(startedSpy.count(), ++started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPaused(true) when playing. - audio.setPaused(true); - QCOMPARE(audio.isPlaying(), true); - QCOMPARE(audio.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PausedState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), ++pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), ++paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPaused(true) when paused. - audio.setPaused(true); - QCOMPARE(audio.isPlaying(), true); - QCOMPARE(audio.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PausedState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // pause() when paused. - audio.pause(); - QCOMPARE(audio.isPlaying(), true); - QCOMPARE(audio.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PausedState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPaused(false) when paused. - audio.setPaused(false); - QCOMPARE(audio.isPlaying(), true); - QCOMPARE(audio.isPaused(), false); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PlayingState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), ++pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), ++resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPaused(false) when playing. - audio.setPaused(false); - QCOMPARE(audio.isPlaying(), true); - QCOMPARE(audio.isPaused(), false); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PlayingState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // pause() when playing. - audio.pause(); - QCOMPARE(audio.isPlaying(), true); - QCOMPARE(audio.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PausedState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), ++pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), ++paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPlaying(false) when paused. - audio.setPlaying(false); - QCOMPARE(audio.isPlaying(), false); - QCOMPARE(audio.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(pausedChangedSpy.count(), pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), ++stopped); - - // setPaused(true) when stopped and paused. - audio.setPaused(true); - QCOMPARE(audio.isPlaying(), false); - QCOMPARE(audio.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPaused(false) when stopped and paused. - audio.setPaused(false); - QCOMPARE(audio.isPlaying(), false); - QCOMPARE(audio.isPaused(), false); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), ++pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPaused(true) when stopped. - audio.setPaused(true); - QCOMPARE(audio.isPlaying(), false); - QCOMPARE(audio.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), ++pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPlaying(true) when stopped and paused. - audio.setPlaying(true); - QCOMPARE(audio.isPlaying(), true); - QCOMPARE(audio.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PausedState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(pausedChangedSpy.count(), pausedChanged); - QCOMPARE(startedSpy.count(), ++started); - QCOMPARE(pausedSpy.count(), ++paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // play() when paused. - audio.play(); - QCOMPARE(audio.isPlaying(), true); - QCOMPARE(audio.isPaused(), false); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PlayingState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), ++pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), ++resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPaused(true) when playing. - audio.setPaused(true); - QCOMPARE(audio.isPlaying(), true); - QCOMPARE(audio.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PausedState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), ++pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), ++paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // stop() when paused. - audio.stop(); - QCOMPARE(audio.isPlaying(), false); - QCOMPARE(audio.isPaused(), false); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(pausedChangedSpy.count(), ++pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), ++stopped); - - // setPaused(true) when stopped. - audio.setPaused(true); - QCOMPARE(audio.isPlaying(), false); - QCOMPARE(audio.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), ++pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // stop() when stopped and paused. - audio.stop(); - QCOMPARE(audio.isPlaying(), false); - QCOMPARE(audio.isPaused(), false); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), ++pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // pause() when stopped. - audio.pause(); - QCOMPARE(audio.isPlaying(), true); - QCOMPARE(audio.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PausedState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(pausedChangedSpy.count(), ++pausedChanged); - QCOMPARE(startedSpy.count(), ++started); - QCOMPARE(pausedSpy.count(), ++paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPlaying(false) when paused. - audio.setPlaying(false); - QCOMPARE(audio.isPlaying(), false); - QCOMPARE(audio.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(pausedChangedSpy.count(), pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), ++stopped); - - // pause() when stopped and paused. - audio.pause(); - QCOMPARE(audio.isPlaying(), true); - QCOMPARE(audio.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PausedState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(pausedChangedSpy.count(), pausedChanged); - QCOMPARE(startedSpy.count(), ++started); - QCOMPARE(pausedSpy.count(), ++paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPlaying(false) when paused. - audio.setPlaying(false); - QCOMPARE(audio.isPlaying(), false); - QCOMPARE(audio.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(pausedChangedSpy.count(), pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), ++stopped); - - // play() when stopped and paused. - audio.play(); - QCOMPARE(audio.isPlaying(), true); - QCOMPARE(audio.isPaused(), false); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PlayingState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(pausedChangedSpy.count(), ++pausedChanged); - QCOMPARE(startedSpy.count(), ++started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); -} - -void tst_QDeclarativeAudio::duration() -{ - QtTestMediaServiceProvider provider; - QDeclarativeAudio audio; - - audio.componentComplete(); - - QSignalSpy spy(&audio, SIGNAL(durationChanged())); - - QCOMPARE(audio.duration(), 0); - - provider.playerControl()->setDuration(4040); - QCOMPARE(audio.duration(), 4040); - QCOMPARE(spy.count(), 1); - - provider.playerControl()->setDuration(-129); - QCOMPARE(audio.duration(), -129); - QCOMPARE(spy.count(), 2); - - provider.playerControl()->setDuration(0); - QCOMPARE(audio.duration(), 0); - QCOMPARE(spy.count(), 3); - - // Unnecessary duration changed signals aren't filtered. - provider.playerControl()->setDuration(0); - QCOMPARE(audio.duration(), 0); - QCOMPARE(spy.count(), 4); -} - -void tst_QDeclarativeAudio::position() -{ - QtTestMediaServiceProvider provider; - QDeclarativeAudio audio; - audio.componentComplete(); - - QSignalSpy spy(&audio, SIGNAL(positionChanged())); - - QCOMPARE(audio.position(), 0); - - // QDeclarativeAudio won't bound set positions to the duration. A media service may though. - QCOMPARE(audio.duration(), 0); - - audio.setPosition(450); - QCOMPARE(audio.position(), 450); - QCOMPARE(provider.playerControl()->position(), qint64(450)); - QCOMPARE(spy.count(), 1); - - audio.setPosition(-5403); - QCOMPARE(audio.position(), -5403); - QCOMPARE(provider.playerControl()->position(), qint64(-5403)); - QCOMPARE(spy.count(), 2); - - audio.setPosition(-5403); - QCOMPARE(audio.position(), -5403); - QCOMPARE(provider.playerControl()->position(), qint64(-5403)); - QCOMPARE(spy.count(), 2); - - // Check the signal change signal is emitted if the change originates from the media service. - provider.playerControl()->setPosition(0); - QCOMPARE(audio.position(), 0); - QCOMPARE(spy.count(), 3); - - connect(&audio, SIGNAL(positionChanged()), &QTestEventLoop::instance(), SLOT(exitLoop())); - - provider.playerControl()->updateState(QMediaPlayer::PlayingState); - QTestEventLoop::instance().enterLoop(1); - QVERIFY(spy.count() > 3 && spy.count() < 6); // 4 or 5 - - provider.playerControl()->updateState(QMediaPlayer::PausedState); - QTestEventLoop::instance().enterLoop(1); - QVERIFY(spy.count() < 6); -} - -void tst_QDeclarativeAudio::volume() -{ - QtTestMediaServiceProvider provider; - QDeclarativeAudio audio; - audio.componentComplete(); - - QSignalSpy spy(&audio, SIGNAL(volumeChanged())); - - QCOMPARE(audio.volume(), qreal(1.0)); - - audio.setVolume(0.7); - QCOMPARE(audio.volume(), qreal(0.7)); - QCOMPARE(provider.playerControl()->volume(), 70); - QCOMPARE(spy.count(), 1); - - audio.setVolume(0.7); - QCOMPARE(audio.volume(), qreal(0.7)); - QCOMPARE(provider.playerControl()->volume(), 70); - QCOMPARE(spy.count(), 1); - - provider.playerControl()->setVolume(30); - QCOMPARE(audio.volume(), qreal(0.3)); - QCOMPARE(spy.count(), 2); -} - -void tst_QDeclarativeAudio::muted() -{ - QtTestMediaServiceProvider provider; - QDeclarativeAudio audio; - audio.componentComplete(); - - QSignalSpy spy(&audio, SIGNAL(mutedChanged())); - - QCOMPARE(audio.isMuted(), false); - - audio.setMuted(true); - QCOMPARE(audio.isMuted(), true); - QCOMPARE(provider.playerControl()->isMuted(), true); - QCOMPARE(spy.count(), 1); - - provider.playerControl()->setMuted(false); - QCOMPARE(audio.isMuted(), false); - QCOMPARE(spy.count(), 2); - - audio.setMuted(false); - QCOMPARE(audio.isMuted(), false); - QCOMPARE(provider.playerControl()->isMuted(), false); - QCOMPARE(spy.count(), 3); -} - -void tst_QDeclarativeAudio::bufferProgress() -{ - QtTestMediaServiceProvider provider; - QDeclarativeAudio audio; - - audio.componentComplete(); - - QSignalSpy spy(&audio, SIGNAL(bufferProgressChanged())); - - QCOMPARE(audio.bufferProgress(), qreal(0.0)); - - provider.playerControl()->setBufferStatus(20); - QCOMPARE(audio.bufferProgress(), qreal(0.2)); - QCOMPARE(spy.count(), 1); - - provider.playerControl()->setBufferStatus(20); - QCOMPARE(audio.bufferProgress(), qreal(0.2)); - QCOMPARE(spy.count(), 2); - - provider.playerControl()->setBufferStatus(40); - QCOMPARE(audio.bufferProgress(), qreal(0.4)); - QCOMPARE(spy.count(), 3); - - connect(&audio, SIGNAL(positionChanged()), &QTestEventLoop::instance(), SLOT(exitLoop())); - - provider.playerControl()->updateMediaStatus( - QMediaPlayer::BufferingMedia, QMediaPlayer::PlayingState); - QTestEventLoop::instance().enterLoop(1); - QVERIFY(spy.count() > 3 && spy.count() < 6); // 4 or 5 - - provider.playerControl()->updateMediaStatus(QMediaPlayer::BufferedMedia); - QTestEventLoop::instance().enterLoop(1); - QVERIFY(spy.count() < 6); -} - -void tst_QDeclarativeAudio::seekable() -{ - QtTestMediaServiceProvider provider; - QDeclarativeAudio audio; - - audio.componentComplete(); - - QSignalSpy spy(&audio, SIGNAL(seekableChanged())); - - QCOMPARE(audio.isSeekable(), false); - - provider.playerControl()->setSeekable(true); - QCOMPARE(audio.isSeekable(), true); - QCOMPARE(spy.count(), 1); - - provider.playerControl()->setSeekable(true); - QCOMPARE(audio.isSeekable(), true); - QCOMPARE(spy.count(), 2); - - provider.playerControl()->setSeekable(false); - QCOMPARE(audio.isSeekable(), false); - QCOMPARE(spy.count(), 3); -} - -void tst_QDeclarativeAudio::playbackRate() -{ - QtTestMediaServiceProvider provider; - QDeclarativeAudio audio; - - audio.componentComplete(); - - QSignalSpy spy(&audio, SIGNAL(playbackRateChanged())); - - QCOMPARE(audio.playbackRate(), qreal(1.0)); - - audio.setPlaybackRate(0.5); - QCOMPARE(audio.playbackRate(), qreal(0.5)); - QCOMPARE(provider.playerControl()->playbackRate(), qreal(0.5)); - QCOMPARE(spy.count(), 1); - - provider.playerControl()->setPlaybackRate(2.0); - QCOMPARE(provider.playerControl()->playbackRate(), qreal(2.0)); - QCOMPARE(spy.count(), 2); - - audio.setPlaybackRate(2.0); - QCOMPARE(audio.playbackRate(), qreal(2.0)); - QCOMPARE(provider.playerControl()->playbackRate(), qreal(2.0)); - QCOMPARE(spy.count(), 3); -} - -void tst_QDeclarativeAudio::status() -{ - QtTestMediaServiceProvider provider; - QDeclarativeAudio audio; - - audio.componentComplete(); - - QSignalSpy statusChangedSpy(&audio, SIGNAL(statusChanged())); - QSignalSpy loadedSpy(&audio, SIGNAL(loaded())); - QSignalSpy bufferingSpy(&audio, SIGNAL(buffering())); - QSignalSpy stalledSpy(&audio, SIGNAL(stalled())); - QSignalSpy bufferedSpy(&audio, SIGNAL(buffered())); - QSignalSpy endOfMediaSpy(&audio, SIGNAL(endOfMedia())); - - QCOMPARE(audio.status(), QDeclarativeAudio::NoMedia); - - // Set media, start loading. - provider.playerControl()->updateMediaStatus(QMediaPlayer::LoadingMedia); - QCOMPARE(audio.status(), QDeclarativeAudio::Loading); - QCOMPARE(statusChangedSpy.count(), 1); - QCOMPARE(loadedSpy.count(), 0); - QCOMPARE(bufferingSpy.count(), 0); - QCOMPARE(stalledSpy.count(), 0); - QCOMPARE(bufferedSpy.count(), 0); - QCOMPARE(endOfMediaSpy.count(), 0); - - // Finish loading. - provider.playerControl()->updateMediaStatus(QMediaPlayer::LoadedMedia); - QCOMPARE(audio.status(), QDeclarativeAudio::Loaded); - QCOMPARE(statusChangedSpy.count(), 2); - QCOMPARE(loadedSpy.count(), 1); - QCOMPARE(bufferingSpy.count(), 0); - QCOMPARE(stalledSpy.count(), 0); - QCOMPARE(bufferedSpy.count(), 0); - QCOMPARE(endOfMediaSpy.count(), 0); - - // Play, start buffering. - provider.playerControl()->updateMediaStatus( - QMediaPlayer::StalledMedia, QMediaPlayer::PlayingState); - QCOMPARE(audio.status(), QDeclarativeAudio::Stalled); - QCOMPARE(statusChangedSpy.count(), 3); - QCOMPARE(loadedSpy.count(), 1); - QCOMPARE(bufferingSpy.count(), 0); - QCOMPARE(stalledSpy.count(), 1); - QCOMPARE(bufferedSpy.count(), 0); - QCOMPARE(endOfMediaSpy.count(), 0); - - // Enough data buffered to proceed. - provider.playerControl()->updateMediaStatus(QMediaPlayer::BufferingMedia); - QCOMPARE(audio.status(), QDeclarativeAudio::Buffering); - QCOMPARE(statusChangedSpy.count(), 4); - QCOMPARE(loadedSpy.count(), 1); - QCOMPARE(bufferingSpy.count(), 1); - QCOMPARE(stalledSpy.count(), 1); - QCOMPARE(bufferedSpy.count(), 0); - QCOMPARE(endOfMediaSpy.count(), 0); - - // Errant second buffering status changed. - provider.playerControl()->updateMediaStatus(QMediaPlayer::BufferingMedia); - QCOMPARE(audio.status(), QDeclarativeAudio::Buffering); - QCOMPARE(statusChangedSpy.count(), 4); - QCOMPARE(loadedSpy.count(), 1); - QCOMPARE(bufferingSpy.count(), 1); - QCOMPARE(stalledSpy.count(), 1); - QCOMPARE(bufferedSpy.count(), 0); - QCOMPARE(endOfMediaSpy.count(), 0); - - // Buffer full. - provider.playerControl()->updateMediaStatus(QMediaPlayer::BufferedMedia); - QCOMPARE(audio.status(), QDeclarativeAudio::Buffered); - QCOMPARE(statusChangedSpy.count(), 5); - QCOMPARE(loadedSpy.count(), 1); - QCOMPARE(bufferingSpy.count(), 1); - QCOMPARE(stalledSpy.count(), 1); - QCOMPARE(bufferedSpy.count(), 1); - QCOMPARE(endOfMediaSpy.count(), 0); - - // Buffer getting low. - provider.playerControl()->updateMediaStatus(QMediaPlayer::BufferingMedia); - QCOMPARE(audio.status(), QDeclarativeAudio::Buffering); - QCOMPARE(statusChangedSpy.count(), 6); - QCOMPARE(loadedSpy.count(), 1); - QCOMPARE(bufferingSpy.count(), 2); - QCOMPARE(stalledSpy.count(), 1); - QCOMPARE(bufferedSpy.count(), 1); - QCOMPARE(endOfMediaSpy.count(), 0); - - // Buffer full. - provider.playerControl()->updateMediaStatus(QMediaPlayer::BufferedMedia); - QCOMPARE(audio.status(), QDeclarativeAudio::Buffered); - QCOMPARE(statusChangedSpy.count(), 7); - QCOMPARE(loadedSpy.count(), 1); - QCOMPARE(bufferingSpy.count(), 2); - QCOMPARE(stalledSpy.count(), 1); - QCOMPARE(bufferedSpy.count(), 2); - QCOMPARE(endOfMediaSpy.count(), 0); - - // Finished. - provider.playerControl()->updateMediaStatus( - QMediaPlayer::EndOfMedia, QMediaPlayer::StoppedState); - QCOMPARE(audio.status(), QDeclarativeAudio::EndOfMedia); - QCOMPARE(statusChangedSpy.count(), 8); - QCOMPARE(loadedSpy.count(), 1); - QCOMPARE(bufferingSpy.count(), 2); - QCOMPARE(stalledSpy.count(), 1); - QCOMPARE(bufferedSpy.count(), 2); - QCOMPARE(endOfMediaSpy.count(), 1); -} - -void tst_QDeclarativeAudio::metaData_data() -{ - QTest::addColumn("propertyName"); - QTest::addColumn("propertyKey"); - QTest::addColumn("value1"); - QTest::addColumn("value2"); - - QTest::newRow("title") - << QByteArray("title") - << QtMediaServices::Title - << QVariant(QString::fromLatin1("This is a title")) - << QVariant(QString::fromLatin1("This is another title")); - - QTest::newRow("genre") - << QByteArray("genre") - << QtMediaServices::Genre - << QVariant(QString::fromLatin1("rock")) - << QVariant(QString::fromLatin1("pop")); - - QTest::newRow("trackNumber") - << QByteArray("trackNumber") - << QtMediaServices::TrackNumber - << QVariant(8) - << QVariant(12); -} - -void tst_QDeclarativeAudio::metaData() -{ - QFETCH(QByteArray, propertyName); - QFETCH(QtMediaServices::MetaData, propertyKey); - QFETCH(QVariant, value1); - QFETCH(QVariant, value2); - - QtTestMediaServiceProvider provider; - QDeclarativeAudio audio; - - audio.componentComplete(); - - QSignalSpy spy(&audio, SIGNAL(__metaDataChanged())); - - const int index = audio.metaObject()->indexOfProperty(propertyName.constData()); - QVERIFY(index != -1); - - QMetaProperty property = audio.metaObject()->property(index); - QCOMPARE(property.read(&audio), QVariant()); - - property.write(&audio, value1); - QCOMPARE(property.read(&audio), value1); - QCOMPARE(provider.metaDataControl()->metaData(propertyKey), value1); - QCOMPARE(spy.count(), 1); - - provider.metaDataControl()->setMetaData(propertyKey, value2); - QCOMPARE(property.read(&audio), value2); - QCOMPARE(spy.count(), 2); -} - -void tst_QDeclarativeAudio::error() -{ - const QString errorString = QLatin1String("Failed to open device."); - - QtTestMediaServiceProvider provider; - QDeclarativeAudio audio; - - audio.componentComplete(); - - QSignalSpy errorSpy(&audio, SIGNAL(error(QDeclarativeAudio::Error,QString))); - QSignalSpy errorChangedSpy(&audio, SIGNAL(errorChanged())); - - QCOMPARE(audio.error(), QDeclarativeAudio::NoError); - QCOMPARE(audio.errorString(), QString()); - - provider.playerControl()->emitError(QMediaPlayer::ResourceError, errorString); - - QCOMPARE(audio.error(), QDeclarativeAudio::ResourceError); - QCOMPARE(audio.errorString(), errorString); - QCOMPARE(errorSpy.count(), 1); - QCOMPARE(errorChangedSpy.count(), 1); - - // Changing the source resets the error properties. - audio.setSource(QUrl("http://example.com")); - QCOMPARE(audio.error(), QDeclarativeAudio::NoError); - QCOMPARE(audio.errorString(), QString()); - QCOMPARE(errorSpy.count(), 1); - QCOMPARE(errorChangedSpy.count(), 2); - - // But isn't noisy. - audio.setSource(QUrl("file:///file/path")); - QCOMPARE(audio.error(), QDeclarativeAudio::NoError); - QCOMPARE(audio.errorString(), QString()); - QCOMPARE(errorSpy.count(), 1); - QCOMPARE(errorChangedSpy.count(), 2); -} - - -QTEST_MAIN(tst_QDeclarativeAudio) - -#include "tst_qdeclarativeaudio.moc" diff --git a/tests/auto/qdeclarativevideo/qdeclarativevideo.pro b/tests/auto/qdeclarativevideo/qdeclarativevideo.pro deleted file mode 100644 index 64a20da3b0..0000000000 --- a/tests/auto/qdeclarativevideo/qdeclarativevideo.pro +++ /dev/null @@ -1,14 +0,0 @@ -load(qttest_p4) - -HEADERS += \ - $$PWD/../../../src/imports/multimedia/qdeclarativevideo_p.h \ - $$PWD/../../../src/imports/multimedia/qdeclarativemediabase_p.h \ - $$PWD/../../../src/imports/multimedia/qmetadatacontrolmetaobject_p.h - -SOURCES += \ - tst_qdeclarativevideo.cpp \ - $$PWD/../../../src/imports/multimedia/qdeclarativevideo.cpp \ - $$PWD/../../../src/imports/multimedia/qdeclarativemediabase.cpp \ - $$PWD/../../../src/imports/multimedia/qmetadatacontrolmetaobject.cpp - -QT += multimedia mediaservices declarative diff --git a/tests/auto/qdeclarativevideo/tst_qdeclarativevideo.cpp b/tests/auto/qdeclarativevideo/tst_qdeclarativevideo.cpp deleted file mode 100644 index 99b447a8ef..0000000000 --- a/tests/auto/qdeclarativevideo/tst_qdeclarativevideo.cpp +++ /dev/null @@ -1,921 +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 test suite 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 "../../../src/imports/multimedia/qdeclarativevideo_p.h" - -#include -#include -#include -#include -#include -#include -#include -#include - - -class tst_QDeclarativeVideo : public QObject -{ - Q_OBJECT -public slots: - void initTestCase(); - -private slots: - void nullPlayerControl(); - void nullService(); - - void playing(); - void paused(); - void error(); - - void hasAudio(); - void hasVideo(); - void fillMode(); - void geometry(); -}; - -Q_DECLARE_METATYPE(QtMediaServices::MetaData); -Q_DECLARE_METATYPE(QDeclarativeVideo::Error); - -class QtTestMediaPlayerControl : public QMediaPlayerControl -{ - Q_OBJECT -public: - QtTestMediaPlayerControl(QObject *parent = 0) - : QMediaPlayerControl(parent) - , m_state(QMediaPlayer::StoppedState) - , m_mediaStatus(QMediaPlayer::NoMedia) - , m_duration(0) - , m_position(0) - , m_playbackRate(1.0) - , m_volume(50) - , m_bufferStatus(0) - , m_muted(false) - , m_audioAvailable(false) - , m_videoAvailable(false) - , m_seekable(false) - { - } - - QMediaPlayer::State state() const { return m_state; } - void updateState(QMediaPlayer::State state) { emit stateChanged(m_state = state); } - - QMediaPlayer::MediaStatus mediaStatus() const { return m_mediaStatus; } - void updateMediaStatus(QMediaPlayer::MediaStatus status) { - emit mediaStatusChanged(m_mediaStatus = status); } - void updateMediaStatus(QMediaPlayer::MediaStatus status, QMediaPlayer::State state) - { - m_mediaStatus = status; - m_state = state; - - emit mediaStatusChanged(m_mediaStatus); - emit stateChanged(m_state); - } - - qint64 duration() const { return m_duration; } - void setDuration(qint64 duration) { emit durationChanged(m_duration = duration); } - - qint64 position() const { return m_position; } - void setPosition(qint64 position) { emit positionChanged(m_position = position); } - - int volume() const { return m_volume; } - void setVolume(int volume) { emit volumeChanged(m_volume = volume); } - - bool isMuted() const { return m_muted; } - void setMuted(bool muted) { emit mutedChanged(m_muted = muted); } - - int bufferStatus() const { return m_bufferStatus; } - void setBufferStatus(int status) { emit bufferStatusChanged(m_bufferStatus = status); } - - bool isAudioAvailable() const { return m_audioAvailable; } - void setAudioAvailable(bool available) { - emit audioAvailableChanged(m_audioAvailable = available); } - bool isVideoAvailable() const { return m_videoAvailable; } - void setVideoAvailable(bool available) { - emit videoAvailableChanged(m_videoAvailable = available); } - - bool isSeekable() const { return m_seekable; } - void setSeekable(bool seekable) { emit seekableChanged(m_seekable = seekable); } - - QMediaTimeRange availablePlaybackRanges() const { return QMediaTimeRange(); } - - qreal playbackRate() const { return m_playbackRate; } - void setPlaybackRate(qreal rate) { emit playbackRateChanged(m_playbackRate = rate); } - - QMediaContent media() const { return m_media; } - const QIODevice *mediaStream() const { return 0; } - void setMedia(const QMediaContent &media, QIODevice *) - { - m_media = media; - - m_mediaStatus = m_media.isNull() - ? QMediaPlayer::NoMedia - : QMediaPlayer::LoadingMedia; - - emit mediaChanged(m_media); - emit mediaStatusChanged(m_mediaStatus); - } - - void play() { emit stateChanged(m_state = QMediaPlayer::PlayingState); } - void pause() { emit stateChanged(m_state = QMediaPlayer::PausedState); } - void stop() { emit stateChanged(m_state = QMediaPlayer::StoppedState); } - - void emitError(QMediaPlayer::Error err, const QString &errorString) { - emit error(err, errorString); } - -private: - QMediaPlayer::State m_state; - QMediaPlayer::MediaStatus m_mediaStatus; - qint64 m_duration; - qint64 m_position; - qreal m_playbackRate; - int m_volume; - int m_bufferStatus; - bool m_muted; - bool m_audioAvailable; - bool m_videoAvailable; - bool m_seekable; - QMediaContent m_media; -}; - -class QtTestOutputControl : public QVideoOutputControl -{ -public: - QtTestOutputControl(QObject *parent) : QVideoOutputControl(parent), m_output(NoOutput) {} - - QList availableOutputs() const { return m_outputs; } - void setAvailableOutputs(const QList outputs) { m_outputs = outputs; } - - Output output() const { return m_output; } - virtual void setOutput(Output output) { m_output = output; } - -private: - Output m_output; - QList m_outputs; -}; - -class QtTestRendererControl : public QVideoRendererControl -{ -public: - QtTestRendererControl(QObject *parent ) : QVideoRendererControl(parent), m_surface(0) {} - - QAbstractVideoSurface *surface() const { return m_surface; } - void setSurface(QAbstractVideoSurface *surface) { m_surface = surface; } - -private: - QAbstractVideoSurface *m_surface; -}; - -class QtTestMediaService : public QMediaService -{ - Q_OBJECT -public: - QtTestMediaService( - QtTestMediaPlayerControl *playerControl, - QtTestOutputControl *outputControl, - QtTestRendererControl *rendererControl, - QObject *parent) - : QMediaService(parent) - , playerControl(playerControl) - , outputControl(outputControl) - , rendererControl(rendererControl) - { - } - - QMediaControl *control(const char *name) const - { - if (qstrcmp(name, QMediaPlayerControl_iid) == 0) - return playerControl; - else if (qstrcmp(name, QVideoOutputControl_iid) == 0) - return outputControl; - else if (qstrcmp(name, QVideoRendererControl_iid) == 0) - return rendererControl; - else - return 0; - } - - QtTestMediaPlayerControl *playerControl; - QtTestOutputControl *outputControl; - QtTestRendererControl *rendererControl; -}; - -class QtTestMediaServiceProvider : public QMediaServiceProvider -{ - Q_OBJECT -public: - QtTestMediaServiceProvider() - : service(new QtTestMediaService( - new QtTestMediaPlayerControl(this), - new QtTestOutputControl(this), - new QtTestRendererControl(this), - this)) - { - setDefaultServiceProvider(this); - } - - QtTestMediaServiceProvider(QtTestMediaService *service) - : service(service) - { - setDefaultServiceProvider(this); - } - - QtTestMediaServiceProvider( - QtTestMediaPlayerControl *playerControl, - QtTestOutputControl *outputControl, - QtTestRendererControl *rendererControl) - : service(new QtTestMediaService(playerControl, outputControl, rendererControl, this)) - { - setDefaultServiceProvider(this); - } - - ~QtTestMediaServiceProvider() - { - setDefaultServiceProvider(0); - } - - QMediaService *requestService( - const QByteArray &type, - const QMediaServiceProviderHint & = QMediaServiceProviderHint()) - { - requestedService = type; - - return service; - } - - void releaseService(QMediaService *) {} - - inline QtTestMediaPlayerControl *playerControl() { return service->playerControl; } - inline QtTestRendererControl *rendererControl() { return service->rendererControl; } - - QtTestMediaService *service; - QByteArray requestedService; -}; - - -void tst_QDeclarativeVideo::initTestCase() -{ - qRegisterMetaType(); -} - -void tst_QDeclarativeVideo::nullPlayerControl() -{ - QtTestMediaServiceProvider provider(0, 0, 0); - - QDeclarativeVideo video; - - QCOMPARE(video.source(), QUrl()); - video.setSource(QUrl("http://example.com")); - QCOMPARE(video.source(), QUrl("http://example.com")); - - QCOMPARE(video.isPlaying(), false); - video.setPlaying(true); - QCOMPARE(video.isPlaying(), true); - video.setPlaying(false); - video.play(); - QCOMPARE(video.isPlaying(), false); - - QCOMPARE(video.isPaused(), false); - video.pause(); - QCOMPARE(video.isPaused(), false); - video.setPaused(true); - QCOMPARE(video.isPaused(), true); - - QCOMPARE(video.duration(), 0); - - QCOMPARE(video.position(), 0); - video.setPosition(10000); - QCOMPARE(video.position(), 10000); - - QCOMPARE(video.volume(), qreal(1.0)); - video.setVolume(0.5); - QCOMPARE(video.volume(), qreal(0.5)); - - QCOMPARE(video.isMuted(), false); - video.setMuted(true); - QCOMPARE(video.isMuted(), true); - - QCOMPARE(video.bufferProgress(), qreal(0)); - - QCOMPARE(video.isSeekable(), false); - - QCOMPARE(video.playbackRate(), qreal(1.0)); - - QCOMPARE(video.hasAudio(), false); - QCOMPARE(video.hasVideo(), false); - - QCOMPARE(video.status(), QDeclarativeVideo::NoMedia); - - QCOMPARE(video.error(), QDeclarativeVideo::ServiceMissing); -} - -void tst_QDeclarativeVideo::nullService() -{ - QtTestMediaServiceProvider provider(0); - - QDeclarativeVideo video; - - QCOMPARE(video.source(), QUrl()); - video.setSource(QUrl("http://example.com")); - QCOMPARE(video.source(), QUrl("http://example.com")); - - QCOMPARE(video.isPlaying(), false); - video.setPlaying(true); - QCOMPARE(video.isPlaying(), true); - video.setPlaying(false); - video.play(); - QCOMPARE(video.isPlaying(), false); - - QCOMPARE(video.isPaused(), false); - video.pause(); - QCOMPARE(video.isPaused(), false); - video.setPaused(true); - QCOMPARE(video.isPaused(), true); - - QCOMPARE(video.duration(), 0); - - QCOMPARE(video.position(), 0); - video.setPosition(10000); - QCOMPARE(video.position(), 10000); - - QCOMPARE(video.volume(), qreal(1.0)); - video.setVolume(0.5); - QCOMPARE(video.volume(), qreal(0.5)); - - QCOMPARE(video.isMuted(), false); - video.setMuted(true); - QCOMPARE(video.isMuted(), true); - - QCOMPARE(video.bufferProgress(), qreal(0)); - - QCOMPARE(video.isSeekable(), false); - - QCOMPARE(video.playbackRate(), qreal(1.0)); - - QCOMPARE(video.hasAudio(), false); - QCOMPARE(video.hasVideo(), false); - - QCOMPARE(video.status(), QDeclarativeVideo::NoMedia); - - QCOMPARE(video.error(), QDeclarativeVideo::ServiceMissing); - - QCOMPARE(video.metaObject()->indexOfProperty("title"), -1); - QCOMPARE(video.metaObject()->indexOfProperty("genre"), -1); - QCOMPARE(video.metaObject()->indexOfProperty("description"), -1); -} - -void tst_QDeclarativeVideo::playing() -{ - QtTestMediaServiceProvider provider; - QDeclarativeVideo video; - video.componentComplete(); - - QSignalSpy playingChangedSpy(&video, SIGNAL(playingChanged())); - QSignalSpy startedSpy(&video, SIGNAL(started())); - QSignalSpy stoppedSpy(&video, SIGNAL(stopped())); - - int playingChanged = 0; - int started = 0; - int stopped = 0; - - QCOMPARE(video.isPlaying(), false); - - // setPlaying(true) when stopped. - video.setPlaying(true); - QCOMPARE(video.isPlaying(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PlayingState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(startedSpy.count(), ++started); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPlaying(false) when playing. - video.setPlaying(false); - QCOMPARE(video.isPlaying(), false); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(stoppedSpy.count(), ++stopped); - - // play() when stopped. - video.play(); - QCOMPARE(video.isPlaying(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PlayingState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(startedSpy.count(), ++started); - QCOMPARE(stoppedSpy.count(), stopped); - - // stop() when playing. - video.stop(); - QCOMPARE(video.isPlaying(), false); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(stoppedSpy.count(), ++stopped); - - // stop() when stopped. - video.stop(); - QCOMPARE(video.isPlaying(), false); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPlaying(false) when stopped. - video.setPlaying(false); - QCOMPARE(video.isPlaying(), false); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(stoppedSpy.count(), stopped); - - video.setPlaying(true); - QCOMPARE(video.isPlaying(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PlayingState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(startedSpy.count(), ++started); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPlaying(true) when playing. - video.setPlaying(true); - QCOMPARE(video.isPlaying(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PlayingState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(stoppedSpy.count(), stopped); - - // play() when playing. - video.play(); - QCOMPARE(video.isPlaying(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PlayingState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(stoppedSpy.count(), stopped); -} - -void tst_QDeclarativeVideo::paused() -{ - QtTestMediaServiceProvider provider; - QDeclarativeVideo video; - video.componentComplete(); - - QSignalSpy playingChangedSpy(&video, SIGNAL(playingChanged())); - QSignalSpy pausedChangedSpy(&video, SIGNAL(pausedChanged())); - QSignalSpy startedSpy(&video, SIGNAL(started())); - QSignalSpy pausedSpy(&video, SIGNAL(paused())); - QSignalSpy resumedSpy(&video, SIGNAL(resumed())); - QSignalSpy stoppedSpy(&video, SIGNAL(stopped())); - - int playingChanged = 0; - int pausedChanged = 0; - int started = 0; - int paused = 0; - int resumed = 0; - int stopped = 0; - - QCOMPARE(video.isPlaying(), false); - QCOMPARE(video.isPaused(), false); - - // setPlaying(true) when stopped. - video.setPlaying(true); - QCOMPARE(video.isPlaying(), true); - QCOMPARE(video.isPaused(), false); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PlayingState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(pausedChangedSpy.count(), pausedChanged); - QCOMPARE(startedSpy.count(), ++started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPaused(true) when playing. - video.setPaused(true); - QCOMPARE(video.isPlaying(), true); - QCOMPARE(video.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PausedState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), ++pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), ++paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPaused(true) when paused. - video.setPaused(true); - QCOMPARE(video.isPlaying(), true); - QCOMPARE(video.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PausedState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // pause() when paused. - video.pause(); - QCOMPARE(video.isPlaying(), true); - QCOMPARE(video.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PausedState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPaused(false) when paused. - video.setPaused(false); - QCOMPARE(video.isPlaying(), true); - QCOMPARE(video.isPaused(), false); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PlayingState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), ++pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), ++resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPaused(false) when playing. - video.setPaused(false); - QCOMPARE(video.isPlaying(), true); - QCOMPARE(video.isPaused(), false); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PlayingState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // pause() when playing. - video.pause(); - QCOMPARE(video.isPlaying(), true); - QCOMPARE(video.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PausedState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), ++pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), ++paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPlaying(false) when paused. - video.setPlaying(false); - QCOMPARE(video.isPlaying(), false); - QCOMPARE(video.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(pausedChangedSpy.count(), pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), ++stopped); - - // setPaused(true) when stopped and paused. - video.setPaused(true); - QCOMPARE(video.isPlaying(), false); - QCOMPARE(video.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPaused(false) when stopped and paused. - video.setPaused(false); - QCOMPARE(video.isPlaying(), false); - QCOMPARE(video.isPaused(), false); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), ++pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPaused(true) when stopped. - video.setPaused(true); - QCOMPARE(video.isPlaying(), false); - QCOMPARE(video.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), ++pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPlaying(true) when stopped and paused. - video.setPlaying(true); - QCOMPARE(video.isPlaying(), true); - QCOMPARE(video.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PausedState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(pausedChangedSpy.count(), pausedChanged); - QCOMPARE(startedSpy.count(), ++started); - QCOMPARE(pausedSpy.count(), ++paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // play() when paused. - video.play(); - QCOMPARE(video.isPlaying(), true); - QCOMPARE(video.isPaused(), false); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PlayingState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), ++pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), ++resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPaused(true) when playing. - video.setPaused(true); - QCOMPARE(video.isPlaying(), true); - QCOMPARE(video.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PausedState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), ++pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), ++paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // stop() when paused. - video.stop(); - QCOMPARE(video.isPlaying(), false); - QCOMPARE(video.isPaused(), false); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(pausedChangedSpy.count(), ++pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), ++stopped); - - // setPaused(true) when stopped. - video.setPaused(true); - QCOMPARE(video.isPlaying(), false); - QCOMPARE(video.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), ++pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // stop() when stopped and paused. - video.stop(); - QCOMPARE(video.isPlaying(), false); - QCOMPARE(video.isPaused(), false); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), playingChanged); - QCOMPARE(pausedChangedSpy.count(), ++pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // pause() when stopped. - video.pause(); - QCOMPARE(video.isPlaying(), true); - QCOMPARE(video.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PausedState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(pausedChangedSpy.count(), ++pausedChanged); - QCOMPARE(startedSpy.count(), ++started); - QCOMPARE(pausedSpy.count(), ++paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPlaying(false) when paused. - video.setPlaying(false); - QCOMPARE(video.isPlaying(), false); - QCOMPARE(video.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(pausedChangedSpy.count(), pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), ++stopped); - - // pause() when stopped and paused. - video.pause(); - QCOMPARE(video.isPlaying(), true); - QCOMPARE(video.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PausedState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(pausedChangedSpy.count(), pausedChanged); - QCOMPARE(startedSpy.count(), ++started); - QCOMPARE(pausedSpy.count(), ++paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); - - // setPlaying(false) when paused. - video.setPlaying(false); - QCOMPARE(video.isPlaying(), false); - QCOMPARE(video.isPaused(), true); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::StoppedState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(pausedChangedSpy.count(), pausedChanged); - QCOMPARE(startedSpy.count(), started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), ++stopped); - - // play() when stopped and paused. - video.play(); - QCOMPARE(video.isPlaying(), true); - QCOMPARE(video.isPaused(), false); - QCOMPARE(provider.playerControl()->state(), QMediaPlayer::PlayingState); - QCOMPARE(playingChangedSpy.count(), ++playingChanged); - QCOMPARE(pausedChangedSpy.count(), ++pausedChanged); - QCOMPARE(startedSpy.count(), ++started); - QCOMPARE(pausedSpy.count(), paused); - QCOMPARE(resumedSpy.count(), resumed); - QCOMPARE(stoppedSpy.count(), stopped); -} - -void tst_QDeclarativeVideo::error() -{ - const QString errorString = QLatin1String("Failed to open device."); - - QtTestMediaServiceProvider provider; - QDeclarativeVideo video; - video.componentComplete(); - - QSignalSpy errorSpy(&video, SIGNAL(error(QDeclarativeVideo::Error,QString))); - QSignalSpy errorChangedSpy(&video, SIGNAL(errorChanged())); - - QCOMPARE(video.error(), QDeclarativeVideo::NoError); - QCOMPARE(video.errorString(), QString()); - - provider.playerControl()->emitError(QMediaPlayer::ResourceError, errorString); - - QCOMPARE(video.error(), QDeclarativeVideo::ResourceError); - QCOMPARE(video.errorString(), errorString); - QCOMPARE(errorSpy.count(), 1); - QCOMPARE(errorChangedSpy.count(), 1); - - // Changing the source resets the error properties. - video.setSource(QUrl("http://example.com")); - QCOMPARE(video.error(), QDeclarativeVideo::NoError); - QCOMPARE(video.errorString(), QString()); - QCOMPARE(errorSpy.count(), 1); - QCOMPARE(errorChangedSpy.count(), 2); - - // But isn't noisy. - video.setSource(QUrl("file:///file/path")); - QCOMPARE(video.error(), QDeclarativeVideo::NoError); - QCOMPARE(video.errorString(), QString()); - QCOMPARE(errorSpy.count(), 1); - QCOMPARE(errorChangedSpy.count(), 2); -} - - -void tst_QDeclarativeVideo::hasAudio() -{ - QtTestMediaServiceProvider provider; - QDeclarativeVideo video; - video.componentComplete(); - - QSignalSpy spy(&video, SIGNAL(hasAudioChanged())); - - QCOMPARE(video.hasAudio(), false); - - provider.playerControl()->setAudioAvailable(true); - QCOMPARE(video.hasAudio(), true); - QCOMPARE(spy.count(), 1); - - provider.playerControl()->setAudioAvailable(true); - QCOMPARE(video.hasAudio(), true); - QCOMPARE(spy.count(), 2); - - provider.playerControl()->setAudioAvailable(false); - QCOMPARE(video.hasAudio(), false); - QCOMPARE(spy.count(), 3); -} - -void tst_QDeclarativeVideo::hasVideo() -{ - QtTestMediaServiceProvider provider; - QDeclarativeVideo video; - - video.componentComplete(); - - QSignalSpy spy(&video, SIGNAL(hasVideoChanged())); - - QCOMPARE(video.hasVideo(), false); - - provider.playerControl()->setVideoAvailable(true); - QCOMPARE(video.hasVideo(), true); - QCOMPARE(spy.count(), 1); - - provider.playerControl()->setVideoAvailable(true); - QCOMPARE(video.hasVideo(), true); - QCOMPARE(spy.count(), 2); - - provider.playerControl()->setVideoAvailable(false); - QCOMPARE(video.hasVideo(), false); - QCOMPARE(spy.count(), 3); -} - -void tst_QDeclarativeVideo::fillMode() -{ - QtTestMediaServiceProvider provider; - QDeclarativeVideo video; - video.componentComplete(); - - QList children = video.childItems(); - QCOMPARE(children.count(), 1); - QGraphicsVideoItem *videoItem = qgraphicsitem_cast(children.first()); - QVERIFY(videoItem != 0); - - QCOMPARE(video.fillMode(), QDeclarativeVideo::PreserveAspectFit); - - video.setFillMode(QDeclarativeVideo::PreserveAspectCrop); - QCOMPARE(video.fillMode(), QDeclarativeVideo::PreserveAspectCrop); - QCOMPARE(videoItem->aspectRatioMode(), Qt::KeepAspectRatioByExpanding); - - video.setFillMode(QDeclarativeVideo::Stretch); - QCOMPARE(video.fillMode(), QDeclarativeVideo::Stretch); - QCOMPARE(videoItem->aspectRatioMode(), Qt::IgnoreAspectRatio); - - video.setFillMode(QDeclarativeVideo::PreserveAspectFit); - QCOMPARE(video.fillMode(), QDeclarativeVideo::PreserveAspectFit); - QCOMPARE(videoItem->aspectRatioMode(), Qt::KeepAspectRatio); -} - -void tst_QDeclarativeVideo::geometry() -{ - QtTestMediaServiceProvider provider; - QDeclarativeVideo video; - video.componentComplete(); - - QAbstractVideoSurface *surface = provider.rendererControl()->surface(); - QVERIFY(surface != 0); - - QList children = video.childItems(); - QCOMPARE(children.count(), 1); - QGraphicsVideoItem *videoItem = qgraphicsitem_cast(children.first()); - QVERIFY(videoItem != 0); - - QVideoSurfaceFormat format(QSize(640, 480), QVideoFrame::Format_RGB32); - - QVERIFY(surface->start(format)); - - QCOMPARE(video.implicitWidth(), qreal(640)); - QCOMPARE(video.implicitHeight(), qreal(480)); - - video.setWidth(560); - video.setHeight(328); - - QCOMPARE(videoItem->size().width(), qreal(560)); - QCOMPARE(videoItem->size().height(), qreal(328)); -} - -QTEST_MAIN(tst_QDeclarativeVideo) - -#include "tst_qdeclarativevideo.moc" diff --git a/tests/auto/qgraphicsvideoitem/qgraphicsvideoitem.pro b/tests/auto/qgraphicsvideoitem/qgraphicsvideoitem.pro deleted file mode 100644 index b57e8e3982..0000000000 --- a/tests/auto/qgraphicsvideoitem/qgraphicsvideoitem.pro +++ /dev/null @@ -1,5 +0,0 @@ -load(qttest_p4) -SOURCES += tst_qgraphicsvideoitem.cpp - -QT += multimedia mediaservices -requires(contains(QT_CONFIG, mediaservices)) diff --git a/tests/auto/qgraphicsvideoitem/tst_qgraphicsvideoitem.cpp b/tests/auto/qgraphicsvideoitem/tst_qgraphicsvideoitem.cpp deleted file mode 100644 index 18157791e7..0000000000 --- a/tests/auto/qgraphicsvideoitem/tst_qgraphicsvideoitem.cpp +++ /dev/null @@ -1,670 +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 test suite 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 -#include -#include -#include -#include -#include -#include -#include -#include - -#include - -class tst_QGraphicsVideoItem : public QObject -{ - Q_OBJECT -public slots: - void initTestCase(); - -private slots: - void nullObject(); - void nullService(); - void nullOutputControl(); - void noOutputs(); - void serviceDestroyed(); - void mediaObjectDestroyed(); - void setMediaObject(); - - void show(); - - void aspectRatioMode(); - void offset(); - void size(); - void nativeSize_data(); - void nativeSize(); - - void boundingRect_data(); - void boundingRect(); - - void paint(); -}; - -Q_DECLARE_METATYPE(const uchar *) -Q_DECLARE_METATYPE(Qt::AspectRatioMode) - -class QtTestOutputControl : public QVideoOutputControl -{ -public: - QtTestOutputControl() : m_output(NoOutput) {} - - QList availableOutputs() const { return m_outputs; } - void setAvailableOutputs(const QList outputs) { m_outputs = outputs; } - - Output output() const { return m_output; } - virtual void setOutput(Output output) { m_output = output; } - -private: - Output m_output; - QList m_outputs; -}; - -class QtTestRendererControl : public QVideoRendererControl -{ -public: - QtTestRendererControl() - : m_surface(0) - { - } - - QAbstractVideoSurface *surface() const { return m_surface; } - void setSurface(QAbstractVideoSurface *surface) { m_surface = surface; } - -private: - QAbstractVideoSurface *m_surface; -}; - -class QtTestVideoService : public QMediaService -{ - Q_OBJECT -public: - QtTestVideoService( - QtTestOutputControl *output, - QtTestRendererControl *renderer) - : QMediaService(0) - , outputControl(output) - , rendererControl(renderer) - { - } - - ~QtTestVideoService() - { - delete outputControl; - delete rendererControl; - } - - QMediaControl *control(const char *name) const - { - if (qstrcmp(name, QVideoOutputControl_iid) == 0) - return outputControl; - else if (qstrcmp(name, QVideoRendererControl_iid) == 0) - return rendererControl; - else - return 0; - } - - QtTestOutputControl *outputControl; - QtTestRendererControl *rendererControl; -}; - -class QtTestVideoObject : public QMediaObject -{ - Q_OBJECT -public: - QtTestVideoObject(QtTestRendererControl *renderer): - QMediaObject(0, new QtTestVideoService(new QtTestOutputControl, renderer)) - { - testService = qobject_cast(service()); - QList outputs; - - if (renderer) - outputs.append(QVideoOutputControl::RendererOutput); - - testService->outputControl->setAvailableOutputs(outputs); - } - - QtTestVideoObject(QtTestVideoService *service): - QMediaObject(0, service), - testService(service) - { - } - - ~QtTestVideoObject() - { - delete testService; - } - - QtTestVideoService *testService; -}; - -class QtTestGraphicsVideoItem : public QGraphicsVideoItem -{ -public: - QtTestGraphicsVideoItem(QGraphicsItem *parent = 0) - : QGraphicsVideoItem(parent) - , m_paintCount(0) - { - } - - void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) - { - ++m_paintCount; - - QTestEventLoop::instance().exitLoop(); - - QGraphicsVideoItem::paint(painter, option, widget); - } - - bool waitForPaint(int secs) - { - const int paintCount = m_paintCount; - - QTestEventLoop::instance().enterLoop(secs); - - return m_paintCount != paintCount; - } - - int paintCount() const - { - return m_paintCount; - } - -private: - int m_paintCount; -}; - -void tst_QGraphicsVideoItem::initTestCase() -{ - qRegisterMetaType(); -} - -void tst_QGraphicsVideoItem::nullObject() -{ - QGraphicsVideoItem item(0); - - QVERIFY(item.boundingRect().isEmpty()); -} - -void tst_QGraphicsVideoItem::nullService() -{ - QtTestVideoService *service = 0; - - QtTestVideoObject object(service); - - QtTestGraphicsVideoItem *item = new QtTestGraphicsVideoItem; - item->setMediaObject(&object); - - QVERIFY(item->boundingRect().isEmpty()); - - item->hide(); - item->show(); - - QGraphicsScene graphicsScene; - graphicsScene.addItem(item); - QGraphicsView graphicsView(&graphicsScene); - graphicsView.show(); -} - -void tst_QGraphicsVideoItem::nullOutputControl() -{ - QtTestVideoObject object(new QtTestVideoService(0, 0)); - - QtTestGraphicsVideoItem *item = new QtTestGraphicsVideoItem; - item->setMediaObject(&object); - - QVERIFY(item->boundingRect().isEmpty()); - - item->hide(); - item->show(); - - QGraphicsScene graphicsScene; - graphicsScene.addItem(item); - QGraphicsView graphicsView(&graphicsScene); - graphicsView.show(); -} - -void tst_QGraphicsVideoItem::noOutputs() -{ - QtTestRendererControl *control = 0; - QtTestVideoObject object(control); - - QtTestGraphicsVideoItem *item = new QtTestGraphicsVideoItem; - item->setMediaObject(&object); - - QVERIFY(item->boundingRect().isEmpty()); - - item->hide(); - QCOMPARE(object.testService->outputControl->output(), QVideoOutputControl::NoOutput); - item->show(); - QCOMPARE(object.testService->outputControl->output(), QVideoOutputControl::NoOutput); - - QGraphicsScene graphicsScene; - graphicsScene.addItem(item); - QGraphicsView graphicsView(&graphicsScene); - graphicsView.show(); -} - -void tst_QGraphicsVideoItem::serviceDestroyed() -{ - QtTestVideoObject object(new QtTestRendererControl); - - QGraphicsVideoItem item; - item.setMediaObject(&object); - - QtTestVideoService *service = object.testService; - object.testService = 0; - - delete service; - - QCOMPARE(item.mediaObject(), static_cast(&object)); - QVERIFY(item.boundingRect().isEmpty()); -} - -void tst_QGraphicsVideoItem::mediaObjectDestroyed() -{ - QtTestVideoObject *object = new QtTestVideoObject(new QtTestRendererControl); - - QGraphicsVideoItem item; - item.setMediaObject(object); - - delete object; - object = 0; - - QCOMPARE(item.mediaObject(), static_cast(object)); - QVERIFY(item.boundingRect().isEmpty()); -} - -void tst_QGraphicsVideoItem::setMediaObject() -{ - QMediaObject *nullObject = 0; - QtTestVideoObject object(new QtTestRendererControl); - - QGraphicsVideoItem item; - - QCOMPARE(item.mediaObject(), nullObject); - QCOMPARE(object.testService->outputControl->output(), QVideoOutputControl::NoOutput); - - item.setMediaObject(&object); - QCOMPARE(item.mediaObject(), static_cast(&object)); - QCOMPARE(object.testService->outputControl->output(), QVideoOutputControl::RendererOutput); - QVERIFY(object.testService->rendererControl->surface() != 0); - - item.setMediaObject(0); - QCOMPARE(item.mediaObject(), nullObject); - - QCOMPARE(object.testService->outputControl->output(), QVideoOutputControl::NoOutput); - - item.setVisible(false); - - item.setMediaObject(&object); - QCOMPARE(item.mediaObject(), static_cast(&object)); - QCOMPARE(object.testService->outputControl->output(), QVideoOutputControl::NoOutput); - QVERIFY(object.testService->rendererControl->surface() != 0); -} - -void tst_QGraphicsVideoItem::show() -{ - QtTestVideoObject object(new QtTestRendererControl); - QtTestGraphicsVideoItem *item = new QtTestGraphicsVideoItem; - item->setMediaObject(&object); - - // Graphics items are visible by default - QCOMPARE(object.testService->outputControl->output(), QVideoOutputControl::RendererOutput); - QVERIFY(object.testService->rendererControl->surface() != 0); - - item->hide(); - QCOMPARE(object.testService->outputControl->output(), QVideoOutputControl::RendererOutput); - - item->show(); - QCOMPARE(object.testService->outputControl->output(), QVideoOutputControl::RendererOutput); - QVERIFY(object.testService->rendererControl->surface() != 0); - - QVERIFY(item->boundingRect().isEmpty()); - - QVideoSurfaceFormat format(QSize(320,240),QVideoFrame::Format_RGB32); - QVERIFY(object.testService->rendererControl->surface()->start(format)); - - QVERIFY(!item->boundingRect().isEmpty()); - - QGraphicsScene graphicsScene; - graphicsScene.addItem(item); - QGraphicsView graphicsView(&graphicsScene); - graphicsView.show(); - - QVERIFY(item->paintCount() || item->waitForPaint(1)); -} - -void tst_QGraphicsVideoItem::aspectRatioMode() -{ - QGraphicsVideoItem item; - - QCOMPARE(item.aspectRatioMode(), Qt::KeepAspectRatio); - - item.setAspectRatioMode(Qt::IgnoreAspectRatio); - QCOMPARE(item.aspectRatioMode(), Qt::IgnoreAspectRatio); - - item.setAspectRatioMode(Qt::KeepAspectRatioByExpanding); - QCOMPARE(item.aspectRatioMode(), Qt::KeepAspectRatioByExpanding); - - item.setAspectRatioMode(Qt::KeepAspectRatio); - QCOMPARE(item.aspectRatioMode(), Qt::KeepAspectRatio); -} - -void tst_QGraphicsVideoItem::offset() -{ - QGraphicsVideoItem item; - - QCOMPARE(item.offset(), QPointF(0, 0)); - - item.setOffset(QPointF(-32.4, 43.0)); - QCOMPARE(item.offset(), QPointF(-32.4, 43.0)); - - item.setOffset(QPointF(1, 1)); - QCOMPARE(item.offset(), QPointF(1, 1)); - - item.setOffset(QPointF(12, -30.4)); - QCOMPARE(item.offset(), QPointF(12, -30.4)); - - item.setOffset(QPointF(-90.4, -75)); - QCOMPARE(item.offset(), QPointF(-90.4, -75)); -} - -void tst_QGraphicsVideoItem::size() -{ - QGraphicsVideoItem item; - - QCOMPARE(item.size(), QSizeF(320, 240)); - - item.setSize(QSizeF(542.5, 436.3)); - QCOMPARE(item.size(), QSizeF(542.5, 436.3)); - - item.setSize(QSizeF(-43, 12)); - QCOMPARE(item.size(), QSizeF(0, 0)); - - item.setSize(QSizeF(54, -9)); - QCOMPARE(item.size(), QSizeF(0, 0)); - - item.setSize(QSizeF(-90, -65)); - QCOMPARE(item.size(), QSizeF(0, 0)); - - item.setSize(QSizeF(1000, 1000)); - QCOMPARE(item.size(), QSizeF(1000, 1000)); -} - -void tst_QGraphicsVideoItem::nativeSize_data() -{ - QTest::addColumn("frameSize"); - QTest::addColumn("viewport"); - QTest::addColumn("pixelAspectRatio"); - QTest::addColumn("nativeSize"); - - QTest::newRow("640x480") - << QSize(640, 480) - << QRect(0, 0, 640, 480) - << QSize(1, 1) - << QSizeF(640, 480); - - QTest::newRow("800x600, (80,60, 640x480) viewport") - << QSize(800, 600) - << QRect(80, 60, 640, 480) - << QSize(1, 1) - << QSizeF(640, 480); - - QTest::newRow("800x600, (80,60, 640x480) viewport, 4:3") - << QSize(800, 600) - << QRect(80, 60, 640, 480) - << QSize(4, 3) - << QSizeF(853, 480); -} - -void tst_QGraphicsVideoItem::nativeSize() -{ - QFETCH(QSize, frameSize); - QFETCH(QRect, viewport); - QFETCH(QSize, pixelAspectRatio); - QFETCH(QSizeF, nativeSize); - - QtTestVideoObject object(new QtTestRendererControl); - QGraphicsVideoItem item; - item.setMediaObject(&object); - - QCOMPARE(item.nativeSize(), QSizeF()); - - QSignalSpy spy(&item, SIGNAL(nativeSizeChanged(QSizeF))); - - QVideoSurfaceFormat format(frameSize, QVideoFrame::Format_ARGB32); - format.setViewport(viewport); - format.setPixelAspectRatio(pixelAspectRatio); - - QVERIFY(object.testService->rendererControl->surface()->start(format)); - - QCOMPARE(item.nativeSize(), nativeSize); - QCOMPARE(spy.count(), 1); - QCOMPARE(spy.last().first().toSizeF(), nativeSize); - - object.testService->rendererControl->surface()->stop(); - - QCOMPARE(item.nativeSize(), QSizeF(0, 0)); - QCOMPARE(spy.count(), 2); - QCOMPARE(spy.last().first().toSizeF(), QSizeF(0, 0)); -} - -void tst_QGraphicsVideoItem::boundingRect_data() -{ - QTest::addColumn("frameSize"); - QTest::addColumn("offset"); - QTest::addColumn("size"); - QTest::addColumn("aspectRatioMode"); - QTest::addColumn("expectedRect"); - - - QTest::newRow("640x480: (0,0 640x480), Keep") - << QSize(640, 480) - << QPointF(0, 0) - << QSizeF(640, 480) - << Qt::KeepAspectRatio - << QRectF(0, 0, 640, 480); - - QTest::newRow("800x600, (0,0, 640x480), Keep") - << QSize(800, 600) - << QPointF(0, 0) - << QSizeF(640, 480) - << Qt::KeepAspectRatio - << QRectF(0, 0, 640, 480); - - QTest::newRow("800x600, (0,0, 640x480), KeepByExpanding") - << QSize(800, 600) - << QPointF(0, 0) - << QSizeF(640, 480) - << Qt::KeepAspectRatioByExpanding - << QRectF(0, 0, 640, 480); - - QTest::newRow("800x600, (0,0, 640x480), Ignore") - << QSize(800, 600) - << QPointF(0, 0) - << QSizeF(640, 480) - << Qt::IgnoreAspectRatio - << QRectF(0, 0, 640, 480); - - QTest::newRow("800x600, (100,100, 640x480), Keep") - << QSize(800, 600) - << QPointF(100, 100) - << QSizeF(640, 480) - << Qt::KeepAspectRatio - << QRectF(100, 100, 640, 480); - - QTest::newRow("800x600, (100,-100, 640x480), KeepByExpanding") - << QSize(800, 600) - << QPointF(100, -100) - << QSizeF(640, 480) - << Qt::KeepAspectRatioByExpanding - << QRectF(100, -100, 640, 480); - - QTest::newRow("800x600, (-100,-100, 640x480), Ignore") - << QSize(800, 600) - << QPointF(-100, -100) - << QSizeF(640, 480) - << Qt::IgnoreAspectRatio - << QRectF(-100, -100, 640, 480); - - QTest::newRow("800x600, (0,0, 1920x1024), Keep") - << QSize(800, 600) - << QPointF(0, 0) - << QSizeF(1920, 1024) - << Qt::KeepAspectRatio - << QRectF(832.0 / 3, 0, 4096.0 / 3, 1024); - - QTest::newRow("800x600, (0,0, 1920x1024), KeepByExpanding") - << QSize(800, 600) - << QPointF(0, 0) - << QSizeF(1920, 1024) - << Qt::KeepAspectRatioByExpanding - << QRectF(0, 0, 1920, 1024); - - QTest::newRow("800x600, (0,0, 1920x1024), Ignore") - << QSize(800, 600) - << QPointF(0, 0) - << QSizeF(1920, 1024) - << Qt::IgnoreAspectRatio - << QRectF(0, 0, 1920, 1024); - - QTest::newRow("800x600, (100,100, 1920x1024), Keep") - << QSize(800, 600) - << QPointF(100, 100) - << QSizeF(1920, 1024) - << Qt::KeepAspectRatio - << QRectF(100 + 832.0 / 3, 100, 4096.0 / 3, 1024); - - QTest::newRow("800x600, (100,-100, 1920x1024), KeepByExpanding") - << QSize(800, 600) - << QPointF(100, -100) - << QSizeF(1920, 1024) - << Qt::KeepAspectRatioByExpanding - << QRectF(100, -100, 1920, 1024); - - QTest::newRow("800x600, (-100,-100, 1920x1024), Ignore") - << QSize(800, 600) - << QPointF(-100, -100) - << QSizeF(1920, 1024) - << Qt::IgnoreAspectRatio - << QRectF(-100, -100, 1920, 1024); -} - -void tst_QGraphicsVideoItem::boundingRect() -{ - QFETCH(QSize, frameSize); - QFETCH(QPointF, offset); - QFETCH(QSizeF, size); - QFETCH(Qt::AspectRatioMode, aspectRatioMode); - QFETCH(QRectF, expectedRect); - - QtTestVideoObject object(new QtTestRendererControl); - QGraphicsVideoItem item; - item.setMediaObject(&object); - - item.setOffset(offset); - item.setSize(size); - item.setAspectRatioMode(aspectRatioMode); - - QVideoSurfaceFormat format(frameSize, QVideoFrame::Format_ARGB32); - - QVERIFY(object.testService->rendererControl->surface()->start(format)); - - QCOMPARE(item.boundingRect(), expectedRect); -} - -static const uchar rgb32ImageData[] = -{ - 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0xff, 0x00, - 0x00, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00 -}; - -void tst_QGraphicsVideoItem::paint() -{ - QtTestVideoObject object(new QtTestRendererControl); - QtTestGraphicsVideoItem *item = new QtTestGraphicsVideoItem; - item->setMediaObject(&object); - - QGraphicsScene graphicsScene; - graphicsScene.addItem(item); - QGraphicsView graphicsView(&graphicsScene); - graphicsView.show(); - - QPainterVideoSurface *surface = qobject_cast( - object.testService->rendererControl->surface()); - - QVideoSurfaceFormat format(QSize(2, 2), QVideoFrame::Format_RGB32); - - QVERIFY(surface->start(format)); - QCOMPARE(surface->isActive(), true); - QCOMPARE(surface->isReady(), true); - - QVERIFY(item->waitForPaint(1)); - - QCOMPARE(surface->isActive(), true); - QCOMPARE(surface->isReady(), true); - - QVideoFrame frame(sizeof(rgb32ImageData), QSize(2, 2), 8, QVideoFrame::Format_RGB32); - - frame.map(QAbstractVideoBuffer::WriteOnly); - memcpy(frame.bits(), rgb32ImageData, frame.mappedBytes()); - frame.unmap(); - - QVERIFY(surface->present(frame)); - QCOMPARE(surface->isActive(), true); - QCOMPARE(surface->isReady(), false); - - QVERIFY(item->waitForPaint(1)); - - QCOMPARE(surface->isActive(), true); - QCOMPARE(surface->isReady(), true); -} - - -QTEST_MAIN(tst_QGraphicsVideoItem) - -#include "tst_qgraphicsvideoitem.moc" diff --git a/tests/auto/qmediacontent/qmediacontent.pro b/tests/auto/qmediacontent/qmediacontent.pro deleted file mode 100644 index e20b4db8ec..0000000000 --- a/tests/auto/qmediacontent/qmediacontent.pro +++ /dev/null @@ -1,6 +0,0 @@ -load(qttest_p4) - -SOURCES += tst_qmediacontent.cpp - -QT = core network mediaservices - diff --git a/tests/auto/qmediacontent/tst_qmediacontent.cpp b/tests/auto/qmediacontent/tst_qmediacontent.cpp deleted file mode 100644 index e33149a5e6..0000000000 --- a/tests/auto/qmediacontent/tst_qmediacontent.cpp +++ /dev/null @@ -1,174 +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 test suite 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 - - -class tst_QMediaContent : public QObject -{ - Q_OBJECT - -private slots: - void testNull(); - void testUrlCtor(); - void testRequestCtor(); - void testResourceCtor(); - void testResourceListCtor(); - void testCopy(); - void testAssignment(); - void testEquality(); - void testResources(); -}; - -void tst_QMediaContent::testNull() -{ - QMediaContent media; - - QCOMPARE(media.isNull(), true); - QCOMPARE(media.canonicalUrl(), QUrl()); - QCOMPARE(media.canonicalResource(), QMediaResource()); - QCOMPARE(media.resources(), QMediaResourceList()); -} - -void tst_QMediaContent::testUrlCtor() -{ - QMediaContent media(QUrl("http://example.com/movie.mov")); - - QCOMPARE(media.canonicalUrl(), QUrl("http://example.com/movie.mov")); - QCOMPARE(media.canonicalResource().url(), QUrl("http://example.com/movie.mov")); -} - -void tst_QMediaContent::testRequestCtor() -{ - QNetworkRequest request(QUrl("http://example.com/movie.mov")); - request.setAttribute(QNetworkRequest::User, QVariant(1234)); - - QMediaContent media(request); - - QCOMPARE(media.canonicalRequest(), request); - QCOMPARE(media.canonicalUrl(), QUrl("http://example.com/movie.mov")); - QCOMPARE(media.canonicalResource().request(), request); - QCOMPARE(media.canonicalResource().url(), QUrl("http://example.com/movie.mov")); -} - -void tst_QMediaContent::testResourceCtor() -{ - QMediaContent media(QMediaResource(QUrl("http://example.com/movie.mov"))); - - QCOMPARE(media.canonicalResource(), QMediaResource(QUrl("http://example.com/movie.mov"))); -} - -void tst_QMediaContent::testResourceListCtor() -{ - QMediaResourceList resourceList; - resourceList << QMediaResource(QUrl("http://example.com/movie.mov")); - - QMediaContent media(resourceList); - - QCOMPARE(media.canonicalUrl(), QUrl("http://example.com/movie.mov")); - QCOMPARE(media.canonicalResource().url(), QUrl("http://example.com/movie.mov")); -} - -void tst_QMediaContent::testCopy() -{ - QMediaContent media1(QMediaResource(QUrl("http://example.com/movie.mov"))); - QMediaContent media2(media1); - - QVERIFY(media1 == media2); -} - -void tst_QMediaContent::testAssignment() -{ - QMediaContent media1(QMediaResource(QUrl("http://example.com/movie.mov"))); - QMediaContent media2; - QMediaContent media3; - - media2 = media1; - QVERIFY(media2 == media1); - - media2 = media3; - QVERIFY(media2 == media3); -} - -void tst_QMediaContent::testEquality() -{ - QMediaContent media1; - QMediaContent media2; - QMediaContent media3(QMediaResource(QUrl("http://example.com/movie.mov"))); - QMediaContent media4(QMediaResource(QUrl("http://example.com/movie.mov"))); - QMediaContent media5(QMediaResource(QUrl("file:///some/where/over/the/rainbow.mp3"))); - - // null == null - QCOMPARE(media1 == media2, true); - QCOMPARE(media1 != media2, false); - - // null != something - QCOMPARE(media1 == media3, false); - QCOMPARE(media1 != media3, true); - - // equiv - QCOMPARE(media3 == media4, true); - QCOMPARE(media3 != media4, false); - - // not equiv - QCOMPARE(media4 == media5, false); - QCOMPARE(media4 != media5, true); -} - -void tst_QMediaContent::testResources() -{ - QMediaResourceList resourceList; - - resourceList << QMediaResource(QUrl("http://example.com/movie-main.mov")); - resourceList << QMediaResource(QUrl("http://example.com/movie-big.mov")); - QMediaContent media(resourceList); - - QMediaResourceList res = media.resources(); - QCOMPARE(res.size(), 2); - QCOMPARE(res[0], QMediaResource(QUrl("http://example.com/movie-main.mov"))); - QCOMPARE(res[1], QMediaResource(QUrl("http://example.com/movie-big.mov"))); -} - -QTEST_MAIN(tst_QMediaContent) - -#include "tst_qmediacontent.moc" diff --git a/tests/auto/qmediaobject/qmediaobject.pro b/tests/auto/qmediaobject/qmediaobject.pro deleted file mode 100644 index d6a0f7b728..0000000000 --- a/tests/auto/qmediaobject/qmediaobject.pro +++ /dev/null @@ -1,4 +0,0 @@ -load(qttest_p4) - -SOURCES += tst_qmediaobject.cpp -QT = core mediaservices diff --git a/tests/auto/qmediaobject/tst_qmediaobject.cpp b/tests/auto/qmediaobject/tst_qmediaobject.cpp deleted file mode 100644 index 5a2fdeb4b9..0000000000 --- a/tests/auto/qmediaobject/tst_qmediaobject.cpp +++ /dev/null @@ -1,549 +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 test suite 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 -#include -#include - - -class tst_QMediaObject : public QObject -{ - Q_OBJECT - -private slots: - void propertyWatch(); - void notifySignals_data(); - void notifySignals(); - void notifyInterval_data(); - void notifyInterval(); - - void nullMetaDataControl(); - void isMetaDataAvailable(); - void isWritable(); - void metaDataChanged(); - void metaData_data(); - void metaData(); - void setMetaData_data(); - void setMetaData(); - void extendedMetaData_data() { metaData_data(); } - void extendedMetaData(); - void setExtendedMetaData_data() { extendedMetaData_data(); } - void setExtendedMetaData(); - - -private: - void setupNotifyTests(); -}; - -class QtTestMetaDataProvider : public QMetaDataControl -{ - Q_OBJECT -public: - QtTestMetaDataProvider(QObject *parent = 0) - : QMetaDataControl(parent) - , m_available(false) - , m_writable(false) - { - } - - bool isMetaDataAvailable() const { return m_available; } - void setMetaDataAvailable(bool available) { - if (m_available != available) - emit metaDataAvailableChanged(m_available = available); - } - QList availableMetaData() const { return m_data.keys(); } - - bool isWritable() const { return m_writable; } - void setWritable(bool writable) { emit writableChanged(m_writable = writable); } - - QVariant metaData(QtMediaServices::MetaData key) const { return m_data.value(key); } - void setMetaData(QtMediaServices::MetaData key, const QVariant &value) { - m_data.insert(key, value); } - - QVariant extendedMetaData(const QString &key) const { return m_extendedData.value(key); } - void setExtendedMetaData(const QString &key, const QVariant &value) { - m_extendedData.insert(key, value); } - - QStringList availableExtendedMetaData() const { return m_extendedData.keys(); } - - using QMetaDataControl::metaDataChanged; - - void populateMetaData() - { - m_available = true; - } - - bool m_available; - bool m_writable; - QMap m_data; - QMap m_extendedData; -}; - -class QtTestMetaDataService : public QMediaService -{ - Q_OBJECT -public: - QtTestMetaDataService(QObject *parent = 0):QMediaService(parent), hasMetaData(true) - { - } - - QMediaControl *control(const char *iid) const - { - if (hasMetaData && qstrcmp(iid, QMetaDataControl_iid) == 0) - return const_cast(&metaData); - else - return 0; - } - - QtTestMetaDataProvider metaData; - bool hasMetaData; -}; - - -class QtTestMediaObject : public QMediaObject -{ - Q_OBJECT - Q_PROPERTY(int a READ a WRITE setA NOTIFY aChanged) - Q_PROPERTY(int b READ b WRITE setB NOTIFY bChanged) - Q_PROPERTY(int c READ c WRITE setC NOTIFY cChanged) - Q_PROPERTY(int d READ d WRITE setD) -public: - QtTestMediaObject(QMediaService *service = 0): QMediaObject(0, service), m_a(0), m_b(0), m_c(0), m_d(0) {} - - using QMediaObject::addPropertyWatch; - using QMediaObject::removePropertyWatch; - - int a() const { return m_a; } - void setA(int a) { m_a = a; } - - int b() const { return m_b; } - void setB(int b) { m_b = b; } - - int c() const { return m_c; } - void setC(int c) { m_c = c; } - - int d() const { return m_d; } - void setD(int d) { m_d = d; } - -Q_SIGNALS: - void aChanged(int a); - void bChanged(int b); - void cChanged(int c); - -private: - int m_a; - int m_b; - int m_c; - int m_d; -}; - -void tst_QMediaObject::propertyWatch() -{ - QtTestMediaObject object; - object.setNotifyInterval(0); - - QEventLoop loop; - connect(&object, SIGNAL(aChanged(int)), &QTestEventLoop::instance(), SLOT(exitLoop())); - connect(&object, SIGNAL(bChanged(int)), &QTestEventLoop::instance(), SLOT(exitLoop())); - connect(&object, SIGNAL(cChanged(int)), &QTestEventLoop::instance(), SLOT(exitLoop())); - - QSignalSpy aSpy(&object, SIGNAL(aChanged(int))); - QSignalSpy bSpy(&object, SIGNAL(bChanged(int))); - QSignalSpy cSpy(&object, SIGNAL(cChanged(int))); - - QTestEventLoop::instance().enterLoop(1); - - QCOMPARE(aSpy.count(), 0); - QCOMPARE(bSpy.count(), 0); - QCOMPARE(cSpy.count(), 0); - - int aCount = 0; - int bCount = 0; - int cCount = 0; - - object.addPropertyWatch("a"); - - QTestEventLoop::instance().enterLoop(1); - - QVERIFY(aSpy.count() > aCount); - QCOMPARE(bSpy.count(), 0); - QCOMPARE(cSpy.count(), 0); - QCOMPARE(aSpy.last().value(0).toInt(), 0); - - aCount = aSpy.count(); - - object.setA(54); - object.setB(342); - object.setC(233); - - QTestEventLoop::instance().enterLoop(1); - - QVERIFY(aSpy.count() > aCount); - QCOMPARE(bSpy.count(), 0); - QCOMPARE(cSpy.count(), 0); - QCOMPARE(aSpy.last().value(0).toInt(), 54); - - aCount = aSpy.count(); - - object.addPropertyWatch("b"); - object.addPropertyWatch("d"); - object.removePropertyWatch("e"); - object.setA(43); - object.setB(235); - object.setC(90); - - QTestEventLoop::instance().enterLoop(1); - - QVERIFY(aSpy.count() > aCount); - QVERIFY(bSpy.count() > bCount); - QCOMPARE(cSpy.count(), 0); - QCOMPARE(aSpy.last().value(0).toInt(), 43); - QCOMPARE(bSpy.last().value(0).toInt(), 235); - - aCount = aSpy.count(); - bCount = bSpy.count(); - - object.removePropertyWatch("a"); - object.addPropertyWatch("c"); - object.addPropertyWatch("e"); - - QTestEventLoop::instance().enterLoop(1); - - QCOMPARE(aSpy.count(), aCount); - QVERIFY(bSpy.count() > bCount); - QVERIFY(cSpy.count() > cCount); - QCOMPARE(bSpy.last().value(0).toInt(), 235); - QCOMPARE(cSpy.last().value(0).toInt(), 90); - - bCount = bSpy.count(); - cCount = cSpy.count(); - - object.setA(435); - object.setC(9845); - - QTestEventLoop::instance().enterLoop(1); - - QCOMPARE(aSpy.count(), aCount); - QVERIFY(bSpy.count() > bCount); - QVERIFY(cSpy.count() > cCount); - QCOMPARE(bSpy.last().value(0).toInt(), 235); - QCOMPARE(cSpy.last().value(0).toInt(), 9845); - - bCount = bSpy.count(); - cCount = cSpy.count(); - - object.setA(8432); - object.setB(324); - object.setC(443); - object.removePropertyWatch("c"); - object.removePropertyWatch("d"); - - QTestEventLoop::instance().enterLoop(1); - - QCOMPARE(aSpy.count(), aCount); - QVERIFY(bSpy.count() > bCount); - QCOMPARE(cSpy.count(), cCount); - QCOMPARE(bSpy.last().value(0).toInt(), 324); - QCOMPARE(cSpy.last().value(0).toInt(), 9845); - - bCount = bSpy.count(); - - object.removePropertyWatch("b"); - - QTestEventLoop::instance().enterLoop(1); - - QCOMPARE(aSpy.count(), aCount); - QCOMPARE(bSpy.count(), bCount); - QCOMPARE(cSpy.count(), cCount); -} - -void tst_QMediaObject::setupNotifyTests() -{ - QTest::addColumn("interval"); - QTest::addColumn("count"); - - QTest::newRow("single 750ms") - << 750 - << 1; - QTest::newRow("single 600ms") - << 600 - << 1; - QTest::newRow("x3 300ms") - << 300 - << 3; - QTest::newRow("x5 180ms") - << 180 - << 5; -} - -void tst_QMediaObject::notifySignals_data() -{ - setupNotifyTests(); -} - -void tst_QMediaObject::notifySignals() -{ - QFETCH(int, interval); - QFETCH(int, count); - - QtTestMediaObject object; - object.setNotifyInterval(interval); - object.addPropertyWatch("a"); - - QSignalSpy spy(&object, SIGNAL(aChanged(int))); - - QTestEventLoop::instance().enterLoop(1); - - QCOMPARE(spy.count(), count); -} - -void tst_QMediaObject::notifyInterval_data() -{ - setupNotifyTests(); -} - -void tst_QMediaObject::notifyInterval() -{ - QFETCH(int, interval); - - QtTestMediaObject object; - QSignalSpy spy(&object, SIGNAL(notifyIntervalChanged(int))); - - object.setNotifyInterval(interval); - QCOMPARE(object.notifyInterval(), interval); - QCOMPARE(spy.count(), 1); - QCOMPARE(spy.last().value(0).toInt(), interval); - - object.setNotifyInterval(interval); - QCOMPARE(object.notifyInterval(), interval); - QCOMPARE(spy.count(), 1); -} - -void tst_QMediaObject::nullMetaDataControl() -{ - const QString titleKey(QLatin1String("Title")); - const QString title(QLatin1String("Host of Seraphim")); - - QtTestMetaDataService service; - service.hasMetaData = false; - - QtTestMediaObject object(&service); - - QSignalSpy spy(&object, SIGNAL(metaDataChanged())); - - QCOMPARE(object.isMetaDataAvailable(), false); - QCOMPARE(object.isMetaDataWritable(), false); - - object.setMetaData(QtMediaServices::Title, title); - object.setExtendedMetaData(titleKey, title); - - QCOMPARE(object.metaData(QtMediaServices::Title).toString(), QString()); - QCOMPARE(object.extendedMetaData(titleKey).toString(), QString()); - QCOMPARE(object.availableMetaData(), QList()); - QCOMPARE(object.availableExtendedMetaData(), QStringList()); - QCOMPARE(spy.count(), 0); -} - -void tst_QMediaObject::isMetaDataAvailable() -{ - QtTestMetaDataService service; - service.metaData.setMetaDataAvailable(false); - - QtTestMediaObject object(&service); - QCOMPARE(object.isMetaDataAvailable(), false); - - QSignalSpy spy(&object, SIGNAL(metaDataAvailableChanged(bool))); - service.metaData.setMetaDataAvailable(true); - - QCOMPARE(object.isMetaDataAvailable(), true); - QCOMPARE(spy.count(), 1); - QCOMPARE(spy.at(0).at(0).toBool(), true); - - service.metaData.setMetaDataAvailable(false); - - QCOMPARE(object.isMetaDataAvailable(), false); - QCOMPARE(spy.count(), 2); - QCOMPARE(spy.at(1).at(0).toBool(), false); -} - -void tst_QMediaObject::isWritable() -{ - QtTestMetaDataService service; - service.metaData.setWritable(false); - - QtTestMediaObject object(&service); - - QSignalSpy spy(&object, SIGNAL(metaDataWritableChanged(bool))); - - QCOMPARE(object.isMetaDataWritable(), false); - - service.metaData.setWritable(true); - - QCOMPARE(object.isMetaDataWritable(), true); - QCOMPARE(spy.count(), 1); - QCOMPARE(spy.at(0).at(0).toBool(), true); - - service.metaData.setWritable(false); - - QCOMPARE(object.isMetaDataWritable(), false); - QCOMPARE(spy.count(), 2); - QCOMPARE(spy.at(1).at(0).toBool(), false); -} - -void tst_QMediaObject::metaDataChanged() -{ - QtTestMetaDataService service; - QtTestMediaObject object(&service); - - QSignalSpy spy(&object, SIGNAL(metaDataChanged())); - - service.metaData.metaDataChanged(); - QCOMPARE(spy.count(), 1); - - service.metaData.metaDataChanged(); - QCOMPARE(spy.count(), 2); -} - -void tst_QMediaObject::metaData_data() -{ - QTest::addColumn("artist"); - QTest::addColumn("title"); - QTest::addColumn("genre"); - - QTest::newRow("") - << QString::fromLatin1("Dead Can Dance") - << QString::fromLatin1("Host of Seraphim") - << QString::fromLatin1("Awesome"); -} - -void tst_QMediaObject::metaData() -{ - QFETCH(QString, artist); - QFETCH(QString, title); - QFETCH(QString, genre); - - QtTestMetaDataService service; - service.metaData.populateMetaData(); - - QtTestMediaObject object(&service); - QVERIFY(object.availableMetaData().isEmpty()); - - service.metaData.m_data.insert(QtMediaServices::AlbumArtist, artist); - service.metaData.m_data.insert(QtMediaServices::Title, title); - service.metaData.m_data.insert(QtMediaServices::Genre, genre); - - QCOMPARE(object.metaData(QtMediaServices::AlbumArtist).toString(), artist); - QCOMPARE(object.metaData(QtMediaServices::Title).toString(), title); - - QList metaDataKeys = object.availableMetaData(); - QCOMPARE(metaDataKeys.size(), 3); - QVERIFY(metaDataKeys.contains(QtMediaServices::AlbumArtist)); - QVERIFY(metaDataKeys.contains(QtMediaServices::Title)); - QVERIFY(metaDataKeys.contains(QtMediaServices::Genre)); -} - -void tst_QMediaObject::setMetaData_data() -{ - QTest::addColumn("title"); - - QTest::newRow("") - << QString::fromLatin1("In the Kingdom of the Blind the One eyed are Kings"); -} - -void tst_QMediaObject::setMetaData() -{ - QFETCH(QString, title); - - QtTestMetaDataService service; - service.metaData.populateMetaData(); - - QtTestMediaObject object(&service); - - object.setMetaData(QtMediaServices::Title, title); - QCOMPARE(object.metaData(QtMediaServices::Title).toString(), title); - QCOMPARE(service.metaData.m_data.value(QtMediaServices::Title).toString(), title); -} - -void tst_QMediaObject::extendedMetaData() -{ - QFETCH(QString, artist); - QFETCH(QString, title); - QFETCH(QString, genre); - - QtTestMetaDataService service; - QtTestMediaObject object(&service); - QVERIFY(object.availableExtendedMetaData().isEmpty()); - - service.metaData.m_extendedData.insert(QLatin1String("Artist"), artist); - service.metaData.m_extendedData.insert(QLatin1String("Title"), title); - service.metaData.m_extendedData.insert(QLatin1String("Genre"), genre); - - QCOMPARE(object.extendedMetaData(QLatin1String("Artist")).toString(), artist); - QCOMPARE(object.extendedMetaData(QLatin1String("Title")).toString(), title); - - QStringList extendedKeys = object.availableExtendedMetaData(); - QCOMPARE(extendedKeys.size(), 3); - QVERIFY(extendedKeys.contains(QLatin1String("Artist"))); - QVERIFY(extendedKeys.contains(QLatin1String("Title"))); - QVERIFY(extendedKeys.contains(QLatin1String("Genre"))); -} - -void tst_QMediaObject::setExtendedMetaData() -{ - QtTestMetaDataService service; - service.metaData.populateMetaData(); - - QtTestMediaObject object(&service); - - QString title(QLatin1String("In the Kingdom of the Blind the One eyed are Kings")); - - object.setExtendedMetaData(QLatin1String("Title"), title); - QCOMPARE(object.extendedMetaData(QLatin1String("Title")).toString(), title); - QCOMPARE(service.metaData.m_extendedData.value(QLatin1String("Title")).toString(), title); -} - -QTEST_MAIN(tst_QMediaObject) - -#include "tst_qmediaobject.moc" diff --git a/tests/auto/qmediaplayer/qmediaplayer.pro b/tests/auto/qmediaplayer/qmediaplayer.pro deleted file mode 100644 index f355078d71..0000000000 --- a/tests/auto/qmediaplayer/qmediaplayer.pro +++ /dev/null @@ -1,6 +0,0 @@ -load(qttest_p4) - -SOURCES += tst_qmediaplayer.cpp - -QT = core mediaservices - diff --git a/tests/auto/qmediaplayer/tst_qmediaplayer.cpp b/tests/auto/qmediaplayer/tst_qmediaplayer.cpp deleted file mode 100644 index 9a597e2a66..0000000000 --- a/tests/auto/qmediaplayer/tst_qmediaplayer.cpp +++ /dev/null @@ -1,986 +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 test suite 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 - -#include -#include -#include -#include - - - -class AutoConnection -{ -public: - AutoConnection(QObject *sender, const char *signal, QObject *receiver, const char *method) - : sender(sender), signal(signal), receiver(receiver), method(method) - { - QObject::connect(sender, signal, receiver, method); - } - - ~AutoConnection() - { - QObject::disconnect(sender, signal, receiver, method); - } - -private: - QObject *sender; - const char *signal; - QObject *receiver; - const char *method; -}; - - -class MockPlayerControl : public QMediaPlayerControl -{ - friend class MockPlayerService; - -public: - MockPlayerControl():QMediaPlayerControl(0) {} - - QMediaPlayer::State state() const { return _state; } - QMediaPlayer::MediaStatus mediaStatus() const { return _mediaStatus; } - - qint64 duration() const { return _duration; } - - qint64 position() const { return _position; } - - void setPosition(qint64 position) { if (position != _position) emit positionChanged(_position = position); } - - int volume() const { return _volume; } - void setVolume(int volume) { emit volumeChanged(_volume = volume); } - - bool isMuted() const { return _muted; } - void setMuted(bool muted) { if (muted != _muted) emit mutedChanged(_muted = muted); } - - int bufferStatus() const { return _bufferStatus; } - - bool isAudioAvailable() const { return _audioAvailable; } - bool isVideoAvailable() const { return _videoAvailable; } - - bool isSeekable() const { return _isSeekable; } - QMediaTimeRange availablePlaybackRanges() const { return QMediaTimeRange(_seekRange.first, _seekRange.second); } - void setSeekRange(qint64 minimum, qint64 maximum) { _seekRange = qMakePair(minimum, maximum); } - - qreal playbackRate() const { return _playbackRate; } - void setPlaybackRate(qreal rate) { if (rate != _playbackRate) emit playbackRateChanged(_playbackRate = rate); } - - QMediaContent media() const { return _media; } - void setMedia(const QMediaContent &content, QIODevice *stream) - { - _stream = stream; - _media = content; - if (_state != QMediaPlayer::StoppedState) { - _mediaStatus = _media.isNull() ? QMediaPlayer::NoMedia : QMediaPlayer::LoadingMedia; - emit stateChanged(_state = QMediaPlayer::StoppedState); - emit mediaStatusChanged(_mediaStatus); - } - emit mediaChanged(_media = content); - } - QIODevice *mediaStream() const { return _stream; } - - void play() { if (_isValid && !_media.isNull() && _state != QMediaPlayer::PlayingState) emit stateChanged(_state = QMediaPlayer::PlayingState); } - void pause() { if (_isValid && !_media.isNull() && _state != QMediaPlayer::PausedState) emit stateChanged(_state = QMediaPlayer::PausedState); } - void stop() { if (_state != QMediaPlayer::StoppedState) emit stateChanged(_state = QMediaPlayer::StoppedState); } - - QMediaPlayer::State _state; - QMediaPlayer::MediaStatus _mediaStatus; - QMediaPlayer::Error _error; - qint64 _duration; - qint64 _position; - int _volume; - bool _muted; - int _bufferStatus; - bool _audioAvailable; - bool _videoAvailable; - bool _isSeekable; - QPair _seekRange; - qreal _playbackRate; - QMediaContent _media; - QIODevice *_stream; - bool _isValid; - QString _errorString; -}; - - -class MockPlayerService : public QMediaService -{ - Q_OBJECT - -public: - MockPlayerService():QMediaService(0) - { - mockControl = new MockPlayerControl; - } - - ~MockPlayerService() - { - delete mockControl; - } - - QMediaControl* control(const char *iid) const - { - if (qstrcmp(iid, QMediaPlayerControl_iid) == 0) - return mockControl; - - return 0; - } - - void setState(QMediaPlayer::State state) { emit mockControl->stateChanged(mockControl->_state = state); } - void setState(QMediaPlayer::State state, QMediaPlayer::MediaStatus status) { - mockControl->_state = state; - mockControl->_mediaStatus = status; - emit mockControl->mediaStatusChanged(status); - emit mockControl->stateChanged(state); - } - void setMediaStatus(QMediaPlayer::MediaStatus status) { emit mockControl->mediaStatusChanged(mockControl->_mediaStatus = status); } - void setIsValid(bool isValid) { mockControl->_isValid = isValid; } - void setMedia(QMediaContent media) { mockControl->_media = media; } - void setDuration(qint64 duration) { mockControl->_duration = duration; } - void setPosition(qint64 position) { mockControl->_position = position; } - void setSeekable(bool seekable) { mockControl->_isSeekable = seekable; } - void setVolume(int volume) { mockControl->_volume = volume; } - void setMuted(bool muted) { mockControl->_muted = muted; } - void setVideoAvailable(bool videoAvailable) { mockControl->_videoAvailable = videoAvailable; } - void setBufferStatus(int bufferStatus) { mockControl->_bufferStatus = bufferStatus; } - void setPlaybackRate(qreal playbackRate) { mockControl->_playbackRate = playbackRate; } - void setError(QMediaPlayer::Error error) { mockControl->_error = error; emit mockControl->error(mockControl->_error, mockControl->_errorString); } - void setErrorString(QString errorString) { mockControl->_errorString = errorString; emit mockControl->error(mockControl->_error, mockControl->_errorString); } - - void reset() - { - mockControl->_state = QMediaPlayer::StoppedState; - mockControl->_mediaStatus = QMediaPlayer::UnknownMediaStatus; - mockControl->_error = QMediaPlayer::NoError; - mockControl->_duration = 0; - mockControl->_position = 0; - mockControl->_volume = 0; - mockControl->_muted = false; - mockControl->_bufferStatus = 0; - mockControl->_videoAvailable = false; - mockControl->_isSeekable = false; - mockControl->_playbackRate = 0.0; - mockControl->_media = QMediaContent(); - mockControl->_stream = 0; - mockControl->_isValid = false; - mockControl->_errorString = QString(); - } - - MockPlayerControl *mockControl; -}; - -class MockProvider : public QMediaServiceProvider -{ -public: - MockProvider(MockPlayerService *service):mockService(service) {} - QMediaService *requestService(const QByteArray &, const QMediaServiceProviderHint &) - { - return mockService; - } - - void releaseService(QMediaService *service) { delete service; } - - MockPlayerService *mockService; -}; - -class tst_QMediaPlayer: public QObject -{ - Q_OBJECT - -public slots: - void initTestCase_data(); - void initTestCase(); - void cleanupTestCase(); - void init(); - void cleanup(); - -private slots: - void testNullService(); - void testValid(); - void testMedia(); - void testDuration(); - void testPosition(); - void testVolume(); - void testMuted(); - void testVideoAvailable(); - void testBufferStatus(); - void testSeekable(); - void testPlaybackRate(); - void testError(); - void testErrorString(); - void testService(); - void testPlay(); - void testPause(); - void testStop(); - void testMediaStatus(); - void testPlaylist(); - -private: - MockProvider *mockProvider; - MockPlayerService *mockService; - QMediaPlayer *player; -}; - -void tst_QMediaPlayer::initTestCase_data() -{ - QTest::addColumn("valid"); - QTest::addColumn("state"); - QTest::addColumn("status"); - QTest::addColumn("mediaContent"); - QTest::addColumn("duration"); - QTest::addColumn("position"); - QTest::addColumn("seekable"); - QTest::addColumn("volume"); - QTest::addColumn("muted"); - QTest::addColumn("videoAvailable"); - QTest::addColumn("bufferStatus"); - QTest::addColumn("playbackRate"); - QTest::addColumn("error"); - QTest::addColumn("errorString"); - - QTest::newRow("invalid") << false << QMediaPlayer::StoppedState << QMediaPlayer::UnknownMediaStatus << - QMediaContent() << qint64(0) << qint64(0) << false << 0 << false << false << 0 << - qreal(0) << QMediaPlayer::NoError << QString(); - QTest::newRow("valid+null") << true << QMediaPlayer::StoppedState << QMediaPlayer::UnknownMediaStatus << - QMediaContent() << qint64(0) << qint64(0) << false << 0 << false << false << 50 << - qreal(0) << QMediaPlayer::NoError << QString(); - QTest::newRow("valid+content+stopped") << true << QMediaPlayer::StoppedState << QMediaPlayer::UnknownMediaStatus << - QMediaContent(QUrl("file:///some.mp3")) << qint64(0) << qint64(0) << false << 50 << false << false << 0 << - qreal(1) << QMediaPlayer::NoError << QString(); - QTest::newRow("valid+content+playing") << true << QMediaPlayer::PlayingState << QMediaPlayer::LoadedMedia << - QMediaContent(QUrl("file:///some.mp3")) << qint64(10000) << qint64(10) << true << 50 << true << false << 0 << - qreal(1) << QMediaPlayer::NoError << QString(); - QTest::newRow("valid+content+paused") << true << QMediaPlayer::PausedState << QMediaPlayer::LoadedMedia << - QMediaContent(QUrl("file:///some.mp3")) << qint64(10000) << qint64(10) << true << 50 << true << false << 0 << - qreal(1) << QMediaPlayer::NoError << QString(); - QTest::newRow("valud+streaming") << true << QMediaPlayer::PlayingState << QMediaPlayer::LoadedMedia << - QMediaContent(QUrl("http://example.com/stream")) << qint64(10000) << qint64(10000) << false << 50 << false << true << 0 << - qreal(1) << QMediaPlayer::NoError << QString(); - QTest::newRow("valid+error") << true << QMediaPlayer::StoppedState << QMediaPlayer::UnknownMediaStatus << - QMediaContent(QUrl("http://example.com/stream")) << qint64(0) << qint64(0) << false << 50 << false << false << 0 << - qreal(0) << QMediaPlayer::ResourceError << QString("Resource unavailable"); -} - -void tst_QMediaPlayer::initTestCase() -{ - qRegisterMetaType(); - - mockService = new MockPlayerService; - mockProvider = new MockProvider(mockService); - player = new QMediaPlayer(0, 0, mockProvider); -} - -void tst_QMediaPlayer::cleanupTestCase() -{ - delete player; -} - -void tst_QMediaPlayer::init() -{ - mockService->reset(); -} - -void tst_QMediaPlayer::cleanup() -{ -} - -void tst_QMediaPlayer::testNullService() -{ - MockProvider provider(0); - QMediaPlayer player(0, 0, &provider); - - const QIODevice *nullDevice = 0; - - QCOMPARE(player.media(), QMediaContent()); - QCOMPARE(player.mediaStream(), nullDevice); - QCOMPARE(player.state(), QMediaPlayer::StoppedState); - QCOMPARE(player.mediaStatus(), QMediaPlayer::UnknownMediaStatus); - QCOMPARE(player.duration(), qint64(-1)); - QCOMPARE(player.position(), qint64(0)); - QCOMPARE(player.volume(), 0); - QCOMPARE(player.isMuted(), false); - QCOMPARE(player.isVideoAvailable(), false); - QCOMPARE(player.bufferStatus(), 0); - QCOMPARE(player.isSeekable(), false); - QCOMPARE(player.playbackRate(), qreal(0)); - QCOMPARE(player.error(), QMediaPlayer::ServiceMissingError); - - { - QFETCH_GLOBAL(QMediaContent, mediaContent); - - QSignalSpy spy(&player, SIGNAL(mediaChanged(QMediaContent))); - QFile file; - - player.setMedia(mediaContent, &file); - QCOMPARE(player.media(), QMediaContent()); - QCOMPARE(player.mediaStream(), nullDevice); - QCOMPARE(spy.count(), 0); - } { - QSignalSpy stateSpy(&player, SIGNAL(stateChanged(QMediaPlayer::State))); - QSignalSpy statusSpy(&player, SIGNAL(mediaStatusChanged(QMediaPlayer::MediaStatus))); - - player.play(); - QCOMPARE(player.state(), QMediaPlayer::StoppedState); - QCOMPARE(player.mediaStatus(), QMediaPlayer::UnknownMediaStatus); - QCOMPARE(stateSpy.count(), 0); - QCOMPARE(statusSpy.count(), 0); - - player.pause(); - QCOMPARE(player.state(), QMediaPlayer::StoppedState); - QCOMPARE(player.mediaStatus(), QMediaPlayer::UnknownMediaStatus); - QCOMPARE(stateSpy.count(), 0); - QCOMPARE(statusSpy.count(), 0); - - player.stop(); - QCOMPARE(player.state(), QMediaPlayer::StoppedState); - QCOMPARE(player.mediaStatus(), QMediaPlayer::UnknownMediaStatus); - QCOMPARE(stateSpy.count(), 0); - QCOMPARE(statusSpy.count(), 0); - } { - QFETCH_GLOBAL(int, volume); - QFETCH_GLOBAL(bool, muted); - - QSignalSpy volumeSpy(&player, SIGNAL(volumeChanged(int))); - QSignalSpy mutingSpy(&player, SIGNAL(mutedChanged(bool))); - - player.setVolume(volume); - QCOMPARE(player.volume(), 0); - QCOMPARE(volumeSpy.count(), 0); - - player.setMuted(muted); - QCOMPARE(player.isMuted(), false); - QCOMPARE(mutingSpy.count(), 0); - } { - QFETCH_GLOBAL(qint64, position); - - QSignalSpy spy(&player, SIGNAL(positionChanged(qint64))); - - player.setPosition(position); - QCOMPARE(player.position(), qint64(0)); - QCOMPARE(spy.count(), 0); - } { - QFETCH_GLOBAL(qreal, playbackRate); - - QSignalSpy spy(&player, SIGNAL(playbackRateChanged(qreal))); - - player.setPlaybackRate(playbackRate); - QCOMPARE(player.playbackRate(), qreal(0)); - QCOMPARE(spy.count(), 0); - } { - QMediaPlaylist playlist; - playlist.setMediaObject(&player); - - QSignalSpy mediaSpy(&player, SIGNAL(mediaChanged(QMediaContent))); - QSignalSpy statusSpy(&player, SIGNAL(mediaStatusChanged(QMediaPlayer::MediaStatus))); - - playlist.addMedia(QUrl("http://example.com/stream")); - playlist.addMedia(QUrl("file:///some.mp3")); - - playlist.setCurrentIndex(0); - QCOMPARE(playlist.currentIndex(), 0); - QCOMPARE(player.media(), QMediaContent()); - QCOMPARE(mediaSpy.count(), 0); - QCOMPARE(statusSpy.count(), 0); - - playlist.next(); - QCOMPARE(playlist.currentIndex(), 1); - QCOMPARE(player.media(), QMediaContent()); - QCOMPARE(mediaSpy.count(), 0); - QCOMPARE(statusSpy.count(), 0); - } -} - -void tst_QMediaPlayer::testValid() -{ - /* - QFETCH_GLOBAL(bool, valid); - - mockService->setIsValid(valid); - QCOMPARE(player->isValid(), valid); - */ -} - -void tst_QMediaPlayer::testMedia() -{ - QFETCH_GLOBAL(QMediaContent, mediaContent); - - mockService->setMedia(mediaContent); - QCOMPARE(player->media(), mediaContent); - - QBuffer stream; - player->setMedia(mediaContent, &stream); - QCOMPARE(player->media(), mediaContent); - QCOMPARE((QBuffer*)player->mediaStream(), &stream); -} - -void tst_QMediaPlayer::testDuration() -{ - QFETCH_GLOBAL(qint64, duration); - - mockService->setDuration(duration); - QVERIFY(player->duration() == duration); -} - -void tst_QMediaPlayer::testPosition() -{ - QFETCH_GLOBAL(bool, valid); - QFETCH_GLOBAL(bool, seekable); - QFETCH_GLOBAL(qint64, position); - QFETCH_GLOBAL(qint64, duration); - - mockService->setIsValid(valid); - mockService->setSeekable(seekable); - mockService->setPosition(position); - mockService->setDuration(duration); - QVERIFY(player->isSeekable() == seekable); - QVERIFY(player->position() == position); - QVERIFY(player->duration() == duration); - - if (seekable) { - { QSignalSpy spy(player, SIGNAL(positionChanged(qint64))); - player->setPosition(position); - QCOMPARE(player->position(), position); - QCOMPARE(spy.count(), 0); } - - mockService->setPosition(position); - { QSignalSpy spy(player, SIGNAL(positionChanged(qint64))); - player->setPosition(0); - QCOMPARE(player->position(), qint64(0)); - QCOMPARE(spy.count(), position == 0 ? 0 : 1); } - - mockService->setPosition(position); - { QSignalSpy spy(player, SIGNAL(positionChanged(qint64))); - player->setPosition(duration); - QCOMPARE(player->position(), duration); - QCOMPARE(spy.count(), position == duration ? 0 : 1); } - - mockService->setPosition(position); - { QSignalSpy spy(player, SIGNAL(positionChanged(qint64))); - player->setPosition(-1); - QCOMPARE(player->position(), qint64(0)); - QCOMPARE(spy.count(), position == 0 ? 0 : 1); } - - mockService->setPosition(position); - { QSignalSpy spy(player, SIGNAL(positionChanged(qint64))); - player->setPosition(duration + 1); - QCOMPARE(player->position(), duration); - QCOMPARE(spy.count(), position == duration ? 0 : 1); } - } - else { - QSignalSpy spy(player, SIGNAL(positionChanged(qint64))); - player->setPosition(position); - - QCOMPARE(player->position(), position); - QCOMPARE(spy.count(), 0); - } -} - -void tst_QMediaPlayer::testVolume() -{ - QFETCH_GLOBAL(bool, valid); - QFETCH_GLOBAL(int, volume); - - mockService->setVolume(volume); - QVERIFY(player->volume() == volume); - - if (valid) { - { QSignalSpy spy(player, SIGNAL(volumeChanged(int))); - player->setVolume(10); - QCOMPARE(player->volume(), 10); - QCOMPARE(spy.count(), 1); } - - { QSignalSpy spy(player, SIGNAL(volumeChanged(int))); - player->setVolume(-1000); - QCOMPARE(player->volume(), 0); - QCOMPARE(spy.count(), 1); } - - { QSignalSpy spy(player, SIGNAL(volumeChanged(int))); - player->setVolume(100); - QCOMPARE(player->volume(), 100); - QCOMPARE(spy.count(), 1); } - - { QSignalSpy spy(player, SIGNAL(volumeChanged(int))); - player->setVolume(1000); - QCOMPARE(player->volume(), 100); - QCOMPARE(spy.count(), 0); } - } -} - -void tst_QMediaPlayer::testMuted() -{ - QFETCH_GLOBAL(bool, valid); - QFETCH_GLOBAL(bool, muted); - QFETCH_GLOBAL(int, volume); - - if (valid) { - mockService->setMuted(muted); - mockService->setVolume(volume); - QVERIFY(player->isMuted() == muted); - - QSignalSpy spy(player, SIGNAL(mutedChanged(bool))); - player->setMuted(!muted); - QCOMPARE(player->isMuted(), !muted); - QCOMPARE(player->volume(), volume); - QCOMPARE(spy.count(), 1); - } -} - -void tst_QMediaPlayer::testVideoAvailable() -{ - QFETCH_GLOBAL(bool, videoAvailable); - - mockService->setVideoAvailable(videoAvailable); - QVERIFY(player->isVideoAvailable() == videoAvailable); -} - -void tst_QMediaPlayer::testBufferStatus() -{ - QFETCH_GLOBAL(int, bufferStatus); - - mockService->setBufferStatus(bufferStatus); - QVERIFY(player->bufferStatus() == bufferStatus); -} - -void tst_QMediaPlayer::testSeekable() -{ - QFETCH_GLOBAL(bool, seekable); - - mockService->setSeekable(seekable); - QVERIFY(player->isSeekable() == seekable); -} - -void tst_QMediaPlayer::testPlaybackRate() -{ - QFETCH_GLOBAL(bool, valid); - QFETCH_GLOBAL(qreal, playbackRate); - - if (valid) { - mockService->setPlaybackRate(playbackRate); - QVERIFY(player->playbackRate() == playbackRate); - - QSignalSpy spy(player, SIGNAL(playbackRateChanged(qreal))); - player->setPlaybackRate(playbackRate + 0.5f); - QCOMPARE(player->playbackRate(), playbackRate + 0.5f); - QCOMPARE(spy.count(), 1); - } -} - -void tst_QMediaPlayer::testError() -{ - QFETCH_GLOBAL(QMediaPlayer::Error, error); - - mockService->setError(error); - QVERIFY(player->error() == error); -} - -void tst_QMediaPlayer::testErrorString() -{ - QFETCH_GLOBAL(QString, errorString); - - mockService->setErrorString(errorString); - QVERIFY(player->errorString() == errorString); -} - -void tst_QMediaPlayer::testService() -{ - /* - QFETCH_GLOBAL(bool, valid); - - mockService->setIsValid(valid); - - if (valid) - QVERIFY(player->service() != 0); - else - QVERIFY(player->service() == 0); - */ -} - -void tst_QMediaPlayer::testPlay() -{ - QFETCH_GLOBAL(bool, valid); - QFETCH_GLOBAL(QMediaContent, mediaContent); - QFETCH_GLOBAL(QMediaPlayer::State, state); - - mockService->setIsValid(valid); - mockService->setState(state); - mockService->setMedia(mediaContent); - QVERIFY(player->state() == state); - QVERIFY(player->media() == mediaContent); - - QSignalSpy spy(player, SIGNAL(stateChanged(QMediaPlayer::State))); - - player->play(); - - if (!valid || mediaContent.isNull()) { - QCOMPARE(player->state(), QMediaPlayer::StoppedState); - QCOMPARE(spy.count(), 0); - } - else { - QCOMPARE(player->state(), QMediaPlayer::PlayingState); - QCOMPARE(spy.count(), state == QMediaPlayer::PlayingState ? 0 : 1); - } -} - -void tst_QMediaPlayer::testPause() -{ - QFETCH_GLOBAL(bool, valid); - QFETCH_GLOBAL(QMediaContent, mediaContent); - QFETCH_GLOBAL(QMediaPlayer::State, state); - - mockService->setIsValid(valid); - mockService->setState(state); - mockService->setMedia(mediaContent); - QVERIFY(player->state() == state); - QVERIFY(player->media() == mediaContent); - - QSignalSpy spy(player, SIGNAL(stateChanged(QMediaPlayer::State))); - - player->pause(); - - if (!valid || mediaContent.isNull()) { - QCOMPARE(player->state(), QMediaPlayer::StoppedState); - QCOMPARE(spy.count(), 0); - } - else { - QCOMPARE(player->state(), QMediaPlayer::PausedState); - QCOMPARE(spy.count(), state == QMediaPlayer::PausedState ? 0 : 1); - } -} - -void tst_QMediaPlayer::testStop() -{ - QFETCH_GLOBAL(QMediaContent, mediaContent); - QFETCH_GLOBAL(QMediaPlayer::State, state); - - mockService->setState(state); - mockService->setMedia(mediaContent); - QVERIFY(player->state() == state); - QVERIFY(player->media() == mediaContent); - - QSignalSpy spy(player, SIGNAL(stateChanged(QMediaPlayer::State))); - - player->stop(); - - if (mediaContent.isNull() || state == QMediaPlayer::StoppedState) { - QCOMPARE(player->state(), QMediaPlayer::StoppedState); - QCOMPARE(spy.count(), 0); - } - else { - QCOMPARE(player->state(), QMediaPlayer::StoppedState); - QCOMPARE(spy.count(), 1); - } -} - -void tst_QMediaPlayer::testMediaStatus() -{ - QFETCH_GLOBAL(int, bufferStatus); - int bufferSignals = 0; - - player->setNotifyInterval(10); - - mockService->setMediaStatus(QMediaPlayer::NoMedia); - mockService->setBufferStatus(bufferStatus); - - AutoConnection connection( - player, SIGNAL(bufferStatusChanged(int)), - &QTestEventLoop::instance(), SLOT(exitLoop())); - - QSignalSpy statusSpy(player, SIGNAL(mediaStatusChanged(QMediaPlayer::MediaStatus))); - QSignalSpy bufferSpy(player, SIGNAL(bufferStatusChanged(int))); - - QCOMPARE(player->mediaStatus(), QMediaPlayer::NoMedia); - - mockService->setMediaStatus(QMediaPlayer::LoadingMedia); - QCOMPARE(player->mediaStatus(), QMediaPlayer::LoadingMedia); - QCOMPARE(statusSpy.count(), 1); - - QCOMPARE(qvariant_cast(statusSpy.last().value(0)), - QMediaPlayer::LoadingMedia); - - mockService->setMediaStatus(QMediaPlayer::LoadedMedia); - QCOMPARE(player->mediaStatus(), QMediaPlayer::LoadedMedia); - QCOMPARE(statusSpy.count(), 2); - - QCOMPARE(qvariant_cast(statusSpy.last().value(0)), - QMediaPlayer::LoadedMedia); - - // Verify the bufferStatusChanged() signal isn't being emitted. - QTestEventLoop::instance().enterLoop(1); - QCOMPARE(bufferSpy.count(), 0); - - mockService->setMediaStatus(QMediaPlayer::StalledMedia); - QCOMPARE(player->mediaStatus(), QMediaPlayer::StalledMedia); - QCOMPARE(statusSpy.count(), 3); - - QCOMPARE(qvariant_cast(statusSpy.last().value(0)), - QMediaPlayer::StalledMedia); - - // Verify the bufferStatusChanged() signal is being emitted. - QTestEventLoop::instance().enterLoop(1); - QVERIFY(bufferSpy.count() > bufferSignals); - QCOMPARE(bufferSpy.last().value(0).toInt(), bufferStatus); - bufferSignals = bufferSpy.count(); - - mockService->setMediaStatus(QMediaPlayer::BufferingMedia); - QCOMPARE(player->mediaStatus(), QMediaPlayer::BufferingMedia); - QCOMPARE(statusSpy.count(), 4); - - QCOMPARE(qvariant_cast(statusSpy.last().value(0)), - QMediaPlayer::BufferingMedia); - - // Verify the bufferStatusChanged() signal is being emitted. - QTestEventLoop::instance().enterLoop(1); - QVERIFY(bufferSpy.count() > bufferSignals); - QCOMPARE(bufferSpy.last().value(0).toInt(), bufferStatus); - bufferSignals = bufferSpy.count(); - - mockService->setMediaStatus(QMediaPlayer::BufferedMedia); - QCOMPARE(player->mediaStatus(), QMediaPlayer::BufferedMedia); - QCOMPARE(statusSpy.count(), 5); - - QCOMPARE(qvariant_cast(statusSpy.last().value(0)), - QMediaPlayer::BufferedMedia); - - // Verify the bufferStatusChanged() signal isn't being emitted. - QTestEventLoop::instance().enterLoop(1); - QCOMPARE(bufferSpy.count(), bufferSignals); - - mockService->setMediaStatus(QMediaPlayer::EndOfMedia); - QCOMPARE(player->mediaStatus(), QMediaPlayer::EndOfMedia); - QCOMPARE(statusSpy.count(), 6); - - QCOMPARE(qvariant_cast(statusSpy.last().value(0)), - QMediaPlayer::EndOfMedia); -} - -void tst_QMediaPlayer::testPlaylist() -{ - QMediaContent content0(QUrl(QLatin1String("test://audio/song1.mp3"))); - QMediaContent content1(QUrl(QLatin1String("test://audio/song2.mp3"))); - QMediaContent content2(QUrl(QLatin1String("test://video/movie1.mp4"))); - QMediaContent content3(QUrl(QLatin1String("test://video/movie2.mp4"))); - QMediaContent content4(QUrl(QLatin1String("test://image/photo.jpg"))); - - mockService->setIsValid(true); - mockService->setState(QMediaPlayer::StoppedState, QMediaPlayer::NoMedia); - - QMediaPlaylist *playlist = new QMediaPlaylist; - playlist->setMediaObject(player); - - QSignalSpy stateSpy(player, SIGNAL(stateChanged(QMediaPlayer::State))); - QSignalSpy mediaSpy(player, SIGNAL(mediaChanged(QMediaContent))); - - // Test the player does nothing with an empty playlist attached. - player->play(); - QCOMPARE(player->state(), QMediaPlayer::StoppedState); - QCOMPARE(player->media(), QMediaContent()); - QCOMPARE(stateSpy.count(), 0); - QCOMPARE(mediaSpy.count(), 0); - - playlist->addMedia(content0); - playlist->addMedia(content1); - playlist->addMedia(content2); - playlist->addMedia(content3); - - // Test changing the playlist position, changes the current media, but not the playing state. - playlist->setCurrentIndex(1); - QCOMPARE(player->media(), content1); - QCOMPARE(player->state(), QMediaPlayer::StoppedState); - QCOMPARE(stateSpy.count(), 0); - QCOMPARE(mediaSpy.count(), 1); - - // Test playing starts with the current media. - player->play(); - QCOMPARE(player->media(), content1); - QCOMPARE(player->state(), QMediaPlayer::PlayingState); - QCOMPARE(stateSpy.count(), 1); - QCOMPARE(mediaSpy.count(), 1); - - // Test pausing doesn't change the current media. - player->pause(); - QCOMPARE(player->media(), content1); - QCOMPARE(player->state(), QMediaPlayer::PausedState); - QCOMPARE(stateSpy.count(), 2); - QCOMPARE(mediaSpy.count(), 1); - - // Test stopping doesn't change the current media. - player->stop(); - QCOMPARE(player->media(), content1); - QCOMPARE(player->state(), QMediaPlayer::StoppedState); - QCOMPARE(stateSpy.count(), 3); - QCOMPARE(mediaSpy.count(), 1); - - // Test when the player service reaches the end of the current media, the player moves onto - // the next item without stopping. - player->play(); - QCOMPARE(player->media(), content1); - QCOMPARE(player->state(), QMediaPlayer::PlayingState); - QCOMPARE(stateSpy.count(), 4); - QCOMPARE(mediaSpy.count(), 1); - - mockService->setState(QMediaPlayer::StoppedState, QMediaPlayer::EndOfMedia); - QCOMPARE(player->media(), content2); - QCOMPARE(player->state(), QMediaPlayer::PlayingState); - QCOMPARE(stateSpy.count(), 4); - QCOMPARE(mediaSpy.count(), 2); - - // Test skipping the current media doesn't change the state. - playlist->next(); - QCOMPARE(player->media(), content3); - QCOMPARE(player->state(), QMediaPlayer::PlayingState); - QCOMPARE(stateSpy.count(), 4); - QCOMPARE(mediaSpy.count(), 3); - - // Test changing the current media while paused doesn't change the state. - player->pause(); - mockService->setMediaStatus(QMediaPlayer::BufferedMedia); - QCOMPARE(player->media(), content3); - QCOMPARE(player->state(), QMediaPlayer::PausedState); - QCOMPARE(stateSpy.count(), 5); - QCOMPARE(mediaSpy.count(), 3); - - playlist->previous(); - QCOMPARE(player->media(), content2); - QCOMPARE(player->state(), QMediaPlayer::PausedState); - QCOMPARE(stateSpy.count(), 5); - QCOMPARE(mediaSpy.count(), 4); - - // Test changing the current media while stopped doesn't change the state. - player->stop(); - mockService->setMediaStatus(QMediaPlayer::LoadedMedia); - QCOMPARE(player->media(), content2); - QCOMPARE(player->state(), QMediaPlayer::StoppedState); - QCOMPARE(stateSpy.count(), 6); - QCOMPARE(mediaSpy.count(), 4); - - playlist->next(); - QCOMPARE(player->media(), content3); - QCOMPARE(player->state(), QMediaPlayer::StoppedState); - QCOMPARE(stateSpy.count(), 6); - QCOMPARE(mediaSpy.count(), 5); - - // Test the player is stopped and the current media cleared when it reaches the end of the last - // item in the playlist. - player->play(); - QCOMPARE(player->media(), content3); - QCOMPARE(player->state(), QMediaPlayer::PlayingState); - QCOMPARE(stateSpy.count(), 7); - QCOMPARE(mediaSpy.count(), 5); - - // Double up the signals to ensure some noise doesn't destabalize things. - mockService->setState(QMediaPlayer::StoppedState, QMediaPlayer::EndOfMedia); - mockService->setState(QMediaPlayer::StoppedState, QMediaPlayer::EndOfMedia); - QCOMPARE(player->media(), QMediaContent()); - QCOMPARE(player->state(), QMediaPlayer::StoppedState); - QCOMPARE(stateSpy.count(), 8); - QCOMPARE(mediaSpy.count(), 6); - - // Test starts playing from the start of the playlist if there is no current media selected. - player->play(); - QCOMPARE(player->media(), content0); - QCOMPARE(player->state(), QMediaPlayer::PlayingState); - QCOMPARE(stateSpy.count(), 9); - QCOMPARE(mediaSpy.count(), 7); - - // Test deleting the playlist stops the player and clears the media it set. - delete playlist; - QCOMPARE(player->media(), QMediaContent()); - QCOMPARE(player->state(), QMediaPlayer::StoppedState); - QCOMPARE(stateSpy.count(), 10); - QCOMPARE(mediaSpy.count(), 8); - - // Test the player works as normal with the playlist removed. - player->play(); - QCOMPARE(player->media(), QMediaContent()); - QCOMPARE(player->state(), QMediaPlayer::StoppedState); - QCOMPARE(stateSpy.count(), 10); - QCOMPARE(mediaSpy.count(), 8); - - player->setMedia(content1); - player->play(); - - QCOMPARE(player->media(), content1); - QCOMPARE(player->state(), QMediaPlayer::PlayingState); - QCOMPARE(stateSpy.count(), 11); - QCOMPARE(mediaSpy.count(), 9); - - // Test the player can bind to playlist again - playlist = new QMediaPlaylist; - playlist->setMediaObject(player); - QCOMPARE(playlist->mediaObject(), qobject_cast(player)); - - QCOMPARE(player->media(), QMediaContent()); - QCOMPARE(player->state(), QMediaPlayer::StoppedState); - - playlist->addMedia(content0); - playlist->addMedia(content1); - playlist->addMedia(content2); - playlist->addMedia(content3); - - playlist->setCurrentIndex(1); - QCOMPARE(player->media(), content1); - QCOMPARE(player->state(), QMediaPlayer::StoppedState); - - // Test attaching the new playlist, - // player should detach the current one - QMediaPlaylist *playlist2 = new QMediaPlaylist; - playlist2->addMedia(content1); - playlist2->addMedia(content2); - playlist2->addMedia(content3); - playlist2->setCurrentIndex(2); - - player->play(); - playlist2->setMediaObject(player); - QCOMPARE(playlist2->mediaObject(), qobject_cast(player)); - QVERIFY(playlist->mediaObject() == 0); - QCOMPARE(player->media(), playlist2->currentMedia()); - QCOMPARE(player->state(), QMediaPlayer::StoppedState); - - playlist2->setCurrentIndex(1); - QCOMPARE(player->media(), playlist2->currentMedia()); -} - -QTEST_MAIN(tst_QMediaPlayer) - -#include "tst_qmediaplayer.moc" diff --git a/tests/auto/qmediaplaylist/qmediaplaylist.pro b/tests/auto/qmediaplaylist/qmediaplaylist.pro deleted file mode 100644 index 809473bb86..0000000000 --- a/tests/auto/qmediaplaylist/qmediaplaylist.pro +++ /dev/null @@ -1,6 +0,0 @@ -load(qttest_p4) - -SOURCES = tst_qmediaplaylist.cpp - -QT = core mediaservices - diff --git a/tests/auto/qmediaplaylist/tmp.unsupported_format b/tests/auto/qmediaplaylist/tmp.unsupported_format deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/tests/auto/qmediaplaylist/tst_qmediaplaylist.cpp b/tests/auto/qmediaplaylist/tst_qmediaplaylist.cpp deleted file mode 100644 index 1037f3767c..0000000000 --- a/tests/auto/qmediaplaylist/tst_qmediaplaylist.cpp +++ /dev/null @@ -1,593 +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 test suite 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 -#include -#include -#include -#include - - -class MockReadOnlyPlaylistProvider : public QMediaPlaylistProvider -{ - Q_OBJECT -public: - MockReadOnlyPlaylistProvider(QObject *parent) - :QMediaPlaylistProvider(parent) - { - m_items.append(QMediaContent(QUrl(QLatin1String("file:///1")))); - m_items.append(QMediaContent(QUrl(QLatin1String("file:///2")))); - m_items.append(QMediaContent(QUrl(QLatin1String("file:///3")))); - } - - int mediaCount() const { return m_items.size(); } - QMediaContent media(int index) const - { - return index >=0 && index < mediaCount() ? m_items.at(index) : QMediaContent(); - } - -private: - QList m_items; -}; - -class MockPlaylistControl : public QMediaPlaylistControl -{ - Q_OBJECT -public: - MockPlaylistControl(QObject *parent) : QMediaPlaylistControl(parent) - { - m_navigator = new QMediaPlaylistNavigator(new MockReadOnlyPlaylistProvider(this), this); - } - - ~MockPlaylistControl() - { - } - - QMediaPlaylistProvider* playlistProvider() const { return m_navigator->playlist(); } - bool setPlaylistProvider(QMediaPlaylistProvider *playlist) { m_navigator->setPlaylist(playlist); return true; } - - int currentIndex() const { return m_navigator->currentIndex(); } - void setCurrentIndex(int position) { m_navigator->jump(position); } - int nextIndex(int steps) const { return m_navigator->nextIndex(steps); } - int previousIndex(int steps) const { return m_navigator->previousIndex(steps); } - - void next() { m_navigator->next(); } - void previous() { m_navigator->previous(); } - - QMediaPlaylist::PlaybackMode playbackMode() const { return m_navigator->playbackMode(); } - void setPlaybackMode(QMediaPlaylist::PlaybackMode mode) { m_navigator->setPlaybackMode(mode); } - -private: - QMediaPlaylistNavigator *m_navigator; -}; - -class MockPlaylistService : public QMediaService -{ - Q_OBJECT - -public: - MockPlaylistService():QMediaService(0) - { - mockControl = new MockPlaylistControl(this); - } - - ~MockPlaylistService() - { - } - - QMediaControl* control(const char *iid) const - { - if (qstrcmp(iid, QMediaPlaylistControl_iid) == 0) - return mockControl; - return 0; - } - - MockPlaylistControl *mockControl; -}; - -class MockReadOnlyPlaylistObject : public QMediaObject -{ - Q_OBJECT -public: - MockReadOnlyPlaylistObject(QObject *parent = 0) - :QMediaObject(parent, new MockPlaylistService) - { - } -}; - - -class tst_QMediaPlaylist : public QObject -{ - Q_OBJECT -public slots: - void init(); - void cleanup(); - void initTestCase(); - -private slots: - void construction(); - void append(); - void insert(); - void clear(); - void removeMedia(); - void currentItem(); - void saveAndLoad(); - void playbackMode(); - void playbackMode_data(); - void shuffle(); - void readOnlyPlaylist(); - void setMediaObject(); - -private: - QMediaContent content1; - QMediaContent content2; - QMediaContent content3; -}; - -void tst_QMediaPlaylist::init() -{ -} - -void tst_QMediaPlaylist::initTestCase() -{ - content1 = QMediaContent(QUrl(QLatin1String("file:///1"))); - content2 = QMediaContent(QUrl(QLatin1String("file:///2"))); - content3 = QMediaContent(QUrl(QLatin1String("file:///3"))); -} - -void tst_QMediaPlaylist::cleanup() -{ -} - -void tst_QMediaPlaylist::construction() -{ - QMediaPlaylist playlist; - QCOMPARE(playlist.mediaCount(), 0); - QVERIFY(playlist.isEmpty()); -} - -void tst_QMediaPlaylist::append() -{ - QMediaPlaylist playlist; - QVERIFY(!playlist.isReadOnly()); - - playlist.addMedia(content1); - QCOMPARE(playlist.mediaCount(), 1); - QCOMPARE(playlist.media(0), content1); - - QSignalSpy aboutToBeInsertedSignalSpy(&playlist, SIGNAL(mediaAboutToBeInserted(int,int))); - QSignalSpy insertedSignalSpy(&playlist, SIGNAL(mediaInserted(int,int))); - playlist.addMedia(content2); - QCOMPARE(playlist.mediaCount(), 2); - QCOMPARE(playlist.media(1), content2); - - QCOMPARE(aboutToBeInsertedSignalSpy.count(), 1); - QCOMPARE(aboutToBeInsertedSignalSpy.first()[0].toInt(), 1); - QCOMPARE(aboutToBeInsertedSignalSpy.first()[1].toInt(), 1); - - QCOMPARE(insertedSignalSpy.count(), 1); - QCOMPARE(insertedSignalSpy.first()[0].toInt(), 1); - QCOMPARE(insertedSignalSpy.first()[1].toInt(), 1); - - aboutToBeInsertedSignalSpy.clear(); - insertedSignalSpy.clear(); - - QMediaContent content4(QUrl(QLatin1String("file:///4"))); - QMediaContent content5(QUrl(QLatin1String("file:///5"))); - playlist.addMedia(QList() << content3 << content4 << content5); - QCOMPARE(playlist.mediaCount(), 5); - QCOMPARE(playlist.media(2), content3); - QCOMPARE(playlist.media(3), content4); - QCOMPARE(playlist.media(4), content5); - - QCOMPARE(aboutToBeInsertedSignalSpy.count(), 1); - QCOMPARE(aboutToBeInsertedSignalSpy[0][0].toInt(), 2); - QCOMPARE(aboutToBeInsertedSignalSpy[0][1].toInt(), 4); - - QCOMPARE(insertedSignalSpy.count(), 1); - QCOMPARE(insertedSignalSpy[0][0].toInt(), 2); - QCOMPARE(insertedSignalSpy[0][1].toInt(), 4); - - aboutToBeInsertedSignalSpy.clear(); - insertedSignalSpy.clear(); - - playlist.addMedia(QList()); - QCOMPARE(aboutToBeInsertedSignalSpy.count(), 0); - QCOMPARE(insertedSignalSpy.count(), 0); -} - -void tst_QMediaPlaylist::insert() -{ - QMediaPlaylist playlist; - QVERIFY(!playlist.isReadOnly()); - - playlist.addMedia(content1); - QCOMPARE(playlist.mediaCount(), 1); - QCOMPARE(playlist.media(0), content1); - - playlist.addMedia(content2); - QCOMPARE(playlist.mediaCount(), 2); - QCOMPARE(playlist.media(1), content2); - - QSignalSpy aboutToBeInsertedSignalSpy(&playlist, SIGNAL(mediaAboutToBeInserted(int,int))); - QSignalSpy insertedSignalSpy(&playlist, SIGNAL(mediaInserted(int,int))); - - playlist.insertMedia(1, content3); - QCOMPARE(playlist.mediaCount(), 3); - QCOMPARE(playlist.media(0), content1); - QCOMPARE(playlist.media(1), content3); - QCOMPARE(playlist.media(2), content2); - - QCOMPARE(aboutToBeInsertedSignalSpy.count(), 1); - QCOMPARE(aboutToBeInsertedSignalSpy.first()[0].toInt(), 1); - QCOMPARE(aboutToBeInsertedSignalSpy.first()[1].toInt(), 1); - - QCOMPARE(insertedSignalSpy.count(), 1); - QCOMPARE(insertedSignalSpy.first()[0].toInt(), 1); - QCOMPARE(insertedSignalSpy.first()[1].toInt(), 1); - - aboutToBeInsertedSignalSpy.clear(); - insertedSignalSpy.clear(); - - QMediaContent content4(QUrl(QLatin1String("file:///4"))); - QMediaContent content5(QUrl(QLatin1String("file:///5"))); - playlist.insertMedia(1, QList() << content4 << content5); - - QCOMPARE(playlist.media(0), content1); - QCOMPARE(playlist.media(1), content4); - QCOMPARE(playlist.media(2), content5); - QCOMPARE(playlist.media(3), content3); - QCOMPARE(playlist.media(4), content2); - QCOMPARE(aboutToBeInsertedSignalSpy.count(), 1); - QCOMPARE(aboutToBeInsertedSignalSpy[0][0].toInt(), 1); - QCOMPARE(aboutToBeInsertedSignalSpy[0][1].toInt(), 2); - - QCOMPARE(insertedSignalSpy.count(), 1); - QCOMPARE(insertedSignalSpy[0][0].toInt(), 1); - QCOMPARE(insertedSignalSpy[0][1].toInt(), 2); - - aboutToBeInsertedSignalSpy.clear(); - insertedSignalSpy.clear(); - - playlist.insertMedia(1, QList()); - QCOMPARE(aboutToBeInsertedSignalSpy.count(), 0); - QCOMPARE(insertedSignalSpy.count(), 0); -} - - -void tst_QMediaPlaylist::currentItem() -{ - QMediaPlaylist playlist; - playlist.addMedia(content1); - playlist.addMedia(content2); - - QCOMPARE(playlist.currentIndex(), -1); - QCOMPARE(playlist.currentMedia(), QMediaContent()); - - QCOMPARE(playlist.nextIndex(), 0); - QCOMPARE(playlist.nextIndex(2), 1); - QCOMPARE(playlist.previousIndex(), 1); - QCOMPARE(playlist.previousIndex(2), 0); - - playlist.setCurrentIndex(0); - QCOMPARE(playlist.currentIndex(), 0); - QCOMPARE(playlist.currentMedia(), content1); - - QCOMPARE(playlist.nextIndex(), 1); - QCOMPARE(playlist.nextIndex(2), -1); - QCOMPARE(playlist.previousIndex(), -1); - QCOMPARE(playlist.previousIndex(2), -1); - - playlist.setCurrentIndex(1); - QCOMPARE(playlist.currentIndex(), 1); - QCOMPARE(playlist.currentMedia(), content2); - - QCOMPARE(playlist.nextIndex(), -1); - QCOMPARE(playlist.nextIndex(2), -1); - QCOMPARE(playlist.previousIndex(), 0); - QCOMPARE(playlist.previousIndex(2), -1); - - QTest::ignoreMessage(QtWarningMsg, "QMediaPlaylistNavigator: Jump outside playlist range "); - playlist.setCurrentIndex(2); - - QCOMPARE(playlist.currentIndex(), -1); - QCOMPARE(playlist.currentMedia(), QMediaContent()); -} - -void tst_QMediaPlaylist::clear() -{ - QMediaPlaylist playlist; - playlist.addMedia(content1); - playlist.addMedia(content2); - - playlist.clear(); - QVERIFY(playlist.isEmpty()); - QCOMPARE(playlist.mediaCount(), 0); -} - -void tst_QMediaPlaylist::removeMedia() -{ - QMediaPlaylist playlist; - playlist.addMedia(content1); - playlist.addMedia(content2); - playlist.addMedia(content3); - - QSignalSpy aboutToBeRemovedSignalSpy(&playlist, SIGNAL(mediaAboutToBeRemoved(int,int))); - QSignalSpy removedSignalSpy(&playlist, SIGNAL(mediaRemoved(int,int))); - playlist.removeMedia(1); - QCOMPARE(playlist.mediaCount(), 2); - QCOMPARE(playlist.media(1), content3); - - QCOMPARE(aboutToBeRemovedSignalSpy.count(), 1); - QCOMPARE(aboutToBeRemovedSignalSpy.first()[0].toInt(), 1); - QCOMPARE(aboutToBeRemovedSignalSpy.first()[1].toInt(), 1); - - QCOMPARE(removedSignalSpy.count(), 1); - QCOMPARE(removedSignalSpy.first()[0].toInt(), 1); - QCOMPARE(removedSignalSpy.first()[1].toInt(), 1); - - aboutToBeRemovedSignalSpy.clear(); - removedSignalSpy.clear(); - - playlist.removeMedia(0,1); - QVERIFY(playlist.isEmpty()); - - QCOMPARE(aboutToBeRemovedSignalSpy.count(), 1); - QCOMPARE(aboutToBeRemovedSignalSpy.first()[0].toInt(), 0); - QCOMPARE(aboutToBeRemovedSignalSpy.first()[1].toInt(), 1); - - QCOMPARE(removedSignalSpy.count(), 1); - QCOMPARE(removedSignalSpy.first()[0].toInt(), 0); - QCOMPARE(removedSignalSpy.first()[1].toInt(), 1); - - - playlist.addMedia(content1); - playlist.addMedia(content2); - playlist.addMedia(content3); - - playlist.removeMedia(0,1); - QCOMPARE(playlist.mediaCount(), 1); - QCOMPARE(playlist.media(0), content3); -} - -void tst_QMediaPlaylist::saveAndLoad() -{ - QMediaPlaylist playlist; - playlist.addMedia(content1); - playlist.addMedia(content2); - playlist.addMedia(content3); - - QCOMPARE(playlist.error(), QMediaPlaylist::NoError); - QVERIFY(playlist.errorString().isEmpty()); - - QBuffer buffer; - buffer.open(QBuffer::ReadWrite); - - bool res = playlist.save(&buffer, "unsupported_format"); - QVERIFY(!res); - QVERIFY(playlist.error() != QMediaPlaylist::NoError); - QVERIFY(!playlist.errorString().isEmpty()); - - QSignalSpy errorSignal(&playlist, SIGNAL(loadFailed())); - playlist.load(&buffer, "unsupported_format"); - QCOMPARE(errorSignal.size(), 1); - QVERIFY(playlist.error() != QMediaPlaylist::NoError); - QVERIFY(!playlist.errorString().isEmpty()); - - res = playlist.save(QUrl(QLatin1String("tmp.unsupported_format")), "unsupported_format"); - QVERIFY(!res); - QVERIFY(playlist.error() != QMediaPlaylist::NoError); - QVERIFY(!playlist.errorString().isEmpty()); - - errorSignal.clear(); - playlist.load(QUrl(QLatin1String("tmp.unsupported_format")), "unsupported_format"); - QCOMPARE(errorSignal.size(), 1); - QVERIFY(playlist.error() != QMediaPlaylist::NoError); - QVERIFY(!playlist.errorString().isEmpty()); -} - -void tst_QMediaPlaylist::playbackMode_data() -{ - QTest::addColumn("playbackMode"); - QTest::addColumn("expectedPrevious"); - QTest::addColumn("pos"); - QTest::addColumn("expectedNext"); - - QTest::newRow("Linear, 0") << QMediaPlaylist::Linear << -1 << 0 << 1; - QTest::newRow("Linear, 1") << QMediaPlaylist::Linear << 0 << 1 << 2; - QTest::newRow("Linear, 2") << QMediaPlaylist::Linear << 1 << 2 << -1; - - QTest::newRow("Loop, 0") << QMediaPlaylist::Loop << 2 << 0 << 1; - QTest::newRow("Loop, 1") << QMediaPlaylist::Loop << 0 << 1 << 2; - QTest::newRow("Lopp, 2") << QMediaPlaylist::Loop << 1 << 2 << 0; - - QTest::newRow("ItemOnce, 1") << QMediaPlaylist::CurrentItemOnce << -1 << 1 << -1; - QTest::newRow("ItemInLoop, 1") << QMediaPlaylist::CurrentItemInLoop << 1 << 1 << 1; - -} - -void tst_QMediaPlaylist::playbackMode() -{ - QFETCH(QMediaPlaylist::PlaybackMode, playbackMode); - QFETCH(int, expectedPrevious); - QFETCH(int, pos); - QFETCH(int, expectedNext); - - QMediaPlaylist playlist; - playlist.addMedia(content1); - playlist.addMedia(content2); - playlist.addMedia(content3); - - QCOMPARE(playlist.playbackMode(), QMediaPlaylist::Linear); - QCOMPARE(playlist.currentIndex(), -1); - - playlist.setPlaybackMode(playbackMode); - QCOMPARE(playlist.playbackMode(), playbackMode); - - playlist.setCurrentIndex(pos); - QCOMPARE(playlist.currentIndex(), pos); - QCOMPARE(playlist.nextIndex(), expectedNext); - QCOMPARE(playlist.previousIndex(), expectedPrevious); - - playlist.next(); - QCOMPARE(playlist.currentIndex(), expectedNext); - - playlist.setCurrentIndex(pos); - playlist.previous(); - QCOMPARE(playlist.currentIndex(), expectedPrevious); -} - -void tst_QMediaPlaylist::shuffle() -{ - QMediaPlaylist playlist; - QList contentList; - - for (int i=0; i<100; i++) { - QMediaContent content(QUrl(QString::number(i))); - contentList.append(content); - playlist.addMedia(content); - } - - playlist.shuffle(); - - QList shuffledContentList; - for (int i=0; i() << content1 << content2)); - QCOMPARE(playlist.mediaCount(), 3); - QVERIFY(!playlist.insertMedia(1, content1)); - QCOMPARE(playlist.mediaCount(), 3); - QVERIFY(!playlist.insertMedia(1, QList() << content1 << content2)); - QCOMPARE(playlist.mediaCount(), 3); - QVERIFY(!playlist.removeMedia(1)); - QCOMPARE(playlist.mediaCount(), 3); - QVERIFY(!playlist.removeMedia(0,2)); - QCOMPARE(playlist.mediaCount(), 3); - QVERIFY(!playlist.clear()); - QCOMPARE(playlist.mediaCount(), 3); - - //but it is still allowed to append/insert an empty list - QVERIFY(playlist.addMedia(QList())); - QVERIFY(playlist.insertMedia(1, QList())); - - playlist.shuffle(); - //it's still the same - QCOMPARE(playlist.media(0), content1); - QCOMPARE(playlist.media(1), content2); - QCOMPARE(playlist.media(2), content3); - QCOMPARE(playlist.media(3), QMediaContent()); - - - //load to read only playlist should fail, - //unless underlaying provider supports it - QBuffer buffer; - buffer.open(QBuffer::ReadWrite); - buffer.write(QByteArray("file:///1\nfile:///2")); - buffer.seek(0); - - QSignalSpy errorSignal(&playlist, SIGNAL(loadFailed())); - playlist.load(&buffer, "m3u"); - QCOMPARE(errorSignal.size(), 1); - QCOMPARE(playlist.error(), QMediaPlaylist::AccessDeniedError); - QVERIFY(!playlist.errorString().isEmpty()); - QCOMPARE(playlist.mediaCount(), 3); - - errorSignal.clear(); - playlist.load(QUrl(QLatin1String("tmp.m3u")), "m3u"); - - QCOMPARE(errorSignal.size(), 1); - QCOMPARE(playlist.error(), QMediaPlaylist::AccessDeniedError); - QVERIFY(!playlist.errorString().isEmpty()); - QCOMPARE(playlist.mediaCount(), 3); -} - -void tst_QMediaPlaylist::setMediaObject() -{ - MockReadOnlyPlaylistObject mediaObject; - - QMediaPlaylist playlist; - QVERIFY(playlist.mediaObject() == 0); - QVERIFY(!playlist.isReadOnly()); - - playlist.setMediaObject(&mediaObject); - QCOMPARE(playlist.mediaObject(), qobject_cast(&mediaObject)); - QCOMPARE(playlist.mediaCount(), 3); - QVERIFY(playlist.isReadOnly()); - - playlist.setMediaObject(0); - QVERIFY(playlist.mediaObject() == 0); - QCOMPARE(playlist.mediaCount(), 0); - QVERIFY(!playlist.isReadOnly()); - - playlist.setMediaObject(&mediaObject); - QCOMPARE(playlist.mediaObject(), qobject_cast(&mediaObject)); - QCOMPARE(playlist.mediaCount(), 3); - QVERIFY(playlist.isReadOnly()); -} - -QTEST_MAIN(tst_QMediaPlaylist) -#include "tst_qmediaplaylist.moc" - diff --git a/tests/auto/qmediaplaylistnavigator/qmediaplaylistnavigator.pro b/tests/auto/qmediaplaylistnavigator/qmediaplaylistnavigator.pro deleted file mode 100644 index 326576272e..0000000000 --- a/tests/auto/qmediaplaylistnavigator/qmediaplaylistnavigator.pro +++ /dev/null @@ -1,6 +0,0 @@ -load(qttest_p4) - -SOURCES = tst_qmediaplaylistnavigator.cpp - -QT = core mediaservices - diff --git a/tests/auto/qmediaplaylistnavigator/tst_qmediaplaylistnavigator.cpp b/tests/auto/qmediaplaylistnavigator/tst_qmediaplaylistnavigator.cpp deleted file mode 100644 index 04f736c6ec..0000000000 --- a/tests/auto/qmediaplaylistnavigator/tst_qmediaplaylistnavigator.cpp +++ /dev/null @@ -1,316 +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 test suite 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 -#include - - -class tst_QMediaPlaylistNavigator : public QObject -{ - Q_OBJECT -public slots: - void init(); - void cleanup(); - -private slots: - void construction(); - void setPlaylist(); - void linearPlayback(); - void loopPlayback(); - void currentItemOnce(); - void currentItemInLoop(); - void randomPlayback(); -}; - -void tst_QMediaPlaylistNavigator::init() -{ -} - -void tst_QMediaPlaylistNavigator::cleanup() -{ -} - -void tst_QMediaPlaylistNavigator::construction() -{ - QLocalMediaPlaylistProvider playlist; - QCOMPARE(playlist.mediaCount(), 0); - - QMediaPlaylistNavigator navigator(&playlist); - QVERIFY(navigator.currentItem().isNull()); - QCOMPARE(navigator.currentIndex(), -1); -} - -void tst_QMediaPlaylistNavigator::setPlaylist() -{ - QMediaPlaylistNavigator navigator(0); - QVERIFY(navigator.playlist() != 0); - QCOMPARE(navigator.playlist()->mediaCount(), 0); - QCOMPARE(navigator.playlist()->media(0), QMediaContent()); - QVERIFY(navigator.playlist()->isReadOnly() ); - - QLocalMediaPlaylistProvider playlist; - QCOMPARE(playlist.mediaCount(), 0); - - navigator.setPlaylist(&playlist); - QCOMPARE(navigator.playlist(), (QMediaPlaylistProvider*)&playlist); - QCOMPARE(navigator.playlist()->mediaCount(), 0); - QVERIFY(!navigator.playlist()->isReadOnly() ); -} - -void tst_QMediaPlaylistNavigator::linearPlayback() -{ - QLocalMediaPlaylistProvider playlist; - QMediaPlaylistNavigator navigator(&playlist); - - navigator.setPlaybackMode(QMediaPlaylist::Linear); - QTest::ignoreMessage(QtWarningMsg, "QMediaPlaylistNavigator: Jump outside playlist range "); - navigator.jump(0);//it's ok to have warning here - QVERIFY(navigator.currentItem().isNull()); - QCOMPARE(navigator.currentIndex(), -1); - - QMediaContent content1(QUrl(QLatin1String("file:///1"))); - playlist.addMedia(content1); - navigator.jump(0); - QVERIFY(!navigator.currentItem().isNull()); - - QCOMPARE(navigator.currentIndex(), 0); - QCOMPARE(navigator.currentItem(), content1); - QCOMPARE(navigator.nextItem(), QMediaContent()); - QCOMPARE(navigator.nextItem(2), QMediaContent()); - QCOMPARE(navigator.previousItem(), QMediaContent()); - QCOMPARE(navigator.previousItem(2), QMediaContent()); - - QMediaContent content2(QUrl(QLatin1String("file:///2"))); - playlist.addMedia(content2); - QCOMPARE(navigator.currentIndex(), 0); - QCOMPARE(navigator.currentItem(), content1); - QCOMPARE(navigator.nextItem(), content2); - QCOMPARE(navigator.nextItem(2), QMediaContent()); - QCOMPARE(navigator.previousItem(), QMediaContent()); - QCOMPARE(navigator.previousItem(2), QMediaContent()); - - navigator.jump(1); - QCOMPARE(navigator.currentIndex(), 1); - QCOMPARE(navigator.currentItem(), content2); - QCOMPARE(navigator.nextItem(), QMediaContent()); - QCOMPARE(navigator.nextItem(2), QMediaContent()); - QCOMPARE(navigator.previousItem(), content1); - QCOMPARE(navigator.previousItem(2), QMediaContent()); - - navigator.jump(0); - navigator.next(); - QCOMPARE(navigator.currentIndex(), 1); - navigator.next(); - QCOMPARE(navigator.currentIndex(), -1); - navigator.next();//jump to the first item - QCOMPARE(navigator.currentIndex(), 0); - - navigator.previous(); - QCOMPARE(navigator.currentIndex(), -1); - navigator.previous();//jump to the last item - QCOMPARE(navigator.currentIndex(), 1); -} - -void tst_QMediaPlaylistNavigator::loopPlayback() -{ - QLocalMediaPlaylistProvider playlist; - QMediaPlaylistNavigator navigator(&playlist); - - navigator.setPlaybackMode(QMediaPlaylist::Loop); - QTest::ignoreMessage(QtWarningMsg, "QMediaPlaylistNavigator: Jump outside playlist range "); - navigator.jump(0); - QVERIFY(navigator.currentItem().isNull()); - QCOMPARE(navigator.currentIndex(), -1); - - QMediaContent content1(QUrl(QLatin1String("file:///1"))); - playlist.addMedia(content1); - navigator.jump(0); - QVERIFY(!navigator.currentItem().isNull()); - - QCOMPARE(navigator.currentIndex(), 0); - QCOMPARE(navigator.currentItem(), content1); - QCOMPARE(navigator.nextItem(), content1); - QCOMPARE(navigator.nextItem(2), content1); - QCOMPARE(navigator.previousItem(), content1); - QCOMPARE(navigator.previousItem(2), content1); - - QMediaContent content2(QUrl(QLatin1String("file:///2"))); - playlist.addMedia(content2); - QCOMPARE(navigator.currentIndex(), 0); - QCOMPARE(navigator.currentItem(), content1); - QCOMPARE(navigator.nextItem(), content2); - QCOMPARE(navigator.nextItem(2), content1); //loop over end of the list - QCOMPARE(navigator.previousItem(), content2); - QCOMPARE(navigator.previousItem(2), content1); - - navigator.jump(1); - QCOMPARE(navigator.currentIndex(), 1); - QCOMPARE(navigator.currentItem(), content2); - QCOMPARE(navigator.nextItem(), content1); - QCOMPARE(navigator.nextItem(2), content2); - QCOMPARE(navigator.previousItem(), content1); - QCOMPARE(navigator.previousItem(2), content2); - - navigator.jump(0); - navigator.next(); - QCOMPARE(navigator.currentIndex(), 1); - navigator.next(); - QCOMPARE(navigator.currentIndex(), 0); - navigator.previous(); - QCOMPARE(navigator.currentIndex(), 1); - navigator.previous(); - QCOMPARE(navigator.currentIndex(), 0); -} - -void tst_QMediaPlaylistNavigator::currentItemOnce() -{ - QLocalMediaPlaylistProvider playlist; - QMediaPlaylistNavigator navigator(&playlist); - - navigator.setPlaybackMode(QMediaPlaylist::CurrentItemOnce); - - QCOMPARE(navigator.playbackMode(), QMediaPlaylist::CurrentItemOnce); - QCOMPARE(navigator.currentIndex(), -1); - - playlist.addMedia(QMediaContent(QUrl(QLatin1String("file:///1")))); - playlist.addMedia(QMediaContent(QUrl(QLatin1String("file:///2")))); - playlist.addMedia(QMediaContent(QUrl(QLatin1String("file:///3")))); - - QCOMPARE(navigator.currentIndex(), -1); - navigator.next(); - QCOMPARE(navigator.currentIndex(), -1); - - navigator.jump(1); - QCOMPARE(navigator.currentIndex(), 1); - navigator.next(); - QCOMPARE(navigator.currentIndex(), -1); - navigator.next(); - QCOMPARE(navigator.currentIndex(), -1); - navigator.previous(); - QCOMPARE(navigator.currentIndex(), -1); - navigator.jump(1); - navigator.previous(); - QCOMPARE(navigator.currentIndex(), -1); -} - -void tst_QMediaPlaylistNavigator::currentItemInLoop() -{ - QLocalMediaPlaylistProvider playlist; - QMediaPlaylistNavigator navigator(&playlist); - - navigator.setPlaybackMode(QMediaPlaylist::CurrentItemInLoop); - - QCOMPARE(navigator.playbackMode(), QMediaPlaylist::CurrentItemInLoop); - QCOMPARE(navigator.currentIndex(), -1); - - playlist.addMedia(QMediaContent(QUrl(QLatin1String("file:///1")))); - playlist.addMedia(QMediaContent(QUrl(QLatin1String("file:///2")))); - playlist.addMedia(QMediaContent(QUrl(QLatin1String("file:///3")))); - - QCOMPARE(navigator.currentIndex(), -1); - navigator.next(); - QCOMPARE(navigator.currentIndex(), -1); - navigator.jump(1); - navigator.next(); - QCOMPARE(navigator.currentIndex(), 1); - navigator.next(); - QCOMPARE(navigator.currentIndex(), 1); - navigator.previous(); - QCOMPARE(navigator.currentIndex(), 1); - navigator.previous(); - QCOMPARE(navigator.currentIndex(), 1); -} - -void tst_QMediaPlaylistNavigator::randomPlayback() -{ - QLocalMediaPlaylistProvider playlist; - QMediaPlaylistNavigator navigator(&playlist); - - navigator.setPlaybackMode(QMediaPlaylist::Random); - - QCOMPARE(navigator.playbackMode(), QMediaPlaylist::Random); - QCOMPARE(navigator.currentIndex(), -1); - - playlist.addMedia(QMediaContent(QUrl(QLatin1String("file:///1")))); - playlist.addMedia(QMediaContent(QUrl(QLatin1String("file:///2")))); - playlist.addMedia(QMediaContent(QUrl(QLatin1String("file:///3")))); - - playlist.shuffle(); - - QCOMPARE(navigator.currentIndex(), -1); - navigator.next(); - int pos1 = navigator.currentIndex(); - navigator.next(); - int pos2 = navigator.currentIndex(); - navigator.next(); - int pos3 = navigator.currentIndex(); - - QVERIFY(pos1 != -1); - QVERIFY(pos2 != -1); - QVERIFY(pos3 != -1); - - navigator.previous(); - QCOMPARE(navigator.currentIndex(), pos2); - navigator.next(); - QCOMPARE(navigator.currentIndex(), pos3); - navigator.next(); - int pos4 = navigator.currentIndex(); - navigator.previous(); - QCOMPARE(navigator.currentIndex(), pos3); - navigator.previous(); - QCOMPARE(navigator.currentIndex(), pos2); - navigator.previous(); - QCOMPARE(navigator.currentIndex(), pos1); - navigator.previous(); - int pos0 = navigator.currentIndex(); - QVERIFY(pos0 != -1); - navigator.next(); - navigator.next(); - navigator.next(); - navigator.next(); - QCOMPARE(navigator.currentIndex(), pos4); - -} - -QTEST_MAIN(tst_QMediaPlaylistNavigator) -#include "tst_qmediaplaylistnavigator.moc" diff --git a/tests/auto/qmediapluginloader/qmediapluginloader.pro b/tests/auto/qmediapluginloader/qmediapluginloader.pro deleted file mode 100644 index a47cc57021..0000000000 --- a/tests/auto/qmediapluginloader/qmediapluginloader.pro +++ /dev/null @@ -1,6 +0,0 @@ -load(qttest_p4) - -SOURCES = tst_qmediapluginloader.cpp - -QT = core mediaservices - diff --git a/tests/auto/qmediapluginloader/tst_qmediapluginloader.cpp b/tests/auto/qmediapluginloader/tst_qmediapluginloader.cpp deleted file mode 100644 index 001e68ab3b..0000000000 --- a/tests/auto/qmediapluginloader/tst_qmediapluginloader.cpp +++ /dev/null @@ -1,121 +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 test suite 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 -#include - - - -class tst_QMediaPluginLoader : public QObject -{ - Q_OBJECT - -public slots: - void initTestCase(); - void cleanupTestCase(); - -private slots: - void testInstance(); - void testInstances(); - void testInvalidKey(); - -private: - QMediaPluginLoader *loader; -}; - -void tst_QMediaPluginLoader::initTestCase() -{ - loader = new QMediaPluginLoader(QMediaServiceProviderFactoryInterface_iid, - QLatin1String("/mediaservice"), - Qt::CaseInsensitive); -} - -void tst_QMediaPluginLoader::cleanupTestCase() -{ - delete loader; -} - -void tst_QMediaPluginLoader::testInstance() -{ - const QStringList keys = loader->keys(); - - if (keys.isEmpty()) // Test is invalidated, skip. - QSKIP("No plug-ins available", SkipAll); - - foreach (const QString &key, keys) - QVERIFY(loader->instance(key) != 0); -} - -void tst_QMediaPluginLoader::testInstances() -{ - const QStringList keys = loader->keys(); - - if (keys.isEmpty()) // Test is invalidated, skip. - QSKIP("No plug-ins available", SkipAll); - - foreach (const QString &key, keys) - QVERIFY(loader->instances(key).size() > 0); -} - -// Last so as to not interfere with the other tests if there is a failure. -void tst_QMediaPluginLoader::testInvalidKey() -{ - const QString key(QLatin1String("invalid-key")); - - // This test assumes there is no 'invalid-key' in the key list, verify that. - if (loader->keys().contains(key)) - QSKIP("a plug-in includes the invalid key", SkipAll); - - QVERIFY(loader->instance(key) == 0); - - // Test looking up the key hasn't inserted it into the list. See QMap::operator[]. - QVERIFY(!loader->keys().contains(key)); - - QVERIFY(loader->instances(key).isEmpty()); - QVERIFY(!loader->keys().contains(key)); -} - -QTEST_MAIN(tst_QMediaPluginLoader) - -#include "tst_qmediapluginloader.moc" diff --git a/tests/auto/qmediaresource/qmediaresource.pro b/tests/auto/qmediaresource/qmediaresource.pro deleted file mode 100644 index 64669a29e8..0000000000 --- a/tests/auto/qmediaresource/qmediaresource.pro +++ /dev/null @@ -1,6 +0,0 @@ -load(qttest_p4) - -SOURCES = tst_qmediaresource.cpp - -QT = core mediaservices network - diff --git a/tests/auto/qmediaresource/tst_qmediaresource.cpp b/tests/auto/qmediaresource/tst_qmediaresource.cpp deleted file mode 100644 index 984cfef696..0000000000 --- a/tests/auto/qmediaresource/tst_qmediaresource.cpp +++ /dev/null @@ -1,516 +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 test suite 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 - - -class tst_QMediaResource : public QObject -{ - Q_OBJECT -private slots: - void constructNull(); - void construct_data(); - void construct(); - void setResolution(); - void equality(); - void copy(); - void assign(); -}; - -void tst_QMediaResource::constructNull() -{ - QMediaResource resource; - - QCOMPARE(resource.isNull(), true); - QCOMPARE(resource.url(), QUrl()); - QCOMPARE(resource.request(), QNetworkRequest()); - QCOMPARE(resource.mimeType(), QString()); - QCOMPARE(resource.language(), QString()); - QCOMPARE(resource.audioCodec(), QString()); - QCOMPARE(resource.videoCodec(), QString()); - QCOMPARE(resource.dataSize(), qint64(0)); - QCOMPARE(resource.audioBitRate(), 0); - QCOMPARE(resource.sampleRate(), 0); - QCOMPARE(resource.channelCount(), 0); - QCOMPARE(resource.videoBitRate(), 0); - QCOMPARE(resource.resolution(), QSize()); -} - -void tst_QMediaResource::construct_data() -{ - QTest::addColumn("url"); - QTest::addColumn("request"); - QTest::addColumn("mimeType"); - QTest::addColumn("language"); - QTest::addColumn("audioCodec"); - QTest::addColumn("videoCodec"); - QTest::addColumn("dataSize"); - QTest::addColumn("audioBitRate"); - QTest::addColumn("sampleRate"); - QTest::addColumn("channelCount"); - QTest::addColumn("videoBitRate"); - QTest::addColumn("resolution"); - - QTest::newRow("audio content") - << QUrl(QString::fromLatin1("http:://test.com/test.mp3")) - << QNetworkRequest(QUrl(QString::fromLatin1("http:://test.com/test.mp3"))) - << QString::fromLatin1("audio/mpeg") - << QString::fromLatin1("eng") - << QString::fromLatin1("mp3") - << QString() - << qint64(5465433) - << 128000 - << 44100 - << 2 - << 0 - << QSize(); - QTest::newRow("image content") - << QUrl(QString::fromLatin1("http:://test.com/test.jpg")) - << QNetworkRequest(QUrl(QString::fromLatin1("http:://test.com/test.jpg"))) - << QString::fromLatin1("image/jpeg") - << QString() - << QString() - << QString() - << qint64(23600) - << 0 - << 0 - << 0 - << 0 - << QSize(640, 480); - QTest::newRow("video content") - << QUrl(QString::fromLatin1("http:://test.com/test.mp4")) - << QNetworkRequest(QUrl(QString::fromLatin1("http:://test.com/test.mp4"))) - << QString::fromLatin1("video/mp4") - << QString() - << QString::fromLatin1("aac") - << QString::fromLatin1("h264") - << qint64(36245851) - << 96000 - << 44000 - << 5 - << 750000 - << QSize(720, 576); - QTest::newRow("thumbnail") - << QUrl(QString::fromLatin1("file::///thumbs/test.png")) - << QNetworkRequest(QUrl(QString::fromLatin1("file::///thumbs/test.png"))) - << QString::fromLatin1("image/png") - << QString() - << QString() - << QString() - << qint64(2360) - << 0 - << 0 - << 0 - << 0 - << QSize(128, 128); -} - -void tst_QMediaResource::construct() -{ - QFETCH(QUrl, url); - QFETCH(QNetworkRequest, request); - QFETCH(QString, mimeType); - QFETCH(QString, language); - QFETCH(QString, audioCodec); - QFETCH(QString, videoCodec); - QFETCH(qint64, dataSize); - QFETCH(int, audioBitRate); - QFETCH(int, sampleRate); - QFETCH(int, channelCount); - QFETCH(int, videoBitRate); - QFETCH(QSize, resolution); - - { - QMediaResource resource(url); - - QCOMPARE(resource.isNull(), false); - QCOMPARE(resource.url(), url); - QCOMPARE(resource.mimeType(), QString()); - QCOMPARE(resource.language(), QString()); - QCOMPARE(resource.audioCodec(), QString()); - QCOMPARE(resource.videoCodec(), QString()); - QCOMPARE(resource.dataSize(), qint64(0)); - QCOMPARE(resource.audioBitRate(), 0); - QCOMPARE(resource.sampleRate(), 0); - QCOMPARE(resource.channelCount(), 0); - QCOMPARE(resource.videoBitRate(), 0); - QCOMPARE(resource.resolution(), QSize()); - } - { - QMediaResource resource(url, mimeType); - - QCOMPARE(resource.isNull(), false); - QCOMPARE(resource.url(), url); - QCOMPARE(resource.request(), request); - QCOMPARE(resource.mimeType(), mimeType); - QCOMPARE(resource.language(), QString()); - QCOMPARE(resource.audioCodec(), QString()); - QCOMPARE(resource.videoCodec(), QString()); - QCOMPARE(resource.dataSize(), qint64(0)); - QCOMPARE(resource.audioBitRate(), 0); - QCOMPARE(resource.sampleRate(), 0); - QCOMPARE(resource.channelCount(), 0); - QCOMPARE(resource.videoBitRate(), 0); - QCOMPARE(resource.resolution(), QSize()); - - resource.setLanguage(language); - resource.setAudioCodec(audioCodec); - resource.setVideoCodec(videoCodec); - resource.setDataSize(dataSize); - resource.setAudioBitRate(audioBitRate); - resource.setSampleRate(sampleRate); - resource.setChannelCount(channelCount); - resource.setVideoBitRate(videoBitRate); - resource.setResolution(resolution); - - QCOMPARE(resource.language(), language); - QCOMPARE(resource.audioCodec(), audioCodec); - QCOMPARE(resource.videoCodec(), videoCodec); - QCOMPARE(resource.dataSize(), dataSize); - QCOMPARE(resource.audioBitRate(), audioBitRate); - QCOMPARE(resource.sampleRate(), sampleRate); - QCOMPARE(resource.channelCount(), channelCount); - QCOMPARE(resource.videoBitRate(), videoBitRate); - QCOMPARE(resource.resolution(), resolution); - } - { - QMediaResource resource(request, mimeType); - - QCOMPARE(resource.isNull(), false); - QCOMPARE(resource.url(), url); - QCOMPARE(resource.request(), request); - QCOMPARE(resource.mimeType(), mimeType); - QCOMPARE(resource.language(), QString()); - QCOMPARE(resource.audioCodec(), QString()); - QCOMPARE(resource.videoCodec(), QString()); - QCOMPARE(resource.dataSize(), qint64(0)); - QCOMPARE(resource.audioBitRate(), 0); - QCOMPARE(resource.sampleRate(), 0); - QCOMPARE(resource.channelCount(), 0); - QCOMPARE(resource.videoBitRate(), 0); - QCOMPARE(resource.resolution(), QSize()); - - resource.setLanguage(language); - resource.setAudioCodec(audioCodec); - resource.setVideoCodec(videoCodec); - resource.setDataSize(dataSize); - resource.setAudioBitRate(audioBitRate); - resource.setSampleRate(sampleRate); - resource.setChannelCount(channelCount); - resource.setVideoBitRate(videoBitRate); - resource.setResolution(resolution); - - QCOMPARE(resource.language(), language); - QCOMPARE(resource.audioCodec(), audioCodec); - QCOMPARE(resource.videoCodec(), videoCodec); - QCOMPARE(resource.dataSize(), dataSize); - QCOMPARE(resource.audioBitRate(), audioBitRate); - QCOMPARE(resource.sampleRate(), sampleRate); - QCOMPARE(resource.channelCount(), channelCount); - QCOMPARE(resource.videoBitRate(), videoBitRate); - QCOMPARE(resource.resolution(), resolution); - } -} - -void tst_QMediaResource::setResolution() -{ - QMediaResource resource( - QUrl(QString::fromLatin1("file::///thumbs/test.png")), - QString::fromLatin1("image/png")); - - QCOMPARE(resource.resolution(), QSize()); - - resource.setResolution(QSize(120, 80)); - QCOMPARE(resource.resolution(), QSize(120, 80)); - - resource.setResolution(QSize(-1, 23)); - QCOMPARE(resource.resolution(), QSize(-1, 23)); - - resource.setResolution(QSize(-43, 34)); - QCOMPARE(resource.resolution(), QSize(-43, 34)); - - resource.setResolution(QSize(64, -1)); - QCOMPARE(resource.resolution(), QSize(64, -1)); - - resource.setResolution(QSize(64, -83)); - QCOMPARE(resource.resolution(), QSize(64, -83)); - - resource.setResolution(QSize(-12, -83)); - QCOMPARE(resource.resolution(), QSize(-12, -83)); - - resource.setResolution(QSize()); - QCOMPARE(resource.resolution(), QSize(-1, -1)); - - resource.setResolution(120, 80); - QCOMPARE(resource.resolution(), QSize(120, 80)); - - resource.setResolution(-1, 23); - QCOMPARE(resource.resolution(), QSize(-1, 23)); - - resource.setResolution(-43, 34); - QCOMPARE(resource.resolution(), QSize(-43, 34)); - - resource.setResolution(64, -1); - QCOMPARE(resource.resolution(), QSize(64, -1)); - - resource.setResolution(64, -83); - QCOMPARE(resource.resolution(), QSize(64, -83)); - - resource.setResolution(-12, -83); - QCOMPARE(resource.resolution(), QSize(-12, -83)); - - resource.setResolution(-1, -1); - QCOMPARE(resource.resolution(), QSize()); -} - -void tst_QMediaResource::equality() -{ - QMediaResource resource1( - QUrl(QString::fromLatin1("http://test.com/test.mp4")), - QString::fromLatin1("video/mp4")); - QMediaResource resource2( - QUrl(QString::fromLatin1("http://test.com/test.mp4")), - QString::fromLatin1("video/mp4")); - QMediaResource resource3( - QUrl(QString::fromLatin1("file:///thumbs/test.jpg"))); - QMediaResource resource4( - QUrl(QString::fromLatin1("file:///thumbs/test.jpg"))); - QMediaResource resource5( - QUrl(QString::fromLatin1("http://test.com/test.mp3")), - QString::fromLatin1("audio/mpeg")); - - QCOMPARE(resource1 == resource2, true); - QCOMPARE(resource1 != resource2, false); - - QCOMPARE(resource3 == resource4, true); - QCOMPARE(resource3 != resource4, false); - - QCOMPARE(resource1 == resource3, false); - QCOMPARE(resource1 != resource3, true); - - QCOMPARE(resource1 == resource5, false); - QCOMPARE(resource1 != resource5, true); - - resource1.setAudioCodec(QString::fromLatin1("mp3")); - resource2.setAudioCodec(QString::fromLatin1("aac")); - - // Not equal differing audio codecs. - QCOMPARE(resource1 == resource2, false); - QCOMPARE(resource1 != resource2, true); - - resource1.setAudioCodec(QString::fromLatin1("aac")); - - // Equal. - QCOMPARE(resource1 == resource2, true); - QCOMPARE(resource1 != resource2, false); - - resource1.setVideoCodec(QString()); - - // Equal. - QCOMPARE(resource1 == resource2, true); - QCOMPARE(resource1 != resource2, false); - - resource1.setVideoCodec(QString::fromLatin1("h264")); - - // Not equal differing video codecs. - QCOMPARE(resource1 == resource2, false); - QCOMPARE(resource1 != resource2, true); - - resource2.setVideoCodec(QString::fromLatin1("h264")); - - // Equal. - QCOMPARE(resource1 == resource2, true); - QCOMPARE(resource1 != resource2, false); - - resource2.setDataSize(0); - - // Equal. - QCOMPARE(resource1 == resource2, true); - QCOMPARE(resource1 != resource2, false); - - resource1.setDataSize(546423); - - // Not equal differing video codecs. - QCOMPARE(resource1 == resource2, false); - QCOMPARE(resource1 != resource2, true); - - resource2.setDataSize(546423); - - // Equal. - QCOMPARE(resource1 == resource2, true); - QCOMPARE(resource1 != resource2, false); - - resource1.setAudioBitRate(96000); - resource1.setSampleRate(48000); - resource2.setSampleRate(44100); - resource1.setChannelCount(0); - resource1.setVideoBitRate(900000); - resource2.setLanguage(QString::fromLatin1("eng")); - - // Not equal, audio bit rate, sample rate, video bit rate, and - // language. - QCOMPARE(resource1 == resource2, false); - QCOMPARE(resource1 != resource2, true); - - resource2.setAudioBitRate(96000); - resource1.setSampleRate(44100); - - // Not equal, differing video bit rate, and language. - QCOMPARE(resource1 == resource2, false); - QCOMPARE(resource1 != resource2, true); - - resource2.setVideoBitRate(900000); - resource1.setLanguage(QString::fromLatin1("eng")); - - // Equal - QCOMPARE(resource1 == resource2, true); - QCOMPARE(resource1 != resource2, false); - - resource1.setResolution(QSize()); - - // Equal - QCOMPARE(resource1 == resource2, true); - QCOMPARE(resource1 != resource2, false); - - resource2.setResolution(-1, -1); - - // Equal - QCOMPARE(resource1 == resource2, true); - QCOMPARE(resource1 != resource2, false); - - resource1.setResolution(QSize(-640, -480)); - - // Not equal, differing resolution. - QCOMPARE(resource1 == resource2, false); - QCOMPARE(resource1 != resource2, true); - resource1.setResolution(QSize(640, 480)); - resource2.setResolution(QSize(800, 600)); - - // Not equal, differing resolution. - QCOMPARE(resource1 == resource2, false); - QCOMPARE(resource1 != resource2, true); - - resource1.setResolution(800, 600); - - // Equal - QCOMPARE(resource1 == resource2, true); - QCOMPARE(resource1 != resource2, false); -} - -void tst_QMediaResource::copy() -{ - const QUrl url(QString::fromLatin1("http://test.com/test.mp4")); - const QString mimeType(QLatin1String("video/mp4")); - const QString amrCodec(QLatin1String("amr")); - const QString mp3Codec(QLatin1String("mp3")); - const QString aacCodec(QLatin1String("aac")); - const QString h264Codec(QLatin1String("h264")); - - QMediaResource original(url, mimeType); - original.setAudioCodec(amrCodec); - - QMediaResource copy(original); - - QCOMPARE(copy.url(), url); - QCOMPARE(copy.mimeType(), mimeType); - QCOMPARE(copy.audioCodec(), amrCodec); - - QCOMPARE(original == copy, true); - QCOMPARE(original != copy, false); - - original.setAudioCodec(mp3Codec); - - QCOMPARE(copy.audioCodec(), amrCodec); - QCOMPARE(original == copy, false); - QCOMPARE(original != copy, true); - - copy.setAudioCodec(aacCodec); - copy.setVideoCodec(h264Codec); - - QCOMPARE(copy.url(), url); - QCOMPARE(copy.mimeType(), mimeType); - - QCOMPARE(original.audioCodec(), mp3Codec); -} - -void tst_QMediaResource::assign() -{ - const QUrl url(QString::fromLatin1("http://test.com/test.mp4")); - const QString mimeType(QLatin1String("video/mp4")); - const QString amrCodec(QLatin1String("amr")); - const QString mp3Codec(QLatin1String("mp3")); - const QString aacCodec(QLatin1String("aac")); - const QString h264Codec(QLatin1String("h264")); - - QMediaResource copy(QUrl(QString::fromLatin1("file:///thumbs/test.jpg"))); - - QMediaResource original(url, mimeType); - original.setAudioCodec(amrCodec); - - copy = original; - - QCOMPARE(copy.url(), url); - QCOMPARE(copy.mimeType(), mimeType); - QCOMPARE(copy.audioCodec(), amrCodec); - - QCOMPARE(original == copy, true); - QCOMPARE(original != copy, false); - - original.setAudioCodec(mp3Codec); - - QCOMPARE(copy.audioCodec(), amrCodec); - QCOMPARE(original == copy, false); - QCOMPARE(original != copy, true); - - copy.setAudioCodec(aacCodec); - copy.setVideoCodec(h264Codec); - - QCOMPARE(copy.url(), url); - QCOMPARE(copy.mimeType(), mimeType); - - QCOMPARE(original.audioCodec(), mp3Codec); -} - -QTEST_MAIN(tst_QMediaResource) - -#include "tst_qmediaresource.moc" diff --git a/tests/auto/qmediaservice/qmediaservice.pro b/tests/auto/qmediaservice/qmediaservice.pro deleted file mode 100644 index 8acd03aace..0000000000 --- a/tests/auto/qmediaservice/qmediaservice.pro +++ /dev/null @@ -1,6 +0,0 @@ -load(qttest_p4) - -SOURCES = tst_qmediaservice.cpp - -QT = core gui mediaservices - diff --git a/tests/auto/qmediaservice/tst_qmediaservice.cpp b/tests/auto/qmediaservice/tst_qmediaservice.cpp deleted file mode 100644 index a544e77930..0000000000 --- a/tests/auto/qmediaservice/tst_qmediaservice.cpp +++ /dev/null @@ -1,219 +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 test suite 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 -#include - -#include -#include - -class QtTestMediaService; - - -class tst_QMediaService : public QObject -{ - Q_OBJECT -private slots: - void initTestCase(); - - void control_iid(); - void control(); -}; - - -class QtTestMediaControlA : public QMediaControl -{ - Q_OBJECT -}; - - -#define QtTestMediaControlA_iid "com.nokia.QtTestMediaControlA" -QT_BEGIN_NAMESPACE -Q_MEDIA_DECLARE_CONTROL(QtTestMediaControlA, QtTestMediaControlA_iid) -QT_END_NAMESPACE - - -class QtTestMediaControlB : public QMediaControl -{ - Q_OBJECT -}; - -#define QtTestMediaControlB_iid "com.nokia.QtTestMediaControlB" -QT_BEGIN_NAMESPACE -Q_MEDIA_DECLARE_CONTROL(QtTestMediaControlB, QtTestMediaControlB_iid) -QT_END_NAMESPACE - - -class QtTestMediaControlC : public QMediaControl -{ - Q_OBJECT -}; - -#define QtTestMediaControlC_iid "com.nokia.QtTestMediaControlC" -QT_BEGIN_NAMESPACE -Q_MEDIA_DECLARE_CONTROL(QtTestMediaControlC, QtTestMediaControlA_iid) // Yes A. -QT_END_NAMESPACE - -class QtTestMediaControlD : public QMediaControl -{ - Q_OBJECT -}; - -#define QtTestMediaControlD_iid "com.nokia.QtTestMediaControlD" -QT_BEGIN_NAMESPACE -Q_MEDIA_DECLARE_CONTROL(QtTestMediaControlD, QtTestMediaControlD_iid) -QT_END_NAMESPACE - -class QtTestMediaControlE : public QMediaControl -{ - Q_OBJECT -}; - -struct QtTestDevice -{ - QtTestDevice() {} - QtTestDevice(const QString &name, const QString &description, const QIcon &icon) - : name(name), description(description), icon(icon) - { - } - - QString name; - QString description; - QIcon icon; -}; - -class QtTestVideoDeviceControl : public QVideoDeviceControl -{ -public: - QtTestVideoDeviceControl(QObject *parent = 0) - : QVideoDeviceControl(parent) - , m_selectedDevice(-1) - , m_defaultDevice(-1) - { - } - - int deviceCount() const { return devices.count(); } - - QString deviceName(int index) const { return devices.value(index).name; } - QString deviceDescription(int index) const { return devices.value(index).description; } - QIcon deviceIcon(int index) const { return devices.value(index).icon; } - - int defaultDevice() const { return m_defaultDevice; } - void setDefaultDevice(int index) { m_defaultDevice = index; } - - int selectedDevice() const { return m_selectedDevice; } - void setSelectedDevice(int index) - { - emit selectedDeviceChanged(m_selectedDevice = index); - emit selectedDeviceChanged(devices.value(index).name); - } - - QList devices; - -private: - int m_selectedDevice; - int m_defaultDevice; -}; - -class QtTestMediaService : public QMediaService -{ - Q_OBJECT -public: - QtTestMediaService() - : QMediaService(0) - , hasDeviceControls(false) - { - } - - QMediaControl* control(const char *name) const - { - if (strcmp(name, QtTestMediaControlA_iid) == 0) - return const_cast(&controlA); - else if (strcmp(name, QtTestMediaControlB_iid) == 0) - return const_cast(&controlB); - else if (strcmp(name, QtTestMediaControlC_iid) == 0) - return const_cast(&controlC); - else if (hasDeviceControls && strcmp(name, QVideoDeviceControl_iid) == 0) - return const_cast(&videoDeviceControl); - else - return 0; - } - - using QMediaService::control; - - QtTestMediaControlA controlA; - QtTestMediaControlB controlB; - QtTestMediaControlC controlC; - QtTestVideoDeviceControl videoDeviceControl; - bool hasDeviceControls; -}; - -void tst_QMediaService::initTestCase() -{ -} - -void tst_QMediaService::control_iid() -{ - const char *nullString = 0; - - // Default implementation. - QCOMPARE(qmediacontrol_iid(), nullString); - - // Partial template. - QVERIFY(qstrcmp(qmediacontrol_iid(), QtTestMediaControlA_iid) == 0); -} - -void tst_QMediaService::control() -{ - QtTestMediaService service; - - QCOMPARE(service.control(), &service.controlA); - QCOMPARE(service.control(), &service.controlB); - QVERIFY(!service.control()); // Faulty implementation returns A. - QVERIFY(!service.control()); // No control of that type. -} - -QTEST_MAIN(tst_QMediaService) - -#include "tst_qmediaservice.moc" diff --git a/tests/auto/qmediaserviceprovider/qmediaserviceprovider.pro b/tests/auto/qmediaserviceprovider/qmediaserviceprovider.pro deleted file mode 100644 index 69b38643c8..0000000000 --- a/tests/auto/qmediaserviceprovider/qmediaserviceprovider.pro +++ /dev/null @@ -1,6 +0,0 @@ -load(qttest_p4) - -SOURCES = tst_qmediaserviceprovider.cpp - -QT = core gui mediaservices - diff --git a/tests/auto/qmediaserviceprovider/tst_qmediaserviceprovider.cpp b/tests/auto/qmediaserviceprovider/tst_qmediaserviceprovider.cpp deleted file mode 100644 index 64abedb840..0000000000 --- a/tests/auto/qmediaserviceprovider/tst_qmediaserviceprovider.cpp +++ /dev/null @@ -1,481 +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 test suite 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 - -#include -#include -#include -#include -#include -#include - -class MockMediaService : public QMediaService -{ - Q_OBJECT -public: - MockMediaService(const QString& name, QObject *parent = 0) : QMediaService(parent) - { setObjectName(name); } - ~MockMediaService() {} - - QMediaControl* control(const char *) const {return 0;} -}; - -class MockServicePlugin1 : public QMediaServiceProviderPlugin, - public QMediaServiceSupportedFormatsInterface, - public QMediaServiceSupportedDevicesInterface -{ - Q_OBJECT - Q_INTERFACES(QMediaServiceSupportedFormatsInterface) - Q_INTERFACES(QMediaServiceSupportedDevicesInterface) -public: - QStringList keys() const - { - return QStringList() << - QLatin1String(Q_MEDIASERVICE_MEDIAPLAYER); - } - - QMediaService* create(QString const& key) - { - if (keys().contains(key)) - return new MockMediaService("MockServicePlugin1"); - else - return 0; - } - - void release(QMediaService *service) - { - delete service; - } - - QtMediaServices::SupportEstimate hasSupport(const QString &mimeType, const QStringList& codecs) const - { - if (codecs.contains(QLatin1String("mpeg4"))) - return QtMediaServices::NotSupported; - - if (mimeType == "audio/ogg") { - return QtMediaServices::ProbablySupported; - } - - return QtMediaServices::MaybeSupported; - } - - QStringList supportedMimeTypes() const - { - return QStringList("audio/ogg"); - } - - QList devices(const QByteArray &service) const - { - Q_UNUSED(service); - QList res; - return res; - } - - QString deviceDescription(const QByteArray &service, const QByteArray &device) - { - if (devices(service).contains(device)) - return QString(device)+" description"; - else - return QString(); - } -}; - -class MockServicePlugin2 : public QMediaServiceProviderPlugin, - public QMediaServiceSupportedFormatsInterface, - public QMediaServiceFeaturesInterface -{ - Q_OBJECT - Q_INTERFACES(QMediaServiceSupportedFormatsInterface) - Q_INTERFACES(QMediaServiceFeaturesInterface) -public: - QStringList keys() const - { - return QStringList() << QLatin1String(Q_MEDIASERVICE_MEDIAPLAYER); - } - - QMediaService* create(QString const& key) - { - if (keys().contains(key)) - return new MockMediaService("MockServicePlugin2"); - else - return 0; - } - - void release(QMediaService *service) - { - delete service; - } - - QtMediaServices::SupportEstimate hasSupport(const QString &mimeType, const QStringList& codecs) const - { - Q_UNUSED(codecs); - - if (mimeType == "audio/wav") - return QtMediaServices::PreferredService; - - return QtMediaServices::NotSupported; - } - - QStringList supportedMimeTypes() const - { - return QStringList("audio/wav"); - } - - QMediaServiceProviderHint::Features supportedFeatures(const QByteArray &service) const - { - if (service == QByteArray(Q_MEDIASERVICE_MEDIAPLAYER)) - return QMediaServiceProviderHint::LowLatencyPlayback; - else - return 0; - } -}; - - -class MockServicePlugin3 : public QMediaServiceProviderPlugin, - public QMediaServiceSupportedDevicesInterface -{ - Q_OBJECT - Q_INTERFACES(QMediaServiceSupportedDevicesInterface) -public: - QStringList keys() const - { - return QStringList() << - QLatin1String(Q_MEDIASERVICE_MEDIAPLAYER); - } - - QMediaService* create(QString const& key) - { - if (keys().contains(key)) - return new MockMediaService("MockServicePlugin3"); - else - return 0; - } - - void release(QMediaService *service) - { - delete service; - } - - QList devices(const QByteArray &service) const - { - Q_UNUSED(service); - QList res; - return res; - } - - QString deviceDescription(const QByteArray &service, const QByteArray &device) - { - if (devices(service).contains(device)) - return QString(device)+" description"; - else - return QString(); - } -}; - -class MockServicePlugin4 : public QMediaServiceProviderPlugin, - public QMediaServiceSupportedFormatsInterface, - public QMediaServiceFeaturesInterface -{ - Q_OBJECT - Q_INTERFACES(QMediaServiceSupportedFormatsInterface) - Q_INTERFACES(QMediaServiceFeaturesInterface) -public: - QStringList keys() const - { - return QStringList() << QLatin1String(Q_MEDIASERVICE_MEDIAPLAYER); - } - - QMediaService* create(QString const& key) - { - if (keys().contains(key)) - return new MockMediaService("MockServicePlugin4"); - else - return 0; - } - - void release(QMediaService *service) - { - delete service; - } - - QtMediaServices::SupportEstimate hasSupport(const QString &mimeType, const QStringList& codecs) const - { - if (codecs.contains(QLatin1String("jpeg2000"))) - return QtMediaServices::NotSupported; - - if (supportedMimeTypes().contains(mimeType)) - return QtMediaServices::ProbablySupported; - - return QtMediaServices::MaybeSupported; - } - - QStringList supportedMimeTypes() const - { - return QStringList() << "video/mp4" << "video/quicktime"; - } - - QMediaServiceProviderHint::Features supportedFeatures(const QByteArray &service) const - { - if (service == QByteArray(Q_MEDIASERVICE_MEDIAPLAYER)) - return QMediaServiceProviderHint::StreamPlayback; - else - return 0; - } -}; - - - -class MockMediaServiceProvider : public QMediaServiceProvider -{ - QMediaService* requestService(const QByteArray &type, const QMediaServiceProviderHint &) - { - Q_UNUSED(type); - return 0; - } - - void releaseService(QMediaService *service) - { - Q_UNUSED(service); - } -}; - - -class tst_QMediaServiceProvider : public QObject -{ - Q_OBJECT - -public slots: - void initTestCase(); - -private slots: - void testDefaultProviderAvailable(); - void testObtainService(); - void testHasSupport(); - void testSupportedMimeTypes(); - void testProviderHints(); - -private: - QObjectList plugins; -}; - -void tst_QMediaServiceProvider::initTestCase() -{ - plugins << new MockServicePlugin1; - plugins << new MockServicePlugin2; - plugins << new MockServicePlugin3; - plugins << new MockServicePlugin4; - - QMediaPluginLoader::setStaticPlugins(QLatin1String("/mediaservices"), plugins); -} - -void tst_QMediaServiceProvider::testDefaultProviderAvailable() -{ - // Must always be a default provider available - QVERIFY(QMediaServiceProvider::defaultServiceProvider() != 0); -} - -void tst_QMediaServiceProvider::testObtainService() -{ - QMediaServiceProvider *provider = QMediaServiceProvider::defaultServiceProvider(); - - if (provider == 0) - QSKIP("No default provider", SkipSingle); - - QMediaService *service = 0; - - // Player - service = provider->requestService(Q_MEDIASERVICE_MEDIAPLAYER); - QVERIFY(service != 0); - provider->releaseService(service); -} - -void tst_QMediaServiceProvider::testHasSupport() -{ - MockMediaServiceProvider mockProvider; - QCOMPARE(mockProvider.hasSupport(QByteArray(Q_MEDIASERVICE_MEDIAPLAYER), "video/ogv", QStringList()), - QtMediaServices::MaybeSupported); - - QMediaServiceProvider *provider = QMediaServiceProvider::defaultServiceProvider(); - - if (provider == 0) - QSKIP("No default provider", SkipSingle); - - QCOMPARE(provider->hasSupport(QByteArray(Q_MEDIASERVICE_MEDIAPLAYER), "video/ogv", QStringList()), - QtMediaServices::MaybeSupported); - - QCOMPARE(provider->hasSupport(QByteArray(Q_MEDIASERVICE_MEDIAPLAYER), "audio/ogg", QStringList()), - QtMediaServices::ProbablySupported); - - //while the service returns PreferredService, provider should return ProbablySupported - QCOMPARE(provider->hasSupport(QByteArray(Q_MEDIASERVICE_MEDIAPLAYER), "audio/wav", QStringList()), - QtMediaServices::ProbablySupported); - - //even while all the plugins with "hasSupport" returned NotSupported, - //MockServicePlugin3 has no "hasSupport" interface, so MaybeSupported - QCOMPARE(provider->hasSupport(QByteArray(Q_MEDIASERVICE_MEDIAPLAYER), "video/avi", - QStringList() << "mpeg4"), - QtMediaServices::MaybeSupported); - - QCOMPARE(provider->hasSupport(QByteArray("non existing service"), "video/ogv", QStringList()), - QtMediaServices::NotSupported); - - QCOMPARE(QMediaPlayer::hasSupport("video/ogv"), QtMediaServices::MaybeSupported); - QCOMPARE(QMediaPlayer::hasSupport("audio/ogg"), QtMediaServices::ProbablySupported); - QCOMPARE(QMediaPlayer::hasSupport("audio/wav"), QtMediaServices::ProbablySupported); - - //test low latency flag support - QCOMPARE(QMediaPlayer::hasSupport("audio/wav", QStringList(), QMediaPlayer::LowLatency), - QtMediaServices::ProbablySupported); - //plugin1 probably supports audio/ogg, it checked because it doesn't provide features iface - QCOMPARE(QMediaPlayer::hasSupport("audio/ogg", QStringList(), QMediaPlayer::LowLatency), - QtMediaServices::ProbablySupported); - //Plugin4 is not checked here, sine it's known not support low latency - QCOMPARE(QMediaPlayer::hasSupport("video/quicktime", QStringList(), QMediaPlayer::LowLatency), - QtMediaServices::MaybeSupported); - - //test streaming flag support - QCOMPARE(QMediaPlayer::hasSupport("video/quicktime", QStringList(), QMediaPlayer::StreamPlayback), - QtMediaServices::ProbablySupported); - //Plugin2 is not checked here, sine it's known not support streaming - QCOMPARE(QMediaPlayer::hasSupport("audio/wav", QStringList(), QMediaPlayer::StreamPlayback), - QtMediaServices::MaybeSupported); - - //ensure the correct media player plugin is choosen for mime type - QMediaPlayer simplePlayer(0, QMediaPlayer::LowLatency); - QCOMPARE(simplePlayer.service()->objectName(), QLatin1String("MockServicePlugin2")); - - QMediaPlayer mediaPlayer; - QVERIFY(mediaPlayer.service()->objectName() != QLatin1String("MockServicePlugin2")); - - QMediaPlayer streamPlayer(0, QMediaPlayer::StreamPlayback); - QCOMPARE(streamPlayer.service()->objectName(), QLatin1String("MockServicePlugin4")); -} - -void tst_QMediaServiceProvider::testSupportedMimeTypes() -{ - QMediaServiceProvider *provider = QMediaServiceProvider::defaultServiceProvider(); - - if (provider == 0) - QSKIP("No default provider", SkipSingle); - - QVERIFY(provider->supportedMimeTypes(QByteArray(Q_MEDIASERVICE_MEDIAPLAYER)).contains("audio/ogg")); - QVERIFY(!provider->supportedMimeTypes(QByteArray(Q_MEDIASERVICE_MEDIAPLAYER)).contains("audio/mp3")); -} - -void tst_QMediaServiceProvider::testProviderHints() -{ - { - QMediaServiceProviderHint hint; - QVERIFY(hint.isNull()); - QCOMPARE(hint.type(), QMediaServiceProviderHint::Null); - QVERIFY(hint.device().isEmpty()); - QVERIFY(hint.mimeType().isEmpty()); - QVERIFY(hint.codecs().isEmpty()); - QCOMPARE(hint.features(), 0); - } - - { - QByteArray deviceName(QByteArray("testDevice")); - QMediaServiceProviderHint hint(deviceName); - QVERIFY(!hint.isNull()); - QCOMPARE(hint.type(), QMediaServiceProviderHint::Device); - QCOMPARE(hint.device(), deviceName); - QVERIFY(hint.mimeType().isEmpty()); - QVERIFY(hint.codecs().isEmpty()); - QCOMPARE(hint.features(), 0); - } - - { - QMediaServiceProviderHint hint(QMediaServiceProviderHint::LowLatencyPlayback); - QVERIFY(!hint.isNull()); - QCOMPARE(hint.type(), QMediaServiceProviderHint::SupportedFeatures); - QVERIFY(hint.device().isEmpty()); - QVERIFY(hint.mimeType().isEmpty()); - QVERIFY(hint.codecs().isEmpty()); - QCOMPARE(hint.features(), QMediaServiceProviderHint::LowLatencyPlayback); - } - - { - QString mimeType(QLatin1String("video/ogg")); - QStringList codecs; - codecs << "theora" << "vorbis"; - - QMediaServiceProviderHint hint(mimeType,codecs); - QVERIFY(!hint.isNull()); - QCOMPARE(hint.type(), QMediaServiceProviderHint::ContentType); - QVERIFY(hint.device().isEmpty()); - QCOMPARE(hint.mimeType(), mimeType); - QCOMPARE(hint.codecs(), codecs); - - QMediaServiceProviderHint hint2(hint); - - QVERIFY(!hint2.isNull()); - QCOMPARE(hint2.type(), QMediaServiceProviderHint::ContentType); - QVERIFY(hint2.device().isEmpty()); - QCOMPARE(hint2.mimeType(), mimeType); - QCOMPARE(hint2.codecs(), codecs); - - QMediaServiceProviderHint hint3; - QVERIFY(hint3.isNull()); - hint3 = hint; - QVERIFY(!hint3.isNull()); - QCOMPARE(hint3.type(), QMediaServiceProviderHint::ContentType); - QVERIFY(hint3.device().isEmpty()); - QCOMPARE(hint3.mimeType(), mimeType); - QCOMPARE(hint3.codecs(), codecs); - - QCOMPARE(hint, hint2); - QCOMPARE(hint3, hint2); - - QMediaServiceProviderHint hint4(mimeType,codecs); - QCOMPARE(hint, hint4); - - QMediaServiceProviderHint hint5(mimeType,QStringList()); - QVERIFY(hint != hint5); - } -} - -QTEST_MAIN(tst_QMediaServiceProvider) - -#include "tst_qmediaserviceprovider.moc" diff --git a/tests/auto/qmediatimerange/qmediatimerange.pro b/tests/auto/qmediatimerange/qmediatimerange.pro deleted file mode 100644 index c5e74ce800..0000000000 --- a/tests/auto/qmediatimerange/qmediatimerange.pro +++ /dev/null @@ -1,6 +0,0 @@ -load(qttest_p4) - -SOURCES = tst_qmediatimerange.cpp - -QT = core mediaservices - diff --git a/tests/auto/qmediatimerange/tst_qmediatimerange.cpp b/tests/auto/qmediatimerange/tst_qmediatimerange.cpp deleted file mode 100644 index a21abe299a..0000000000 --- a/tests/auto/qmediatimerange/tst_qmediatimerange.cpp +++ /dev/null @@ -1,735 +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 test suite 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 - -class tst_QMediaTimeRange: public QObject -{ - Q_OBJECT - -public slots: - -private slots: - void testCtor(); - void testGetters(); - void testAssignment(); - void testNormalize(); - void testTranslated(); - void testEarliestLatest(); - void testContains(); - void testAddInterval(); - void testAddTimeRange(); - void testRemoveInterval(); - void testRemoveTimeRange(); - void testClear(); - void testComparisons(); - void testArithmetic(); -}; - -void tst_QMediaTimeRange::testCtor() -{ - // Default Ctor - QMediaTimeRange a; - QVERIFY(a.isEmpty()); - - // (qint, qint) Ctor - QMediaTimeRange b(10, 20); - - QVERIFY(!b.isEmpty()); - QVERIFY(b.isContinuous()); - QVERIFY(b.earliestTime() == 10); - QVERIFY(b.latestTime() == 20); - - // Interval Ctor - QMediaTimeRange c(QMediaTimeInterval(30, 40)); - - QVERIFY(!c.isEmpty()); - QVERIFY(c.isContinuous()); - QVERIFY(c.earliestTime() == 30); - QVERIFY(c.latestTime() == 40); - - // Abnormal Interval Ctor - QMediaTimeRange d(QMediaTimeInterval(20, 10)); - - QVERIFY(d.isEmpty()); - - // Copy Ctor - QMediaTimeRange e(b); - - QVERIFY(!e.isEmpty()); - QVERIFY(e.isContinuous()); - QVERIFY(e.earliestTime() == 10); - QVERIFY(e.latestTime() == 20); -} - -void tst_QMediaTimeRange::testGetters() -{ - QMediaTimeRange x; - - // isEmpty - QVERIFY(x.isEmpty()); - - x.addInterval(10, 20); - - // isEmpty + isContinuous - QVERIFY(!x.isEmpty()); - QVERIFY(x.isContinuous()); - - x.addInterval(30, 40); - - // isEmpty + isContinuous + intervals + start + end - QVERIFY(!x.isEmpty()); - QVERIFY(!x.isContinuous()); - QVERIFY(x.intervals().count() == 2); - QVERIFY(x.intervals()[0].start() == 10); - QVERIFY(x.intervals()[0].end() == 20); - QVERIFY(x.intervals()[1].start() == 30); - QVERIFY(x.intervals()[1].end() == 40); -} - -void tst_QMediaTimeRange::testAssignment() -{ - QMediaTimeRange x; - - // Range Assignment - x = QMediaTimeRange(10, 20); - - QVERIFY(!x.isEmpty()); - QVERIFY(x.isContinuous()); - QVERIFY(x.earliestTime() == 10); - QVERIFY(x.latestTime() == 20); - - // Interval Assignment - x = QMediaTimeInterval(30, 40); - - QVERIFY(!x.isEmpty()); - QVERIFY(x.isContinuous()); - QVERIFY(x.earliestTime() == 30); - QVERIFY(x.latestTime() == 40); - - // Shared Data Check - QMediaTimeRange y; - - y = x; - y.addInterval(10, 20); - - QVERIFY(!x.isEmpty()); - QVERIFY(x.isContinuous()); - QVERIFY(x.earliestTime() == 30); - QVERIFY(x.latestTime() == 40); -} - -void tst_QMediaTimeRange::testNormalize() -{ - QMediaTimeInterval x(20, 10); - - QVERIFY(!x.isNormal()); - - x = x.normalized(); - - QVERIFY(x.isNormal()); - QVERIFY(x.start() == 10); - QVERIFY(x.end() == 20); -} - -void tst_QMediaTimeRange::testTranslated() -{ - QMediaTimeInterval x(10, 20); - x = x.translated(10); - - QVERIFY(x.start() == 20); - QVERIFY(x.end() == 30); -} - -void tst_QMediaTimeRange::testEarliestLatest() -{ - // Test over a single interval - QMediaTimeRange x(30, 40); - - QVERIFY(x.earliestTime() == 30); - QVERIFY(x.latestTime() == 40); - - // Test over multiple intervals - x.addInterval(50, 60); - - QVERIFY(x.earliestTime() == 30); - QVERIFY(x.latestTime() == 60); -} - -void tst_QMediaTimeRange::testContains() -{ - // Test over a single interval - QMediaTimeRange x(10, 20); - - QVERIFY(!x.isEmpty()); - QVERIFY(x.isContinuous()); - QVERIFY(x.contains(15)); - QVERIFY(x.contains(10)); - QVERIFY(x.contains(20)); - QVERIFY(!x.contains(25)); - - // Test over multiple intervals - x.addInterval(40, 50); - - QVERIFY(!x.isEmpty()); - QVERIFY(!x.isContinuous()); - QVERIFY(x.contains(15)); - QVERIFY(x.contains(45)); - QVERIFY(!x.contains(30)); - - // Test over a concrete interval - QMediaTimeInterval y(10, 20); - QVERIFY(y.contains(15)); - QVERIFY(y.contains(10)); - QVERIFY(y.contains(20)); - QVERIFY(!y.contains(25)); -} - -void tst_QMediaTimeRange::testAddInterval() -{ - // All intervals Overlap - QMediaTimeRange x; - x.addInterval(10, 40); - x.addInterval(30, 50); - x.addInterval(20, 60); - - QVERIFY(!x.isEmpty()); - QVERIFY(x.isContinuous()); - QVERIFY(x.earliestTime() == 10); - QVERIFY(x.latestTime() == 60); - - // 1 adjacent interval, 1 encompassed interval - x = QMediaTimeRange(); - x.addInterval(10, 40); - x.addInterval(20, 30); - x.addInterval(41, 50); - - QVERIFY(!x.isEmpty()); - QVERIFY(x.isContinuous()); - QVERIFY(x.earliestTime() == 10); - QVERIFY(x.latestTime() == 50); - - // 1 overlapping interval, 1 disjoint interval - x = QMediaTimeRange(); - x.addInterval(10, 30); - x.addInterval(20, 40); - x.addInterval(50, 60); - - QVERIFY(!x.isEmpty()); - QVERIFY(!x.isContinuous()); - QVERIFY(x.intervals().count() == 2); - QVERIFY(x.intervals()[0].start() == 10); - QVERIFY(x.intervals()[0].end() == 40); - QVERIFY(x.intervals()[1].start() == 50); - QVERIFY(x.intervals()[1].end() == 60); - - // Identical Add - x = QMediaTimeRange(); - x.addInterval(10, 20); - x.addInterval(10, 20); - - QVERIFY(!x.isEmpty()); - QVERIFY(x.isContinuous()); - QVERIFY(x.earliestTime() == 10); - QVERIFY(x.latestTime() == 20); - - // Multi-Merge - x = QMediaTimeRange(); - x.addInterval(10, 20); - x.addInterval(30, 40); - x.addInterval(50, 60); - x.addInterval(15, 55); - - QVERIFY(!x.isEmpty()); - QVERIFY(x.isContinuous()); - QVERIFY(x.earliestTime() == 10); - QVERIFY(x.latestTime() == 60); - - // Interval Parameter - All intervals Overlap - x = QMediaTimeRange(); - x.addInterval(QMediaTimeInterval(10, 40)); - x.addInterval(QMediaTimeInterval(30, 50)); - x.addInterval(QMediaTimeInterval(20, 60)); - - QVERIFY(!x.isEmpty()); - QVERIFY(x.isContinuous()); - QVERIFY(x.earliestTime() == 10); - QVERIFY(x.latestTime() == 60); - - // Interval Parameter - Abnormal Interval - x = QMediaTimeRange(); - x.addInterval(QMediaTimeInterval(20, 10)); - - QVERIFY(x.isEmpty()); -} - -void tst_QMediaTimeRange::testAddTimeRange() -{ - // Add Time Range uses Add Interval internally, - // so in this test the focus is on combinations of number - // of intervals added, rather than the different types of - // merges which can occur. - QMediaTimeRange a, b; - - // Add Single into Single - a = QMediaTimeRange(10, 30); - b = QMediaTimeRange(20, 40); - - b.addTimeRange(a); - - QVERIFY(!b.isEmpty()); - QVERIFY(b.isContinuous()); - QVERIFY(b.earliestTime() == 10); - QVERIFY(b.latestTime() == 40); - - // Add Multiple into Single - a = QMediaTimeRange(); - a.addInterval(10, 30); - a.addInterval(40, 60); - - b = QMediaTimeRange(20, 50); - - b.addTimeRange(a); - - QVERIFY(!b.isEmpty()); - QVERIFY(b.isContinuous()); - QVERIFY(b.earliestTime() == 10); - QVERIFY(b.latestTime() == 60); - - // Add Single into Multiple - a = QMediaTimeRange(20, 50); - - b = QMediaTimeRange(); - b.addInterval(10, 30); - b.addInterval(40, 60); - - b.addTimeRange(a); - - QVERIFY(!b.isEmpty()); - QVERIFY(b.isContinuous()); - QVERIFY(b.earliestTime() == 10); - QVERIFY(b.latestTime() == 60); - - // Add Multiple into Multiple - a = QMediaTimeRange(); - a.addInterval(10, 30); - a.addInterval(40, 70); - a.addInterval(80, 100); - - b = QMediaTimeRange(); - b.addInterval(20, 50); - b.addInterval(60, 90); - - b.addTimeRange(a); - - QVERIFY(!b.isEmpty()); - QVERIFY(b.isContinuous()); - QVERIFY(b.earliestTime() == 10); - QVERIFY(b.latestTime() == 100); - - // Add Nothing to Single - a = QMediaTimeRange(); - b = QMediaTimeRange(10, 20); - - b.addTimeRange(a); - - QVERIFY(!b.isEmpty()); - QVERIFY(b.isContinuous()); - QVERIFY(b.earliestTime() == 10); - QVERIFY(b.latestTime() == 20); - - // Add Single to Nothing - a = QMediaTimeRange(10, 20); - b = QMediaTimeRange(); - - b.addTimeRange(a); - - QVERIFY(!b.isEmpty()); - QVERIFY(b.isContinuous()); - QVERIFY(b.earliestTime() == 10); - QVERIFY(b.latestTime() == 20); - - // Add Nothing to Nothing - a = QMediaTimeRange(); - b = QMediaTimeRange(); - - b.addTimeRange(a); - - QVERIFY(b.isEmpty()); -} - -void tst_QMediaTimeRange::testRemoveInterval() -{ - // Removing an interval, causing a split - QMediaTimeRange x; - x.addInterval(10, 50); - x.removeInterval(20, 40); - - QVERIFY(!x.isEmpty()); - QVERIFY(!x.isContinuous()); - QVERIFY(x.intervals().count() == 2); - QVERIFY(x.intervals()[0].start() == 10); - QVERIFY(x.intervals()[0].end() == 19); - QVERIFY(x.intervals()[1].start() == 41); - QVERIFY(x.intervals()[1].end() == 50); - - // Removing an interval, causing a deletion - x = QMediaTimeRange(); - x.addInterval(20, 30); - x.removeInterval(10, 40); - - QVERIFY(x.isEmpty()); - - // Removing an interval, causing a tail trim - x = QMediaTimeRange(); - x.addInterval(20, 40); - x.removeInterval(30, 50); - - QVERIFY(!x.isEmpty()); - QVERIFY(x.isContinuous()); - QVERIFY(x.earliestTime() == 20); - QVERIFY(x.latestTime() == 29); - - // Removing an interval, causing a head trim - x = QMediaTimeRange(); - x.addInterval(20, 40); - x.removeInterval(10, 30); - - QVERIFY(!x.isEmpty()); - QVERIFY(x.isContinuous()); - QVERIFY(x.earliestTime() == 31); - QVERIFY(x.latestTime() == 40); - - // Identical Remove - x = QMediaTimeRange(); - x.addInterval(10, 20); - x.removeInterval(10, 20); - - QVERIFY(x.isEmpty()); - - // Multi-Trim - x = QMediaTimeRange(); - x.addInterval(10, 20); - x.addInterval(30, 40); - x.removeInterval(15, 35); - - QVERIFY(!x.isEmpty()); - QVERIFY(!x.isContinuous()); - QVERIFY(x.intervals().count() == 2); - QVERIFY(x.intervals()[0].start() == 10); - QVERIFY(x.intervals()[0].end() == 14); - QVERIFY(x.intervals()[1].start() == 36); - QVERIFY(x.intervals()[1].end() == 40); - - // Multi-Delete - x = QMediaTimeRange(); - x.addInterval(10, 20); - x.addInterval(30, 40); - x.addInterval(50, 60); - x.removeInterval(10, 60); - - QVERIFY(x.isEmpty()); - - // Interval Parameter - Removing an interval, causing a split - x = QMediaTimeRange(); - x.addInterval(10, 50); - x.removeInterval(QMediaTimeInterval(20, 40)); - - QVERIFY(!x.isEmpty()); - QVERIFY(!x.isContinuous()); - QVERIFY(x.intervals().count() == 2); - QVERIFY(x.intervals()[0].start() == 10); - QVERIFY(x.intervals()[0].end() == 19); - QVERIFY(x.intervals()[1].start() == 41); - QVERIFY(x.intervals()[1].end() == 50); - - // Interval Parameter - Abnormal Interval - x = QMediaTimeRange(); - x.addInterval(10, 40); - x.removeInterval(QMediaTimeInterval(30, 20)); - - QVERIFY(!x.isEmpty()); - QVERIFY(x.isContinuous()); - QVERIFY(x.earliestTime() == 10); - QVERIFY(x.latestTime() == 40); -} - -void tst_QMediaTimeRange::testRemoveTimeRange() -{ - // Remove Time Range uses Remove Interval internally, - // so in this test the focus is on combinations of number - // of intervals removed, rather than the different types of - // deletions which can occur. - QMediaTimeRange a, b; - - // Remove Single from Single - a = QMediaTimeRange(10, 30); - b = QMediaTimeRange(20, 40); - - b.removeTimeRange(a); - - QVERIFY(!b.isEmpty()); - QVERIFY(b.isContinuous()); - QVERIFY(b.earliestTime() == 31); - QVERIFY(b.latestTime() == 40); - - // Remove Multiple from Single - a = QMediaTimeRange(); - a.addInterval(10, 30); - a.addInterval(40, 60); - - b = QMediaTimeRange(20, 50); - - b.removeTimeRange(a); - - QVERIFY(!b.isEmpty()); - QVERIFY(b.isContinuous()); - QVERIFY(b.earliestTime() == 31); - QVERIFY(b.latestTime() == 39); - - // Remove Single from Multiple - a = QMediaTimeRange(20, 50); - - b = QMediaTimeRange(); - b.addInterval(10, 30); - b.addInterval(40, 60); - - b.removeTimeRange(a); - - QVERIFY(!b.isEmpty()); - QVERIFY(!b.isContinuous()); - QVERIFY(b.intervals().count() == 2); - QVERIFY(b.intervals()[0].start() == 10); - QVERIFY(b.intervals()[0].end() == 19); - QVERIFY(b.intervals()[1].start() == 51); - QVERIFY(b.intervals()[1].end() == 60); - - // Remove Multiple from Multiple - a = QMediaTimeRange(); - a.addInterval(20, 50); - a.addInterval(50, 90); - - - b = QMediaTimeRange(); - b.addInterval(10, 30); - b.addInterval(40, 70); - b.addInterval(80, 100); - - b.removeTimeRange(a); - - QVERIFY(!b.isEmpty()); - QVERIFY(!b.isContinuous()); - QVERIFY(b.intervals().count() == 2); - QVERIFY(b.intervals()[0].start() == 10); - QVERIFY(b.intervals()[0].end() == 19); - QVERIFY(b.intervals()[1].start() == 91); - QVERIFY(b.intervals()[1].end() == 100); - - // Remove Nothing from Single - a = QMediaTimeRange(); - b = QMediaTimeRange(10, 20); - - b.removeTimeRange(a); - - QVERIFY(!b.isEmpty()); - QVERIFY(b.isContinuous()); - QVERIFY(b.earliestTime() == 10); - QVERIFY(b.latestTime() == 20); - - // Remove Single from Nothing - a = QMediaTimeRange(10, 20); - b = QMediaTimeRange(); - - b.removeTimeRange(a); - - QVERIFY(b.isEmpty()); - - // Remove Nothing from Nothing - a = QMediaTimeRange(); - b = QMediaTimeRange(); - - b.removeTimeRange(a); - - QVERIFY(b.isEmpty()); -} - -void tst_QMediaTimeRange::testClear() -{ - QMediaTimeRange x; - - // Clear Nothing - x.clear(); - - QVERIFY(x.isEmpty()); - - // Clear Single - x = QMediaTimeRange(10, 20); - x.clear(); - - QVERIFY(x.isEmpty()); - - // Clear Multiple - x = QMediaTimeRange(); - x.addInterval(10, 20); - x.addInterval(30, 40); - x.clear(); - - QVERIFY(x.isEmpty()); -} - -void tst_QMediaTimeRange::testComparisons() -{ - // Interval equality - QVERIFY(QMediaTimeInterval(10, 20) == QMediaTimeInterval(10, 20)); - QVERIFY(QMediaTimeInterval(10, 20) != QMediaTimeInterval(10, 30)); - QVERIFY(!(QMediaTimeInterval(10, 20) != QMediaTimeInterval(10, 20))); - QVERIFY(!(QMediaTimeInterval(10, 20) == QMediaTimeInterval(10, 30))); - - // Time range equality - Single Interval - QMediaTimeRange a(10, 20), b(20, 30), c(10, 20); - - QVERIFY(a == c); - QVERIFY(!(a == b)); - QVERIFY(a != b); - QVERIFY(!(a != c)); - - // Time Range Equality - Multiple Intervals - QMediaTimeRange x, y, z; - - x.addInterval(10, 20); - x.addInterval(30, 40); - x.addInterval(50, 60); - - y.addInterval(10, 20); - y.addInterval(35, 45); - y.addInterval(50, 60); - - z.addInterval(10, 20); - z.addInterval(30, 40); - z.addInterval(50, 60); - - QVERIFY(x == z); - QVERIFY(!(x == y)); - QVERIFY(x != y); - QVERIFY(!(x != z)); -} - -void tst_QMediaTimeRange::testArithmetic() -{ - QMediaTimeRange a(10, 20), b(20, 30); - - // Test += - a += b; - - QVERIFY(a.isContinuous()); - QVERIFY(a.earliestTime() == 10); - QVERIFY(a.latestTime() == 30); - - // Test -= - a -= b; - - QVERIFY(a.isContinuous()); - QVERIFY(a.earliestTime() == 10); - QVERIFY(a.latestTime() == 19); - - // Test += and -= on intervals - a -= QMediaTimeInterval(10, 20); - a += QMediaTimeInterval(40, 50); - - QVERIFY(a.isContinuous()); - QVERIFY(a.earliestTime() == 40); - QVERIFY(a.latestTime() == 50); - - // Test Interval + Interval - a = QMediaTimeInterval(10, 20) + QMediaTimeInterval(20, 30); - QVERIFY(a.isContinuous()); - QVERIFY(a.earliestTime() == 10); - QVERIFY(a.latestTime() == 30); - - // Test Range + Interval - a = a + QMediaTimeInterval(30, 40); - QVERIFY(a.isContinuous()); - QVERIFY(a.earliestTime() == 10); - QVERIFY(a.latestTime() == 40); - - // Test Interval + Range - a = QMediaTimeInterval(40, 50) + a; - QVERIFY(a.isContinuous()); - QVERIFY(a.earliestTime() == 10); - QVERIFY(a.latestTime() == 50); - - // Test Range + Range - a = a + QMediaTimeRange(50, 60); - QVERIFY(a.isContinuous()); - QVERIFY(a.earliestTime() == 10); - QVERIFY(a.latestTime() == 60); - - // Test Range - Interval - a = a - QMediaTimeInterval(50, 60); - QVERIFY(a.isContinuous()); - QVERIFY(a.earliestTime() == 10); - QVERIFY(a.latestTime() == 49); - - // Test Range - Range - a = a - QMediaTimeRange(40, 50); - QVERIFY(a.isContinuous()); - QVERIFY(a.earliestTime() == 10); - QVERIFY(a.latestTime() == 39); - - // Test Interval - Range - b = QMediaTimeInterval(0, 20) - a; - QVERIFY(b.isContinuous()); - QVERIFY(b.earliestTime() == 0); - QVERIFY(b.latestTime() == 9); - - // Test Interval - Interval - a = QMediaTimeInterval(10, 20) - QMediaTimeInterval(15, 30); - QVERIFY(a.isContinuous()); - QVERIFY(a.earliestTime() == 10); - QVERIFY(a.latestTime() == 14); -} - -QTEST_MAIN(tst_QMediaTimeRange) - -#include "tst_qmediatimerange.moc" diff --git a/tests/auto/qsoundeffect/qsoundeffect.pro b/tests/auto/qsoundeffect/qsoundeffect.pro deleted file mode 100644 index 5344a16bb6..0000000000 --- a/tests/auto/qsoundeffect/qsoundeffect.pro +++ /dev/null @@ -1,20 +0,0 @@ -load(qttest_p4) - -SOURCES += tst_qsoundeffect.cpp - -QT = core multimedia mediaservices - -wince* { - deploy.sources += 4.wav - DEPLOYMENT = deploy - DEFINES += SRCDIR=\\\"\\\" - QT += gui -} else { - DEFINES += SRCDIR=\\\"$$PWD/\\\" -} - -unix:!mac { - !contains(QT_CONFIG, pulseaudio) { - DEFINES += QT_MULTIMEDIA_QMEDIAPLAYER - } -} diff --git a/tests/auto/qsoundeffect/tst_qsoundeffect.cpp b/tests/auto/qsoundeffect/tst_qsoundeffect.cpp deleted file mode 100644 index e76a4c5bfe..0000000000 --- a/tests/auto/qsoundeffect/tst_qsoundeffect.cpp +++ /dev/null @@ -1,144 +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 test suite 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 -#include -#include -#include - - -class tst_QSoundEffect : public QObject -{ - Q_OBJECT -public: - tst_QSoundEffect(QObject* parent=0) : QObject(parent) {} - -private slots: - void initTestCase(); - void testSource(); - void testLooping(); - void testVolume(); - void testMuting(); - -private: - QSoundEffect* sound; -}; - -void tst_QSoundEffect::initTestCase() -{ -#ifndef QT_MULTIMEDIA_QMEDIAPLAYER - sound = new QSoundEffect; - - QVERIFY(sound->source().isEmpty()); - QVERIFY(sound->loops() == 1); - QVERIFY(sound->volume() == 100); - QVERIFY(sound->isMuted() == false); -#endif -} - -void tst_QSoundEffect::testSource() -{ -#ifndef QT_MULTIMEDIA_QMEDIAPLAYER - QSignalSpy readSignal(sound, SIGNAL(sourceChanged())); - - QUrl url = QUrl::fromLocalFile(QString("%1%2").arg(SRCDIR).arg("test.wav")); - sound->setSource(url); - - QCOMPARE(sound->source(),url); - QCOMPARE(readSignal.count(),1); - - QTestEventLoop::instance().enterLoop(1); - sound->play(); - - QTest::qWait(3000); -#endif -} - -void tst_QSoundEffect::testLooping() -{ -#ifndef QT_MULTIMEDIA_QMEDIAPLAYER - QSignalSpy readSignal(sound, SIGNAL(loopsChanged())); - - sound->setLoops(5); - QCOMPARE(sound->loops(),5); - - sound->play(); - - // test.wav is about 200ms, wait until it has finished playing 5 times - QTest::qWait(3000); -#endif -} - -void tst_QSoundEffect::testVolume() -{ -#ifndef QT_MULTIMEDIA_QMEDIAPLAYER - QSignalSpy readSignal(sound, SIGNAL(volumeChanged())); - - sound->setVolume(50); - QCOMPARE(sound->volume(),50); - - QTest::qWait(20); - QCOMPARE(readSignal.count(),1); -#endif -} - -void tst_QSoundEffect::testMuting() -{ -#ifndef QT_MULTIMEDIA_QMEDIAPLAYER - QSignalSpy readSignal(sound, SIGNAL(mutedChanged())); - - sound->setMuted(true); - QCOMPARE(sound->isMuted(),true); - - QTest::qWait(20); - QCOMPARE(readSignal.count(),1); - - delete sound; -#endif -} - -QTEST_MAIN(tst_QSoundEffect) - -#include "tst_qsoundeffect.moc" diff --git a/tests/auto/qvideowidget/qvideowidget.pro b/tests/auto/qvideowidget/qvideowidget.pro deleted file mode 100644 index 12686f3e29..0000000000 --- a/tests/auto/qvideowidget/qvideowidget.pro +++ /dev/null @@ -1,6 +0,0 @@ -load(qttest_p4) - -SOURCES = tst_qvideowidget.cpp - -QT = core gui multimedia mediaservices - diff --git a/tests/auto/qvideowidget/tst_qvideowidget.cpp b/tests/auto/qvideowidget/tst_qvideowidget.cpp deleted file mode 100644 index 8a54789a66..0000000000 --- a/tests/auto/qvideowidget/tst_qvideowidget.cpp +++ /dev/null @@ -1,1602 +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 test suite 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 -#include -#include -#include -#include -#include -#include -#include -#include - -#include - - -class tst_QVideoWidget : public QObject -{ - Q_OBJECT -private slots: - void nullObject(); - void nullService(); - void nullOutputControl(); - void noOutputs(); - void serviceDestroyed(); - void objectDestroyed(); - void setMediaObject(); - - void showWindowControl(); - void aspectRatioWindowControl(); - void sizeHintWindowControl_data() { sizeHint_data(); } - void sizeHintWindowControl(); - void brightnessWindowControl_data() { color_data(); } - void brightnessWindowControl(); - void contrastWindowControl_data() { color_data(); } - void contrastWindowControl(); - void hueWindowControl_data() { color_data(); } - void hueWindowControl(); - void saturationWindowControl_data() { color_data(); } - void saturationWindowControl(); - - void showWidgetControl(); - void aspectRatioWidgetControl(); - void sizeHintWidgetControl_data() { sizeHint_data(); } - void sizeHintWidgetControl(); - void brightnessWidgetControl_data() { color_data(); } - void brightnessWidgetControl(); - void contrastWidgetControl_data() { color_data(); } - void contrastWidgetControl(); - void hueWidgetControl_data() { color_data(); } - void hueWidgetControl(); - void saturationWidgetControl_data() { color_data(); } - void saturationWidgetControl(); - - void showRendererControl(); - void aspectRatioRendererControl(); - void sizeHintRendererControl_data(); - void sizeHintRendererControl(); - void brightnessRendererControl_data() { color_data(); } - void brightnessRendererControl(); - void contrastRendererControl_data() { color_data(); } - void contrastRendererControl(); - void hueRendererControl_data() { color_data(); } - void hueRendererControl(); - void saturationRendererControl_data() { color_data(); } - void saturationRendererControl(); - - void paintRendererControl(); - -#ifndef Q_WS_X11 - void fullScreenWindowControl(); - void fullScreenWidgetControl(); - void fullScreenRendererControl(); -#endif - -private: - void sizeHint_data(); - void color_data(); -}; - -Q_DECLARE_METATYPE(Qt::AspectRatioMode) -Q_DECLARE_METATYPE(const uchar *) - -class QtTestOutputControl : public QVideoOutputControl -{ -public: - QtTestOutputControl() : m_output(NoOutput) {} - - QList availableOutputs() const { return m_outputs; } - void setAvailableOutputs(const QList outputs) { m_outputs = outputs; } - - Output output() const { return m_output; } - virtual void setOutput(Output output) { m_output = output; } - -private: - Output m_output; - QList m_outputs; -}; - -class QtTestWindowControl : public QVideoWindowControl -{ -public: - QtTestWindowControl() - : m_winId(0) - , m_repaintCount(0) - , m_brightness(0) - , m_contrast(0) - , m_saturation(0) - , m_aspectRatioMode(Qt::KeepAspectRatio) - , m_fullScreen(0) - { - } - - WId winId() const { return m_winId; } - void setWinId(WId id) { m_winId = id; } - - QRect displayRect() const { return m_displayRect; } - void setDisplayRect(const QRect &rect) { m_displayRect = rect; } - - bool isFullScreen() const { return m_fullScreen; } - void setFullScreen(bool fullScreen) { emit fullScreenChanged(m_fullScreen = fullScreen); } - - int repaintCount() const { return m_repaintCount; } - void setRepaintCount(int count) { m_repaintCount = count; } - void repaint() { ++m_repaintCount; } - - QSize nativeSize() const { return m_nativeSize; } - void setNativeSize(const QSize &size) { m_nativeSize = size; emit nativeSizeChanged(); } - - Qt::AspectRatioMode aspectRatioMode() const { return m_aspectRatioMode; } - void setAspectRatioMode(Qt::AspectRatioMode mode) { m_aspectRatioMode = mode; } - - int brightness() const { return m_brightness; } - void setBrightness(int brightness) { emit brightnessChanged(m_brightness = brightness); } - - int contrast() const { return m_contrast; } - void setContrast(int contrast) { emit contrastChanged(m_contrast = contrast); } - - int hue() const { return m_hue; } - void setHue(int hue) { emit hueChanged(m_hue = hue); } - - int saturation() const { return m_saturation; } - void setSaturation(int saturation) { emit saturationChanged(m_saturation = saturation); } - -private: - WId m_winId; - int m_repaintCount; - int m_brightness; - int m_contrast; - int m_hue; - int m_saturation; - Qt::AspectRatioMode m_aspectRatioMode; - QRect m_displayRect; - QSize m_nativeSize; - bool m_fullScreen; -}; - -class QtTestWidgetControl : public QVideoWidgetControl -{ -public: - QtTestWidgetControl() - : m_brightness(1.0) - , m_contrast(1.0) - , m_hue(1.0) - , m_saturation(1.0) - , m_aspectRatioMode(Qt::KeepAspectRatio) - , m_fullScreen(false) - { - } - - bool isFullScreen() const { return m_fullScreen; } - void setFullScreen(bool fullScreen) { emit fullScreenChanged(m_fullScreen = fullScreen); } - - Qt::AspectRatioMode aspectRatioMode() const { return m_aspectRatioMode; } - void setAspectRatioMode(Qt::AspectRatioMode mode) { m_aspectRatioMode = mode; } - - int brightness() const { return m_brightness; } - void setBrightness(int brightness) { emit brightnessChanged(m_brightness = brightness); } - - int contrast() const { return m_contrast; } - void setContrast(int contrast) { emit contrastChanged(m_contrast = contrast); } - - int hue() const { return m_hue; } - void setHue(int hue) { emit hueChanged(m_hue = hue); } - - int saturation() const { return m_saturation; } - void setSaturation(int saturation) { emit saturationChanged(m_saturation = saturation); } - - void setSizeHint(const QSize &size) { m_widget.setSizeHint(size); } - - QWidget *videoWidget() { return &m_widget; } - -private: - class Widget : public QWidget - { - public: - QSize sizeHint() const { return m_sizeHint; } - void setSizeHint(const QSize &size) { m_sizeHint = size; updateGeometry(); } - private: - QSize m_sizeHint; - } m_widget; - int m_brightness; - int m_contrast; - int m_hue; - int m_saturation; - Qt::AspectRatioMode m_aspectRatioMode; - QSize m_sizeHint; - bool m_fullScreen; -}; - -class QtTestRendererControl : public QVideoRendererControl -{ -public: - QtTestRendererControl() - : m_surface(0) - { - } - - QAbstractVideoSurface *surface() const { return m_surface; } - void setSurface(QAbstractVideoSurface *surface) { m_surface = surface; } - -private: - QAbstractVideoSurface *m_surface; -}; - -class QtTestVideoService : public QMediaService -{ - Q_OBJECT -public: - QtTestVideoService( - QtTestOutputControl *output, - QtTestWindowControl *window, - QtTestWidgetControl *widget, - QtTestRendererControl *renderer) - : QMediaService(0) - , outputControl(output) - , windowControl(window) - , widgetControl(widget) - , rendererControl(renderer) - { - } - - ~QtTestVideoService() - { - delete outputControl; - delete windowControl; - delete widgetControl; - delete rendererControl; - } - - QMediaControl *control(const char *name) const - { - if (qstrcmp(name, QVideoOutputControl_iid) == 0) - return outputControl; - else if (qstrcmp(name, QVideoWindowControl_iid) == 0) - return windowControl; - else if (qstrcmp(name, QVideoWidgetControl_iid) == 0) - return widgetControl; - else if (qstrcmp(name, QVideoRendererControl_iid) == 0) - return rendererControl; - else - return 0; - } - - QtTestOutputControl *outputControl; - QtTestWindowControl *windowControl; - QtTestWidgetControl *widgetControl; - QtTestRendererControl *rendererControl; -}; - -class QtTestVideoObject : public QMediaObject -{ - Q_OBJECT -public: - QtTestVideoObject( - QtTestWindowControl *window, - QtTestWidgetControl *widget, - QtTestRendererControl *renderer): - QMediaObject(0, new QtTestVideoService(new QtTestOutputControl, window, widget, renderer)) - { - testService = qobject_cast(service()); - QList outputs; - - if (window) - outputs.append(QVideoOutputControl::WindowOutput); - if (widget) - outputs.append(QVideoOutputControl::WidgetOutput); - if (renderer) - outputs.append(QVideoOutputControl::RendererOutput); - - testService->outputControl->setAvailableOutputs(outputs); - } - - QtTestVideoObject(QtTestVideoService *service): - QMediaObject(0, service), - testService(service) - { - } - - ~QtTestVideoObject() - { - delete testService; - } - - QtTestVideoService *testService; -}; - -void tst_QVideoWidget::nullObject() -{ - QVideoWidget widget; - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - - QVERIFY(widget.sizeHint().isEmpty()); - - widget.setFullScreen(true); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(widget.isFullScreen(), true); - - widget.setAspectRatioMode(Qt::IgnoreAspectRatio); - QCOMPARE(widget.aspectRatioMode(), Qt::IgnoreAspectRatio); - - { - QSignalSpy spy(&widget, SIGNAL(brightnessChanged(int))); - - widget.setBrightness(100); - QCOMPARE(widget.brightness(), 100); - QCOMPARE(spy.count(), 1); - QCOMPARE(spy.value(0).value(0).toInt(), 100); - - widget.setBrightness(100); - QCOMPARE(widget.brightness(), 100); - QCOMPARE(spy.count(), 1); - - widget.setBrightness(-120); - QCOMPARE(widget.brightness(), -100); - QCOMPARE(spy.count(), 2); - QCOMPARE(spy.value(1).value(0).toInt(), -100); - } { - QSignalSpy spy(&widget, SIGNAL(contrastChanged(int))); - - widget.setContrast(100); - QCOMPARE(widget.contrast(), 100); - QCOMPARE(spy.count(), 1); - QCOMPARE(spy.value(0).value(0).toInt(), 100); - - widget.setContrast(100); - QCOMPARE(widget.contrast(), 100); - QCOMPARE(spy.count(), 1); - - widget.setContrast(-120); - QCOMPARE(widget.contrast(), -100); - QCOMPARE(spy.count(), 2); - QCOMPARE(spy.value(1).value(0).toInt(), -100); - } { - QSignalSpy spy(&widget, SIGNAL(hueChanged(int))); - - widget.setHue(100); - QCOMPARE(widget.hue(), 100); - QCOMPARE(spy.count(), 1); - QCOMPARE(spy.value(0).value(0).toInt(), 100); - - widget.setHue(100); - QCOMPARE(widget.hue(), 100); - QCOMPARE(spy.count(), 1); - - widget.setHue(-120); - QCOMPARE(widget.hue(), -100); - QCOMPARE(spy.count(), 2); - QCOMPARE(spy.value(1).value(0).toInt(), -100); - } { - QSignalSpy spy(&widget, SIGNAL(saturationChanged(int))); - - widget.setSaturation(100); - QCOMPARE(widget.saturation(), 100); - QCOMPARE(spy.count(), 1); - QCOMPARE(spy.value(0).value(0).toInt(), 100); - - widget.setSaturation(100); - QCOMPARE(widget.saturation(), 100); - QCOMPARE(spy.count(), 1); - - widget.setSaturation(-120); - QCOMPARE(widget.saturation(), -100); - QCOMPARE(spy.count(), 2); - QCOMPARE(spy.value(1).value(0).toInt(), -100); - } -} - -void tst_QVideoWidget::nullService() -{ - QtTestVideoObject object(0); - - QVideoWidget widget; - widget.setMediaObject(&object); - - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - - QVERIFY(widget.sizeHint().isEmpty()); - - widget.setFullScreen(true); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(widget.isFullScreen(), true); - - widget.setAspectRatioMode(Qt::IgnoreAspectRatio); - QCOMPARE(widget.aspectRatioMode(), Qt::IgnoreAspectRatio); - - widget.setBrightness(100); - QCOMPARE(widget.brightness(), 100); - - widget.setContrast(100); - QCOMPARE(widget.contrast(), 100); - - widget.setHue(100); - QCOMPARE(widget.hue(), 100); - - widget.setSaturation(100); - QCOMPARE(widget.saturation(), 100); -} - -void tst_QVideoWidget::nullOutputControl() -{ - QtTestVideoObject object(new QtTestVideoService(0, 0, 0, 0)); - - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - - QVERIFY(widget.sizeHint().isEmpty()); - - widget.setFullScreen(true); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(widget.isFullScreen(), true); - - widget.setBrightness(100); - QCOMPARE(widget.brightness(), 100); - - widget.setContrast(100); - QCOMPARE(widget.contrast(), 100); - - widget.setHue(100); - QCOMPARE(widget.hue(), 100); - - widget.setSaturation(100); - QCOMPARE(widget.saturation(), 100); -} - -void tst_QVideoWidget::noOutputs() -{ - QtTestVideoObject object(0, 0, 0); - - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - - QVERIFY(widget.sizeHint().isEmpty()); - - widget.setFullScreen(true); - QCOMPARE(widget.isFullScreen(), true); - - widget.setBrightness(100); - QCOMPARE(widget.brightness(), 100); - - widget.setContrast(100); - QCOMPARE(widget.contrast(), 100); - - widget.setHue(100); - QCOMPARE(widget.hue(), 100); - - widget.setSaturation(100); - QCOMPARE(widget.saturation(), 100); -} - -void tst_QVideoWidget::serviceDestroyed() -{ - QtTestVideoObject object(new QtTestWindowControl, new QtTestWidgetControl, 0); - - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - - widget.show(); - QTest::qWaitForWindowShown(&widget); - - widget.setBrightness(100); - widget.setContrast(100); - widget.setHue(100); - widget.setSaturation(100); - - delete object.testService; - object.testService = 0; - - QCOMPARE(widget.mediaObject(), static_cast(&object)); - - QCOMPARE(widget.brightness(), 100); - QCOMPARE(widget.contrast(), 100); - QCOMPARE(widget.hue(), 100); - QCOMPARE(widget.saturation(), 100); - - widget.setFullScreen(true); - QCOMPARE(widget.isFullScreen(), true); -} - -void tst_QVideoWidget::objectDestroyed() -{ - QtTestVideoObject *object = new QtTestVideoObject( - new QtTestWindowControl, - new QtTestWidgetControl, - 0); - - QVideoWidget widget; - widget.setMediaObject(object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - - widget.show(); - QTest::qWaitForWindowShown(&widget); - - widget.setBrightness(100); - widget.setContrast(100); - widget.setHue(100); - widget.setSaturation(100); - - // Delete the media object without deleting the service. - QtTestVideoService *service = object->testService; - object->testService = 0; - - delete object; - object = 0; - - QCOMPARE(widget.mediaObject(), static_cast(object)); - - QCOMPARE(service->outputControl->output(), QVideoOutputControl::NoOutput); - - QCOMPARE(widget.brightness(), 100); - QCOMPARE(widget.contrast(), 100); - QCOMPARE(widget.hue(), 100); - QCOMPARE(widget.saturation(), 100); - - widget.setFullScreen(true); - QCOMPARE(widget.isFullScreen(), true); - - delete service; -} - -void tst_QVideoWidget::setMediaObject() -{ - QMediaObject *nullObject = 0; - QtTestVideoObject windowObject(new QtTestWindowControl, 0, 0); - QtTestVideoObject widgetObject(0, new QtTestWidgetControl, 0); - QtTestVideoObject rendererObject(0, 0, new QtTestRendererControl); - - QVideoWidget widget; - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - - widget.show(); - QTest::qWaitForWindowShown(&widget); - - QCOMPARE(widget.mediaObject(), nullObject); - QCOMPARE(windowObject.testService->outputControl->output(), QVideoOutputControl::NoOutput); - QCOMPARE(widgetObject.testService->outputControl->output(), QVideoOutputControl::NoOutput); - QCOMPARE(rendererObject.testService->outputControl->output(), QVideoOutputControl::NoOutput); - - widget.setMediaObject(&windowObject); - QCOMPARE(widget.mediaObject(), static_cast(&windowObject)); - QCOMPARE(windowObject.testService->outputControl->output(), QVideoOutputControl::WindowOutput); - QVERIFY(windowObject.testService->windowControl->winId() != 0); - - - widget.setMediaObject(&widgetObject); - QCOMPARE(widget.mediaObject(), static_cast(&widgetObject)); - QCOMPARE(widgetObject.testService->outputControl->output(), QVideoOutputControl::WidgetOutput); - - QCoreApplication::processEvents(QEventLoop::AllEvents); - QCOMPARE(widgetObject.testService->widgetControl->videoWidget()->isVisible(), true); - - QCOMPARE(windowObject.testService->outputControl->output(), QVideoOutputControl::NoOutput); - - widget.setMediaObject(&rendererObject); - QCOMPARE(widget.mediaObject(), static_cast(&rendererObject)); - QCOMPARE(rendererObject.testService->outputControl->output(), QVideoOutputControl::RendererOutput); - QVERIFY(rendererObject.testService->rendererControl->surface() != 0); - - QCOMPARE(widgetObject.testService->outputControl->output(), QVideoOutputControl::NoOutput); - - widget.setMediaObject(0); - QCOMPARE(widget.mediaObject(), nullObject); - - QCOMPARE(rendererObject.testService->outputControl->output(), QVideoOutputControl::NoOutput); -} - -void tst_QVideoWidget::showWindowControl() -{ - QtTestVideoObject object(new QtTestWindowControl, 0, 0); - object.testService->windowControl->setNativeSize(QSize(240, 180)); - - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - - QCOMPARE(object.testService->outputControl->output(), QVideoOutputControl::NoOutput); - - widget.show(); - QTest::qWaitForWindowShown(&widget); - - QCOMPARE(object.testService->outputControl->output(), QVideoOutputControl::WindowOutput); - QVERIFY(object.testService->windowControl->winId() != 0); - - QVERIFY(object.testService->windowControl->repaintCount() > 0); - - widget.resize(640, 480); - QCOMPARE(object.testService->windowControl->displayRect(), QRect(0, 0, 640, 480)); - - widget.move(10, 10); - QCOMPARE(object.testService->windowControl->displayRect(), QRect(0, 0, 640, 480)); - - widget.hide(); - - QCOMPARE(object.testService->outputControl->output(), QVideoOutputControl::WindowOutput); -} - -void tst_QVideoWidget::showWidgetControl() -{ - QtTestVideoObject object(0, new QtTestWidgetControl, 0); - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - - QCOMPARE(object.testService->outputControl->output(), QVideoOutputControl::NoOutput); - - widget.show(); - QTest::qWaitForWindowShown(&widget); - - QCOMPARE(object.testService->outputControl->output(), QVideoOutputControl::WidgetOutput); - QCOMPARE(object.testService->widgetControl->videoWidget()->isVisible(), true); - - widget.resize(640, 480); - - widget.move(10, 10); - - widget.hide(); - - QCOMPARE(object.testService->outputControl->output(), QVideoOutputControl::WidgetOutput); - QCOMPARE(object.testService->widgetControl->videoWidget()->isVisible(), false); -} - -void tst_QVideoWidget::showRendererControl() -{ - QtTestVideoObject object(0, 0, new QtTestRendererControl); - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - - QCOMPARE(object.testService->outputControl->output(), QVideoOutputControl::NoOutput); - - widget.show(); - QTest::qWaitForWindowShown(&widget); - - QCOMPARE(object.testService->outputControl->output(), QVideoOutputControl::RendererOutput); - QVERIFY(object.testService->rendererControl->surface() != 0); - - widget.resize(640, 480); - - widget.move(10, 10); - - widget.hide(); - - QCOMPARE(object.testService->outputControl->output(), QVideoOutputControl::RendererOutput); -} - -void tst_QVideoWidget::aspectRatioWindowControl() -{ - QtTestVideoObject object(new QtTestWindowControl, 0, 0); - object.testService->windowControl->setAspectRatioMode(Qt::IgnoreAspectRatio); - - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - - // Test the aspect ratio defaults to keeping the aspect ratio. - QCOMPARE(widget.aspectRatioMode(), Qt::KeepAspectRatio); - - // Test the control has been informed of the aspect ratio change, post show. - widget.show(); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(widget.aspectRatioMode(), Qt::KeepAspectRatio); - QCOMPARE(object.testService->windowControl->aspectRatioMode(), Qt::KeepAspectRatio); - - // Test an aspect ratio change is enforced immediately while visible. - widget.setAspectRatioMode(Qt::IgnoreAspectRatio); - QCOMPARE(widget.aspectRatioMode(), Qt::IgnoreAspectRatio); - QCOMPARE(object.testService->windowControl->aspectRatioMode(), Qt::IgnoreAspectRatio); - - // Test an aspect ratio set while not visible is respected. - widget.hide(); - widget.setAspectRatioMode(Qt::KeepAspectRatio); - QCOMPARE(widget.aspectRatioMode(), Qt::KeepAspectRatio); - widget.show(); - QCOMPARE(widget.aspectRatioMode(), Qt::KeepAspectRatio); - QCOMPARE(object.testService->windowControl->aspectRatioMode(), Qt::KeepAspectRatio); -} - -void tst_QVideoWidget::aspectRatioWidgetControl() -{ - QtTestVideoObject object(0, new QtTestWidgetControl, 0); - object.testService->widgetControl->setAspectRatioMode(Qt::IgnoreAspectRatio); - - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - - // Test the aspect ratio defaults to keeping the aspect ratio. - QCOMPARE(widget.aspectRatioMode(), Qt::KeepAspectRatio); - - // Test the control has been informed of the aspect ratio change, post show. - widget.show(); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(widget.aspectRatioMode(), Qt::KeepAspectRatio); - QCOMPARE(object.testService->widgetControl->aspectRatioMode(), Qt::KeepAspectRatio); - - // Test an aspect ratio change is enforced immediately while visible. - widget.setAspectRatioMode(Qt::IgnoreAspectRatio); - QCOMPARE(widget.aspectRatioMode(), Qt::IgnoreAspectRatio); - QCOMPARE(object.testService->widgetControl->aspectRatioMode(), Qt::IgnoreAspectRatio); - - // Test an aspect ratio set while not visible is respected. - widget.hide(); - widget.setAspectRatioMode(Qt::KeepAspectRatio); - QCOMPARE(widget.aspectRatioMode(), Qt::KeepAspectRatio); - widget.show(); - QCOMPARE(widget.aspectRatioMode(), Qt::KeepAspectRatio); - QCOMPARE(object.testService->widgetControl->aspectRatioMode(), Qt::KeepAspectRatio); -} - -void tst_QVideoWidget::aspectRatioRendererControl() -{ - QtTestVideoObject object(0, 0, new QtTestRendererControl); - - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - - // Test the aspect ratio defaults to keeping the aspect ratio. - QCOMPARE(widget.aspectRatioMode(), Qt::KeepAspectRatio); - - // Test the control has been informed of the aspect ratio change, post show. - widget.show(); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(widget.aspectRatioMode(), Qt::KeepAspectRatio); - - // Test an aspect ratio change is enforced immediately while visible. - widget.setAspectRatioMode(Qt::IgnoreAspectRatio); - QCOMPARE(widget.aspectRatioMode(), Qt::IgnoreAspectRatio); - - // Test an aspect ratio set while not visible is respected. - widget.hide(); - widget.setAspectRatioMode(Qt::KeepAspectRatio); - QCOMPARE(widget.aspectRatioMode(), Qt::KeepAspectRatio); - widget.show(); - QCOMPARE(widget.aspectRatioMode(), Qt::KeepAspectRatio); -} - -void tst_QVideoWidget::sizeHint_data() -{ - QTest::addColumn("size"); - - QTest::newRow("720x576") - << QSize(720, 576); -} - -void tst_QVideoWidget::sizeHintWindowControl() -{ - QFETCH(QSize, size); - - QtTestVideoObject object(new QtTestWindowControl, 0, 0); - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - widget.show(); - QTest::qWaitForWindowShown(&widget); - - QVERIFY(widget.sizeHint().isEmpty()); - - object.testService->windowControl->setNativeSize(size); - QCOMPARE(widget.sizeHint(), size); -} - -void tst_QVideoWidget::sizeHintWidgetControl() -{ - QFETCH(QSize, size); - - QtTestVideoObject object(0, new QtTestWidgetControl, 0); - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - widget.show(); - QTest::qWaitForWindowShown(&widget); - - QVERIFY(widget.sizeHint().isEmpty()); - - object.testService->widgetControl->setSizeHint(size); - QCOMPARE(widget.sizeHint(), size); -} - -void tst_QVideoWidget::sizeHintRendererControl_data() -{ - QTest::addColumn("frameSize"); - QTest::addColumn("viewport"); - QTest::addColumn("pixelAspectRatio"); - QTest::addColumn("expectedSize"); - - QTest::newRow("640x480") - << QSize(640, 480) - << QRect(0, 0, 640, 480) - << QSize(1, 1) - << QSize(640, 480); - - QTest::newRow("800x600, (80,60, 640x480) viewport") - << QSize(800, 600) - << QRect(80, 60, 640, 480) - << QSize(1, 1) - << QSize(640, 480); - - QTest::newRow("800x600, (80,60, 640x480) viewport, 4:3") - << QSize(800, 600) - << QRect(80, 60, 640, 480) - << QSize(4, 3) - << QSize(853, 480); - -} - -void tst_QVideoWidget::sizeHintRendererControl() -{ - QFETCH(QSize, frameSize); - QFETCH(QRect, viewport); - QFETCH(QSize, pixelAspectRatio); - QFETCH(QSize, expectedSize); - - QtTestVideoObject object(0, 0, new QtTestRendererControl); - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - - widget.show(); - QTest::qWaitForWindowShown(&widget); - - QVideoSurfaceFormat format(frameSize, QVideoFrame::Format_ARGB32); - format.setViewport(viewport); - format.setPixelAspectRatio(pixelAspectRatio); - - QVERIFY(object.testService->rendererControl->surface()->start(format)); - - QCOMPARE(widget.sizeHint(), expectedSize); -} - -#ifndef Q_WS_X11 - -void tst_QVideoWidget::fullScreenWindowControl() -{ - QtTestVideoObject object(new QtTestWindowControl, 0, 0); - QVideoWidget widget; - widget.setMediaObject(&object); - widget.show(); - QTest::qWaitForWindowShown(&widget); - - Qt::WindowFlags windowFlags = widget.windowFlags(); - - QSignalSpy spy(&widget, SIGNAL(fullScreenChanged(bool))); - - // Test showing full screen with setFullScreen(true). - widget.setFullScreen(true); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(object.testService->windowControl->isFullScreen(), true); - QCOMPARE(widget.isFullScreen(), true); - QCOMPARE(spy.count(), 1); - QCOMPARE(spy.value(0).value(0).toBool(), true); - - // Test returning to normal with setFullScreen(false). - widget.setFullScreen(false); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(object.testService->windowControl->isFullScreen(), false); - QCOMPARE(widget.isFullScreen(), false); - QCOMPARE(spy.count(), 2); - QCOMPARE(spy.value(1).value(0).toBool(), false); - QCOMPARE(widget.windowFlags(), windowFlags); - - // Test showing full screen with showFullScreen(). - widget.showFullScreen(); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(object.testService->windowControl->isFullScreen(), true); - QCOMPARE(widget.isFullScreen(), true); - QCOMPARE(spy.count(), 3); - QCOMPARE(spy.value(2).value(0).toBool(), true); - - // Test returning to normal with showNormal(). - widget.showNormal(); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(object.testService->windowControl->isFullScreen(), false); - QCOMPARE(widget.isFullScreen(), false); - QCOMPARE(spy.count(), 4); - QCOMPARE(spy.value(3).value(0).toBool(), false); - QCOMPARE(widget.windowFlags(), windowFlags); - - // Test setFullScreen(false) and showNormal() do nothing when isFullScreen() == false. - widget.setFullScreen(false); - QCOMPARE(object.testService->windowControl->isFullScreen(), false); - QCOMPARE(widget.isFullScreen(), false); - QCOMPARE(spy.count(), 4); - widget.showNormal(); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(object.testService->windowControl->isFullScreen(), false); - QCOMPARE(widget.isFullScreen(), false); - QCOMPARE(spy.count(), 4); - - // Test setFullScreen(true) and showFullScreen() do nothing when isFullScreen() == true. - widget.showFullScreen(); - QTest::qWaitForWindowShown(&widget); - widget.setFullScreen(true); - QCOMPARE(object.testService->windowControl->isFullScreen(), true); - QCOMPARE(widget.isFullScreen(), true); - QCOMPARE(spy.count(), 5); - widget.showFullScreen(); - QCOMPARE(object.testService->windowControl->isFullScreen(), true); - QCOMPARE(widget.isFullScreen(), true); - QCOMPARE(spy.count(), 5); - - // Test if the window control exits full screen mode, the widget follows suit. - object.testService->windowControl->setFullScreen(false); - QCOMPARE(widget.isFullScreen(), false); - QCOMPARE(spy.count(), 6); - QCOMPARE(spy.value(5).value(0).toBool(), false); - - // Test if the window control enters full screen mode, the widget does nothing. - object.testService->windowControl->setFullScreen(false); - QCOMPARE(widget.isFullScreen(), false); - QCOMPARE(spy.count(), 6); -} - -void tst_QVideoWidget::fullScreenWidgetControl() -{ - QtTestVideoObject object(0, new QtTestWidgetControl, 0); - QVideoWidget widget; - widget.setMediaObject(&object); - widget.show(); - QTest::qWaitForWindowShown(&widget); - - Qt::WindowFlags windowFlags = widget.windowFlags(); - - QSignalSpy spy(&widget, SIGNAL(fullScreenChanged(bool))); - - // Test showing full screen with setFullScreen(true). - widget.setFullScreen(true); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(object.testService->widgetControl->isFullScreen(), true); - QCOMPARE(widget.isFullScreen(), true); - QCOMPARE(spy.count(), 1); - QCOMPARE(spy.value(0).value(0).toBool(), true); - - // Test returning to normal with setFullScreen(false). - widget.setFullScreen(false); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(object.testService->widgetControl->isFullScreen(), false); - QCOMPARE(widget.isFullScreen(), false); - QCOMPARE(spy.count(), 2); - QCOMPARE(spy.value(1).value(0).toBool(), false); - QCOMPARE(widget.windowFlags(), windowFlags); - - // Test showing full screen with showFullScreen(). - widget.showFullScreen(); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(object.testService->widgetControl->isFullScreen(), true); - QCOMPARE(widget.isFullScreen(), true); - QCOMPARE(spy.count(), 3); - QCOMPARE(spy.value(2).value(0).toBool(), true); - - // Test returning to normal with showNormal(). - widget.showNormal(); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(object.testService->widgetControl->isFullScreen(), false); - QCOMPARE(widget.isFullScreen(), false); - QCOMPARE(spy.count(), 4); - QCOMPARE(spy.value(3).value(0).toBool(), false); - QCOMPARE(widget.windowFlags(), windowFlags); - - // Test setFullScreen(false) and showNormal() do nothing when isFullScreen() == false. - widget.setFullScreen(false); - QCOMPARE(object.testService->widgetControl->isFullScreen(), false); - QCOMPARE(widget.isFullScreen(), false); - QCOMPARE(spy.count(), 4); - widget.showNormal(); - QCOMPARE(object.testService->widgetControl->isFullScreen(), false); - QCOMPARE(widget.isFullScreen(), false); - QCOMPARE(spy.count(), 4); - - // Test setFullScreen(true) and showFullScreen() do nothing when isFullScreen() == true. - widget.showFullScreen(); - QTest::qWaitForWindowShown(&widget); - widget.setFullScreen(true); - QCOMPARE(object.testService->widgetControl->isFullScreen(), true); - QCOMPARE(widget.isFullScreen(), true); - QCOMPARE(spy.count(), 5); - widget.showFullScreen(); - QCOMPARE(object.testService->widgetControl->isFullScreen(), true); - QCOMPARE(widget.isFullScreen(), true); - QCOMPARE(spy.count(), 5); - - // Test if the window control exits full screen mode, the widget follows suit. - object.testService->widgetControl->setFullScreen(false); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(widget.isFullScreen(), false); - QCOMPARE(spy.count(), 6); - QCOMPARE(spy.value(5).value(0).toBool(), false); - - // Test if the window control enters full screen mode, the widget does nothing. - object.testService->widgetControl->setFullScreen(false); - QCOMPARE(widget.isFullScreen(), false); - QCOMPARE(spy.count(), 6); -} - - -void tst_QVideoWidget::fullScreenRendererControl() -{ - QtTestVideoObject object(0, 0, new QtTestRendererControl); - QVideoWidget widget; - widget.setMediaObject(&object); - widget.show(); - QTest::qWaitForWindowShown(&widget); - - Qt::WindowFlags windowFlags = widget.windowFlags(); - - QSignalSpy spy(&widget, SIGNAL(fullScreenChanged(bool))); - - // Test showing full screen with setFullScreen(true). - widget.setFullScreen(true); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(widget.isFullScreen(), true); - QCOMPARE(spy.count(), 1); - QCOMPARE(spy.value(0).value(0).toBool(), true); - - // Test returning to normal with setFullScreen(false). - widget.setFullScreen(false); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(widget.isFullScreen(), false); - QCOMPARE(spy.count(), 2); - QCOMPARE(spy.value(1).value(0).toBool(), false); - QCOMPARE(widget.windowFlags(), windowFlags); - - // Test showing full screen with showFullScreen(). - widget.showFullScreen(); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(widget.isFullScreen(), true); - QCOMPARE(spy.count(), 3); - QCOMPARE(spy.value(2).value(0).toBool(), true); - - // Test returning to normal with showNormal(). - widget.showNormal(); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(widget.isFullScreen(), false); - QCOMPARE(spy.count(), 4); - QCOMPARE(spy.value(3).value(0).toBool(), false); - QCOMPARE(widget.windowFlags(), windowFlags); - - // Test setFullScreen(false) and showNormal() do nothing when isFullScreen() == false. - widget.setFullScreen(false); - QCOMPARE(widget.isFullScreen(), false); - QCOMPARE(spy.count(), 4); - widget.showNormal(); - QCOMPARE(widget.isFullScreen(), false); - QCOMPARE(spy.count(), 4); - - // Test setFullScreen(true) and showFullScreen() do nothing when isFullScreen() == true. - widget.showFullScreen(); - QTest::qWaitForWindowShown(&widget); - widget.setFullScreen(true); - QCOMPARE(widget.isFullScreen(), true); - QCOMPARE(spy.count(), 5); - widget.showFullScreen(); - QCOMPARE(widget.isFullScreen(), true); - QCOMPARE(spy.count(), 5); -} - -#endif - -void tst_QVideoWidget::color_data() -{ - QTest::addColumn("controlValue"); - QTest::addColumn("value"); - QTest::addColumn("expectedValue"); - - QTest::newRow("12") - << 0 - << 12 - << 12; - QTest::newRow("-56") - << 87 - << -56 - << -56; - QTest::newRow("100") - << 32 - << 100 - << 100; - QTest::newRow("1294") - << 0 - << 1294 - << 100; - QTest::newRow("-102") - << 34 - << -102 - << -100; -} - -void tst_QVideoWidget::brightnessWindowControl() -{ - QFETCH(int, controlValue); - QFETCH(int, value); - QFETCH(int, expectedValue); - - QtTestVideoObject object(new QtTestWindowControl, 0, 0); - object.testService->windowControl->setBrightness(controlValue); - - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - widget.show(); - QTest::qWaitForWindowShown(&widget); - - // Test the video widget resets the controls starting brightness to the default. - QCOMPARE(widget.brightness(), 0); - - QSignalSpy spy(&widget, SIGNAL(brightnessChanged(int))); - - // Test the video widget sets the brightness value, bounded if necessary and emits a changed - // signal. - widget.setBrightness(value); - QCOMPARE(widget.brightness(), expectedValue); - QCOMPARE(object.testService->windowControl->brightness(), expectedValue); - QCOMPARE(spy.count(), 1); - QCOMPARE(spy.value(0).value(0).toInt(), expectedValue); - - // Test the changed signal isn't emitted if the value is unchanged. - widget.setBrightness(value); - QCOMPARE(widget.brightness(), expectedValue); - QCOMPARE(object.testService->windowControl->brightness(), expectedValue); - QCOMPARE(spy.count(), 1); - - // Test the changed signal is emitted if the brightness is changed internally. - object.testService->windowControl->setBrightness(controlValue); - QCOMPARE(widget.brightness(), controlValue); - QCOMPARE(spy.count(), 2); - QCOMPARE(spy.value(1).value(0).toInt(), controlValue); -} - -void tst_QVideoWidget::brightnessWidgetControl() -{ - QFETCH(int, controlValue); - QFETCH(int, value); - QFETCH(int, expectedValue); - - QtTestVideoObject object(0, new QtTestWidgetControl, 0); - object.testService->widgetControl->setBrightness(controlValue); - - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - - QCOMPARE(widget.brightness(), 0); - - widget.show(); - QTest::qWaitForWindowShown(&widget); - - QSignalSpy spy(&widget, SIGNAL(brightnessChanged(int))); - - widget.setBrightness(value); - QCOMPARE(widget.brightness(), expectedValue); - QCOMPARE(object.testService->widgetControl->brightness(), expectedValue); - QCOMPARE(spy.count(), 1); - QCOMPARE(spy.value(0).value(0).toInt(), expectedValue); - - widget.setBrightness(value); - QCOMPARE(widget.brightness(), expectedValue); - QCOMPARE(object.testService->widgetControl->brightness(), expectedValue); - QCOMPARE(spy.count(), 1); - - object.testService->widgetControl->setBrightness(controlValue); - QCOMPARE(widget.brightness(), controlValue); - QCOMPARE(spy.count(), 2); - QCOMPARE(spy.value(1).value(0).toInt(), controlValue); -} - -void tst_QVideoWidget::brightnessRendererControl() -{ - QFETCH(int, value); - QFETCH(int, expectedValue); - - QtTestVideoObject object(0, 0, new QtTestRendererControl); - - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - widget.show(); - QTest::qWaitForWindowShown(&widget); - - QSignalSpy spy(&widget, SIGNAL(brightnessChanged(int))); - - widget.setBrightness(value); - QCOMPARE(widget.brightness(), expectedValue); - QCOMPARE(spy.count(), 1); - QCOMPARE(spy.value(0).value(0).toInt(), expectedValue); - - widget.setBrightness(value); - QCOMPARE(widget.brightness(), expectedValue); - QCOMPARE(spy.count(), 1); -} - -void tst_QVideoWidget::contrastWindowControl() -{ - QFETCH(int, controlValue); - QFETCH(int, value); - QFETCH(int, expectedValue); - - QtTestVideoObject object(new QtTestWindowControl, 0, 0); - object.testService->windowControl->setContrast(controlValue); - - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - - QCOMPARE(widget.contrast(), 0); - - widget.show(); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(widget.contrast(), 0); - - QSignalSpy spy(&widget, SIGNAL(contrastChanged(int))); - - widget.setContrast(value); - QCOMPARE(widget.contrast(), expectedValue); - QCOMPARE(object.testService->windowControl->contrast(), expectedValue); - QCOMPARE(spy.count(), 1); - QCOMPARE(spy.value(0).value(0).toInt(), expectedValue); - - widget.setContrast(value); - QCOMPARE(widget.contrast(), expectedValue); - QCOMPARE(object.testService->windowControl->contrast(), expectedValue); - QCOMPARE(spy.count(), 1); - - object.testService->windowControl->setContrast(controlValue); - QCOMPARE(widget.contrast(), controlValue); - QCOMPARE(spy.count(), 2); - QCOMPARE(spy.value(1).value(0).toInt(), controlValue); -} - -void tst_QVideoWidget::contrastWidgetControl() -{ - QFETCH(int, controlValue); - QFETCH(int, value); - QFETCH(int, expectedValue); - - QtTestVideoObject object(0, new QtTestWidgetControl, 0); - object.testService->widgetControl->setContrast(controlValue); - - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - QCOMPARE(widget.contrast(), 0); - - widget.show(); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(widget.contrast(), 0); - - QSignalSpy spy(&widget, SIGNAL(contrastChanged(int))); - - widget.setContrast(value); - QCOMPARE(widget.contrast(), expectedValue); - QCOMPARE(object.testService->widgetControl->contrast(), expectedValue); - QCOMPARE(spy.count(), 1); - QCOMPARE(spy.value(0).value(0).toInt(), expectedValue); - - widget.setContrast(value); - QCOMPARE(widget.contrast(), expectedValue); - QCOMPARE(object.testService->widgetControl->contrast(), expectedValue); - QCOMPARE(spy.count(), 1); - - object.testService->widgetControl->setContrast(controlValue); - QCOMPARE(widget.contrast(), controlValue); - QCOMPARE(spy.count(), 2); - QCOMPARE(spy.value(1).value(0).toInt(), controlValue); -} - -void tst_QVideoWidget::contrastRendererControl() -{ - QFETCH(int, value); - QFETCH(int, expectedValue); - - QtTestVideoObject object(0, 0, new QtTestRendererControl); - - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - widget.show(); - QTest::qWaitForWindowShown(&widget); - - QSignalSpy spy(&widget, SIGNAL(contrastChanged(int))); - - widget.setContrast(value); - QCOMPARE(widget.contrast(), expectedValue); - QCOMPARE(spy.count(), 1); - QCOMPARE(spy.value(0).value(0).toInt(), expectedValue); - - widget.setContrast(value); - QCOMPARE(widget.contrast(), expectedValue); - QCOMPARE(spy.count(), 1); -} - -void tst_QVideoWidget::hueWindowControl() -{ - QFETCH(int, controlValue); - QFETCH(int, value); - QFETCH(int, expectedValue); - - QtTestVideoObject object(new QtTestWindowControl, 0, 0); - object.testService->windowControl->setHue(controlValue); - - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - QCOMPARE(widget.hue(), 0); - - widget.show(); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(widget.hue(), 0); - - QSignalSpy spy(&widget, SIGNAL(hueChanged(int))); - - widget.setHue(value); - QCOMPARE(widget.hue(), expectedValue); - QCOMPARE(object.testService->windowControl->hue(), expectedValue); - QCOMPARE(spy.count(), 1); - QCOMPARE(spy.value(0).value(0).toInt(), expectedValue); - - widget.setHue(value); - QCOMPARE(widget.hue(), expectedValue); - QCOMPARE(object.testService->windowControl->hue(), expectedValue); - QCOMPARE(spy.count(), 1); - - object.testService->windowControl->setHue(controlValue); - QCOMPARE(widget.hue(), controlValue); - QCOMPARE(spy.count(), 2); - QCOMPARE(spy.value(1).value(0).toInt(), controlValue); -} - -void tst_QVideoWidget::hueWidgetControl() -{ - QFETCH(int, controlValue); - QFETCH(int, value); - QFETCH(int, expectedValue); - - QtTestVideoObject object(0, new QtTestWidgetControl, 0); - object.testService->widgetControl->setHue(controlValue); - - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - QCOMPARE(widget.hue(), 0); - - widget.show(); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(widget.hue(), 0); - - QSignalSpy spy(&widget, SIGNAL(hueChanged(int))); - - widget.setHue(value); - QCOMPARE(widget.hue(), expectedValue); - QCOMPARE(object.testService->widgetControl->hue(), expectedValue); - QCOMPARE(spy.count(), 1); - QCOMPARE(spy.value(0).value(0).toInt(), expectedValue); - - widget.setHue(value); - QCOMPARE(widget.hue(), expectedValue); - QCOMPARE(object.testService->widgetControl->hue(), expectedValue); - QCOMPARE(spy.count(), 1); - - object.testService->widgetControl->setHue(controlValue); - QCOMPARE(widget.hue(), controlValue); - QCOMPARE(spy.count(), 2); - QCOMPARE(spy.value(1).value(0).toInt(), controlValue); -} - -void tst_QVideoWidget::hueRendererControl() -{ - QFETCH(int, value); - QFETCH(int, expectedValue); - - QtTestVideoObject object(0, 0, new QtTestRendererControl); - - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - widget.show(); - QTest::qWaitForWindowShown(&widget); - - QSignalSpy spy(&widget, SIGNAL(hueChanged(int))); - - widget.setHue(value); - QCOMPARE(widget.hue(), expectedValue); - QCOMPARE(spy.count(), 1); - QCOMPARE(spy.value(0).value(0).toInt(), expectedValue); - - widget.setHue(value); - QCOMPARE(widget.hue(), expectedValue); - QCOMPARE(spy.count(), 1); -} - -void tst_QVideoWidget::saturationWindowControl() -{ - QFETCH(int, controlValue); - QFETCH(int, value); - QFETCH(int, expectedValue); - - QtTestVideoObject object(new QtTestWindowControl, 0, 0); - object.testService->windowControl->setSaturation(controlValue); - - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - QCOMPARE(widget.saturation(), 0); - widget.show(); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(widget.saturation(), 0); - - QSignalSpy spy(&widget, SIGNAL(saturationChanged(int))); - - widget.setSaturation(value); - QCOMPARE(widget.saturation(), expectedValue); - QCOMPARE(object.testService->windowControl->saturation(), expectedValue); - QCOMPARE(spy.count(), 1); - QCOMPARE(spy.value(0).value(0).toInt(), expectedValue); - - widget.setSaturation(value); - QCOMPARE(widget.saturation(), expectedValue); - QCOMPARE(object.testService->windowControl->saturation(), expectedValue); - QCOMPARE(spy.count(), 1); - - object.testService->windowControl->setSaturation(controlValue); - QCOMPARE(widget.saturation(), controlValue); - QCOMPARE(spy.count(), 2); - QCOMPARE(spy.value(1).value(0).toInt(), controlValue); -} - -void tst_QVideoWidget::saturationWidgetControl() -{ - QFETCH(int, controlValue); - QFETCH(int, value); - QFETCH(int, expectedValue); - - QtTestVideoObject object(0, new QtTestWidgetControl, 0); - object.testService->widgetControl->setSaturation(controlValue); - - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - - QCOMPARE(widget.saturation(), 0); - widget.show(); - QTest::qWaitForWindowShown(&widget); - QCOMPARE(widget.saturation(), 0); - - QSignalSpy spy(&widget, SIGNAL(saturationChanged(int))); - - widget.setSaturation(value); - QCOMPARE(widget.saturation(), expectedValue); - QCOMPARE(object.testService->widgetControl->saturation(), expectedValue); - QCOMPARE(spy.count(), 1); - QCOMPARE(spy.value(0).value(0).toInt(), expectedValue); - - widget.setSaturation(value); - QCOMPARE(widget.saturation(), expectedValue); - QCOMPARE(object.testService->widgetControl->saturation(), expectedValue); - QCOMPARE(spy.count(), 1); - - object.testService->widgetControl->setSaturation(controlValue); - QCOMPARE(widget.saturation(), controlValue); - QCOMPARE(spy.count(), 2); - QCOMPARE(spy.value(1).value(0).toInt(), controlValue); - -} - -void tst_QVideoWidget::saturationRendererControl() -{ - QFETCH(int, value); - QFETCH(int, expectedValue); - - QtTestVideoObject object(0, 0, new QtTestRendererControl); - - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - widget.show(); - QTest::qWaitForWindowShown(&widget); - QSignalSpy spy(&widget, SIGNAL(saturationChanged(int))); - - widget.setSaturation(value); - QCOMPARE(widget.saturation(), expectedValue); - QCOMPARE(spy.count(), 1); - QCOMPARE(spy.value(0).value(0).toInt(), expectedValue); - - widget.setSaturation(value); - QCOMPARE(widget.saturation(), expectedValue); - QCOMPARE(spy.count(), 1); -} - -static const uchar rgb32ImageData[] = -{ - 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0xff, 0x00, - 0x00, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00 -}; - -void tst_QVideoWidget::paintRendererControl() -{ - QtTestVideoObject object(0, 0, new QtTestRendererControl); - - QVideoWidget widget; - widget.setMediaObject(&object); - widget.setWindowFlags(Qt::X11BypassWindowManagerHint); - widget.show(); - QTest::qWaitForWindowShown(&widget); - - QPainterVideoSurface *surface = qobject_cast( - object.testService->rendererControl->surface()); - - QVideoSurfaceFormat format(QSize(2, 2), QVideoFrame::Format_RGB32); - - QVERIFY(surface->start(format)); - QCOMPARE(surface->isActive(), true); - QCOMPARE(surface->isReady(), true); - - QCoreApplication::processEvents(QEventLoop::AllEvents); - - QCOMPARE(surface->isActive(), true); - QCOMPARE(surface->isReady(), true); - - QVideoFrame frame(sizeof(rgb32ImageData), QSize(2, 2), 8, QVideoFrame::Format_RGB32); - - frame.map(QAbstractVideoBuffer::WriteOnly); - memcpy(frame.bits(), rgb32ImageData, frame.mappedBytes()); - frame.unmap(); - - QVERIFY(surface->present(frame)); - QCOMPARE(surface->isActive(), true); - QCOMPARE(surface->isReady(), false); - - //wait up to 2 seconds for the frame to be presented - for (int i=0; i<200 && !surface->isReady(); i++) - QTest::qWait(10); - - QCOMPARE(surface->isActive(), true); - QCOMPARE(surface->isReady(), true); -} - -QTEST_MAIN(tst_QVideoWidget) - -#include "tst_qvideowidget.moc" -- cgit v1.2.1 From 273024e58d90bb9b3a5da0161f884f1af22d75df Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Tue, 18 May 2010 10:43:25 +1000 Subject: Use QDeclarativeScriptString for ParentChange. So that scope resolution is correct, e.g. "width: parent.width-10;" in a ParentChange works correctly. Task-number: QTBUG-10675 --- .../qdeclarativelanguage/data/scriptString.3.qml | 5 + .../qdeclarativelanguage/data/scriptString.4.qml | 5 + .../qdeclarativelanguage/data/scriptString.5.qml | 5 + .../tst_qdeclarativelanguage.cpp | 53 +- .../parentAnimation2/data/parentAnimation2.0.png | Bin 0 -> 2046 bytes .../parentAnimation2/data/parentAnimation2.1.png | Bin 0 -> 2059 bytes .../parentAnimation2/data/parentAnimation2.2.png | Bin 0 -> 2052 bytes .../parentAnimation2/data/parentAnimation2.3.png | Bin 0 -> 2011 bytes .../parentAnimation2/data/parentAnimation2.qml | 1023 ++++++++++++++++++++ .../parentAnimation2/parentAnimation2.qml | 64 ++ tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp | 1 + 11 files changed, 1144 insertions(+), 12 deletions(-) create mode 100644 tests/auto/declarative/qdeclarativelanguage/data/scriptString.3.qml create mode 100644 tests/auto/declarative/qdeclarativelanguage/data/scriptString.4.qml create mode 100644 tests/auto/declarative/qdeclarativelanguage/data/scriptString.5.qml create mode 100644 tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.0.png create mode 100644 tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.1.png create mode 100644 tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.2.png create mode 100644 tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.3.png create mode 100644 tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.qml create mode 100644 tests/auto/declarative/qmlvisual/animation/parentAnimation2/parentAnimation2.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativelanguage/data/scriptString.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/scriptString.3.qml new file mode 100644 index 0000000000..0de366747a --- /dev/null +++ b/tests/auto/declarative/qdeclarativelanguage/data/scriptString.3.qml @@ -0,0 +1,5 @@ +import Test 1.0 + +MyTypeObject { + scriptProperty: "hello world" +} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/scriptString.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/scriptString.4.qml new file mode 100644 index 0000000000..0cd82ff58f --- /dev/null +++ b/tests/auto/declarative/qdeclarativelanguage/data/scriptString.4.qml @@ -0,0 +1,5 @@ +import Test 1.0 + +MyTypeObject { + scriptProperty: 12.345 +} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/scriptString.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/scriptString.5.qml new file mode 100644 index 0000000000..3e2f9a49f1 --- /dev/null +++ b/tests/auto/declarative/qdeclarativelanguage/data/scriptString.5.qml @@ -0,0 +1,5 @@ +import Test 1.0 + +MyTypeObject { + scriptProperty: true +} diff --git a/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp b/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp index 6b070f5231..4434e46dbd 100644 --- a/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp +++ b/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp @@ -1105,19 +1105,48 @@ void tst_qdeclarativelanguage::onDestruction() // Check that assignments to QDeclarativeScriptString properties work void tst_qdeclarativelanguage::scriptString() { - QDeclarativeComponent component(&engine, TEST_FILE("scriptString.qml")); - VERIFY_ERRORS(0); + { + QDeclarativeComponent component(&engine, TEST_FILE("scriptString.qml")); + VERIFY_ERRORS(0); - MyTypeObject *object = qobject_cast(component.create()); - QVERIFY(object != 0); - QCOMPARE(object->scriptProperty().script(), QString("foo + bar")); - QCOMPARE(object->scriptProperty().scopeObject(), qobject_cast(object)); - QCOMPARE(object->scriptProperty().context(), qmlContext(object)); - - QVERIFY(object->grouped() != 0); - QCOMPARE(object->grouped()->script().script(), QString("console.log(1921)")); - QCOMPARE(object->grouped()->script().scopeObject(), qobject_cast(object)); - QCOMPARE(object->grouped()->script().context(), qmlContext(object)); + MyTypeObject *object = qobject_cast(component.create()); + QVERIFY(object != 0); + QCOMPARE(object->scriptProperty().script(), QString("foo + bar")); + QCOMPARE(object->scriptProperty().scopeObject(), qobject_cast(object)); + QCOMPARE(object->scriptProperty().context(), qmlContext(object)); + + QVERIFY(object->grouped() != 0); + QCOMPARE(object->grouped()->script().script(), QString("console.log(1921)")); + QCOMPARE(object->grouped()->script().scopeObject(), qobject_cast(object)); + QCOMPARE(object->grouped()->script().context(), qmlContext(object)); + } + + { + QDeclarativeComponent component(&engine, TEST_FILE("scriptString3.qml")); + VERIFY_ERRORS(0); + + MyTypeObject *object = qobject_cast(component.create()); + QVERIFY(object != 0); + QCOMPARE(object->scriptProperty().script(), QString("\"hello world\"")); + } + + { + QDeclarativeComponent component(&engine, TEST_FILE("scriptString4.qml")); + VERIFY_ERRORS(0); + + MyTypeObject *object = qobject_cast(component.create()); + QVERIFY(object != 0); + QCOMPARE(object->scriptProperty().script(), QString("12.345")); + } + + { + QDeclarativeComponent component(&engine, TEST_FILE("scriptString5.qml")); + VERIFY_ERRORS(0); + + MyTypeObject *object = qobject_cast(component.create()); + QVERIFY(object != 0); + QCOMPARE(object->scriptProperty().script(), QString("true")); + } } // Check that default property assignments are correctly spliced into explicit diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.0.png b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.0.png new file mode 100644 index 0000000000..135911c2fa Binary files /dev/null and b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.0.png differ diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.1.png b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.1.png new file mode 100644 index 0000000000..0d71292023 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.1.png differ diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.2.png b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.2.png new file mode 100644 index 0000000000..920d992319 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.2.png differ diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.3.png b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.3.png new file mode 100644 index 0000000000..1c4d89e2bb Binary files /dev/null and b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.3.png differ diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.qml b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.qml new file mode 100644 index 0000000000..9e1b923867 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.qml @@ -0,0 +1,1023 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 32 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 48 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 64 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 80 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 96 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 112 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 128 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 144 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 160 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 176 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 192 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 208 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 224 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 240 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 256 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 272 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 288 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 304 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 320 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 336 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 352 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 368 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 384 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 400 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 416 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 432 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 448 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 464 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 480 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 496 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 512 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 528 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 544 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 560 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 576 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 592 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 608 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 624 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 640 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 656 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 672 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 688 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 704 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 350; y: 182 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 720 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 736 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 752 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 768 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 784 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 800 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 350; y: 182 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 816 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 832 + hash: "9b524b546d250d239ea99dd3319f3d6a" + } + Frame { + msec: 848 + hash: "593300f166c2fd3c325cb35114ca595b" + } + Frame { + msec: 864 + hash: "4451e76e111c99faa77b5fff9a2642fa" + } + Frame { + msec: 880 + hash: "0b4a5675afba935e17eba19e29b709ee" + } + Frame { + msec: 896 + hash: "8682866f0234eebf25aca27a7737c777" + } + Frame { + msec: 912 + hash: "5b3b70dd366bb4c1b5e7d56ce50e59a6" + } + Frame { + msec: 928 + hash: "897394982c93ebcbea68c25cec6d47d3" + } + Frame { + msec: 944 + hash: "23c3c0383a517d33767adeebc53bfa3a" + } + Frame { + msec: 960 + image: "parentAnimation2.0.png" + } + Frame { + msec: 976 + hash: "95b4fe1e5eeffe1673e199308e8ce76c" + } + Frame { + msec: 992 + hash: "dbb9a5aa9f569b97711aa2c1f5ebda47" + } + Frame { + msec: 1008 + hash: "0a5a73409b019e650ea860e1a8e27328" + } + Frame { + msec: 1024 + hash: "496bd0d053522bcf71d506b497ede0d5" + } + Frame { + msec: 1040 + hash: "97a32b4a6c99ffe842c35e903bd23d79" + } + Frame { + msec: 1056 + hash: "496dfbbb0c0c28e108adf4c25341ef11" + } + Frame { + msec: 1072 + hash: "aa2e5eb88b1498f0d36897be2a36b0ff" + } + Frame { + msec: 1088 + hash: "0c6f7b54264ab36cfd5145fb7b30432f" + } + Frame { + msec: 1104 + hash: "797fc3ea1db51f12d900b4e0e4998065" + } + Frame { + msec: 1120 + hash: "2b076b8bc1ec1e2f21a4d7a77c94cfeb" + } + Frame { + msec: 1136 + hash: "8d5888ca1cfba19cea569bd38bada417" + } + Frame { + msec: 1152 + hash: "15ae94de5aa106eaa18d0faefa5d61f5" + } + Frame { + msec: 1168 + hash: "96e90d74d5a7788d5a6da6cfdb92b185" + } + Frame { + msec: 1184 + hash: "5698a5e9e628209fc28644198eac65da" + } + Frame { + msec: 1200 + hash: "074ac8f08de8f22c241e23ad8b89b0f0" + } + Frame { + msec: 1216 + hash: "a49fdf41e9ee1e5d764262d4585af2ff" + } + Frame { + msec: 1232 + hash: "accc9b6573a676a40fcf0129085f6fce" + } + Frame { + msec: 1248 + hash: "1cc956d55f0c382c2f74dcc05a05494f" + } + Frame { + msec: 1264 + hash: "38ff3121566b2c719f47d027fcef8b8e" + } + Frame { + msec: 1280 + hash: "4de97b3361a16ca1710f2e75d5c9de6f" + } + Frame { + msec: 1296 + hash: "dbd1455105630bb8f262140e79ceda1b" + } + Frame { + msec: 1312 + hash: "bcdac4ab71a29b78bfa756b56b8d8414" + } + Frame { + msec: 1328 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1344 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1360 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1376 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1392 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1408 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1424 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1440 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1456 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1472 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1488 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1504 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1520 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1536 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1552 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1568 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1584 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1600 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1616 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1632 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1648 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1664 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1680 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1696 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1712 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 415; y: 121 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 1728 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1744 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1760 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1776 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1792 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1808 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1824 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 415; y: 121 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 1840 + hash: "f02f73a85532c1dd403d64c50c7e73ca" + } + Frame { + msec: 1856 + hash: "b59fbcfb7db77cf30ea4ff039a9163ae" + } + Frame { + msec: 1872 + hash: "432a76f0663bfd35f6bbeb3fbeb91799" + } + Frame { + msec: 1888 + hash: "098e18005d3a2ff9095587954c92339c" + } + Frame { + msec: 1904 + hash: "069100bf4ec523a9e9d5bf557ffc51d1" + } + Frame { + msec: 1920 + image: "parentAnimation2.1.png" + } + Frame { + msec: 1936 + hash: "60ed700e49bf2c51aba9b44400b56294" + } + Frame { + msec: 1952 + hash: "79aa15dc74668d963f36f28524f4d091" + } + Frame { + msec: 1968 + hash: "6838cb2d728259adc8d91a4a69e35adf" + } + Frame { + msec: 1984 + hash: "3f73c720ce5f1e65fb8537a9beb66d26" + } + Frame { + msec: 2000 + hash: "95d990ccd3e45e780d875aae1f4654f8" + } + Frame { + msec: 2016 + hash: "5389a121571f61e73903305860e60016" + } + Frame { + msec: 2032 + hash: "66f0018b6f35c1c18b28f4959eef96a8" + } + Frame { + msec: 2048 + hash: "c0fa0560a9a5a0f773394c4fd98c9fa3" + } + Frame { + msec: 2064 + hash: "e2d665ae0ac3007520003bb4a24ca708" + } + Frame { + msec: 2080 + hash: "ab6e6976e4214c725f71a4f0ba6d3f68" + } + Frame { + msec: 2096 + hash: "642f48f731f896d0d4b66956485b615b" + } + Frame { + msec: 2112 + hash: "cdc36222978e4361dd3ddc2cba78328d" + } + Frame { + msec: 2128 + hash: "22fe869d83d9d290c4d1702e7553c7aa" + } + Frame { + msec: 2144 + hash: "3cf2b6a4fd5c73c24717a1ce901cfb19" + } + Frame { + msec: 2160 + hash: "ea7ecad2a9b7e6ca9a9d1c9c46e0f6dc" + } + Frame { + msec: 2176 + hash: "3a7e7e2145b40732ef4e18218a959536" + } + Frame { + msec: 2192 + hash: "1386046373ab246ae533aba206ffe502" + } + Frame { + msec: 2208 + hash: "2183072e2117c2bc660767bc67e6c355" + } + Frame { + msec: 2224 + hash: "659c6fedf573d19727f9852a9034e4fe" + } + Frame { + msec: 2240 + hash: "5be4e8fa87593aeb4d59768a61441c37" + } + Frame { + msec: 2256 + hash: "2030b883508d07735b20726d218fd751" + } + Frame { + msec: 2272 + hash: "fd70334fa8a1ff80369cce6aa69255c4" + } + Frame { + msec: 2288 + hash: "be666aafc8a3d2de9ffaff54d9ac15d1" + } + Frame { + msec: 2304 + hash: "3370f2246f679068e40cdb48c92decad" + } + Frame { + msec: 2320 + hash: "f0b4565fd441c071112bdc8225861f76" + } + Frame { + msec: 2336 + hash: "61babd82afc20a3023c2fe483a2e73cb" + } + Frame { + msec: 2352 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2368 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2384 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2400 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2416 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2432 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2448 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2464 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2480 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2496 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2512 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2528 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2544 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2560 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2576 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2592 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2608 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2624 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2640 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2656 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2672 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2688 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2704 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2720 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2736 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2752 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2768 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 207; y: 255 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 2784 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2800 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2816 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2832 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2848 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2864 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2880 + image: "parentAnimation2.2.png" + } + Frame { + msec: 2896 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 207; y: 255 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 2912 + hash: "acab4a79f22ebc8a45759ae282e8f3db" + } + Frame { + msec: 2928 + hash: "608af88c841d6058c3304cc134de0187" + } + Frame { + msec: 2944 + hash: "96a727d6ff02c7baf85865fda9d871bd" + } + Frame { + msec: 2960 + hash: "22cacf109e40b457041d6c2862c4f97f" + } + Frame { + msec: 2976 + hash: "ea2a53381eef8ac75fce23c518f1e261" + } + Frame { + msec: 2992 + hash: "a719237e74e9c40b46cc1f27cca5e286" + } + Frame { + msec: 3008 + hash: "804ef3519ba9852afb0bd4ef793e0006" + } + Frame { + msec: 3024 + hash: "4abc5026f0de1165717bd14630c9d9f6" + } + Frame { + msec: 3040 + hash: "1e4dd04698691932725076073a0bd2e7" + } + Frame { + msec: 3056 + hash: "12aae9dcfd9597ce600588b19bdf5a7d" + } + Frame { + msec: 3072 + hash: "9176b69f7df68d860b7d7aecc2496f09" + } + Frame { + msec: 3088 + hash: "9cba95a510685ab6367ba87246f6c922" + } + Frame { + msec: 3104 + hash: "33ef448b9485fafb7a2af319f9f6e816" + } + Frame { + msec: 3120 + hash: "791760db748e46aceb9f469c33b7bf2f" + } + Frame { + msec: 3136 + hash: "201a00feef1bb445f2fd0ba8ef9467a1" + } + Frame { + msec: 3152 + hash: "6e8962c3cb522f5a45b093f1780d2dae" + } + Frame { + msec: 3168 + hash: "d75cb08203a4f2c05b4dfdca2196e3db" + } + Frame { + msec: 3184 + hash: "0417d681c9b64e2cc252ab6fcf20148b" + } + Frame { + msec: 3200 + hash: "85993e5a91a86cedb8c88819b035b6bb" + } + Frame { + msec: 3216 + hash: "d7a0db647e641df9625b8eb5078a8ec3" + } + Frame { + msec: 3232 + hash: "fa29824ed3fd3d4e0d8036079be6bcf8" + } + Frame { + msec: 3248 + hash: "4fc84a3ae74bb6ab7b0b846c8747eb54" + } + Frame { + msec: 3264 + hash: "a172921ffe15077382db8e8915fb340b" + } + Frame { + msec: 3280 + hash: "480ee71d2407d729814a2e19d4320c59" + } + Frame { + msec: 3296 + hash: "b8cf02a1ad96d5c3354f2b658085ed28" + } + Frame { + msec: 3312 + hash: "80fc0f57f58250f63a77b1988a9e1d2e" + } + Frame { + msec: 3328 + hash: "bc283b5d7c5b88ef447be5992a77b6a9" + } + Frame { + msec: 3344 + hash: "89c86df88dc1a3188d52c1f75b80ccf1" + } + Frame { + msec: 3360 + hash: "84148139d89b45949561321bd6f6c835" + } + Frame { + msec: 3376 + hash: "9118d6933b3f77e0b5b8da2d630152e8" + } + Frame { + msec: 3392 + hash: "2b5f746225053778fb07a606ff113e64" + } + Frame { + msec: 3408 + hash: "0a1ed1bea6ed674826d0a2c3146a1c31" + } + Frame { + msec: 3424 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3440 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3456 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3472 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3488 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3504 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3520 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3536 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3552 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3568 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3584 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3600 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3616 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3632 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3648 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Key { + type: 6 + key: 16777249 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3664 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3680 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3696 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3712 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3728 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3744 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3760 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3776 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3792 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3808 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3824 + hash: "b3bfd7a06d3e246f4256ab5a267360b0" + } + Frame { + msec: 3840 + image: "parentAnimation2.3.png" + } +} diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/parentAnimation2.qml b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/parentAnimation2.qml new file mode 100644 index 0000000000..dfab108abf --- /dev/null +++ b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/parentAnimation2.qml @@ -0,0 +1,64 @@ +import Qt 4.7 + +/* +Blue rect fills (with 10px margin) screen, then red, then green, then screen again. +*/ + +Rectangle { + id: whiteRect + width: 640; height: 480; + + Rectangle { + id: redRect + x: 400; y: 50 + width: 100; height: 100 + color: "red" + } + + Rectangle { + id: greenRect + x: 100; y: 150 + width: 200; height: 300 + color: "green" + } + + Rectangle { + id: blueRect + x: 5; y: 5 + width: parent.width-10 + height: parent.height-10 + color: "lightblue" + + //Text { text: "Click me!"; anchors.centerIn: parent } + + MouseArea { + anchors.fill: parent + onClicked: { + switch(blueRect.state) { + case "": blueRect.state = "inRed"; break; + case "inRed": blueRect.state = "inGreen"; break; + case "inGreen": blueRect.state = ""; break; + } + } + } + + states: [ + State { + name: "inRed" + ParentChange { target: blueRect; parent: redRect; x: 5; y: 5; width: parent.width-10; height: parent.height-10 } + PropertyChanges { target: redRect; z: 1 } + }, + State { + name: "inGreen" + ParentChange { target: blueRect; parent: greenRect; x: 5; y: 5; width: parent.width-10; height: parent.height-10 } + PropertyChanges { target: greenRect; z: 1 } + } + ] + + transitions: Transition { + ParentAnimation { target: blueRect; //via: whiteRect; + NumberAnimation { properties: "x, y, width, height"; duration: 500 } + } + } + } +} diff --git a/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp b/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp index 4aad29be60..f105692c52 100644 --- a/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp +++ b/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp @@ -105,6 +105,7 @@ void tst_qmlvisual::visual_data() files << QT_TEST_SOURCE_DIR "/qdeclarativeborderimage/animated.qml"; files << QT_TEST_SOURCE_DIR "/qdeclarativeflipable/test-flipable.qml"; files << QT_TEST_SOURCE_DIR "/qdeclarativepositioners/usingRepeater.qml"; + files << QT_TEST_SOURCE_DIR "/animation/parentAnimation2/parentAnimation2.qml"; //these are tests we think are stable and useful enough to be run by the CI system files << QT_TEST_SOURCE_DIR "/animation/bindinganimation/bindinganimation.qml"; -- cgit v1.2.1 From f784d8f70d864c89c778ce3c0951d51260857523 Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Tue, 18 May 2010 12:26:56 +1000 Subject: Round correctly in binding optimizer QTBUG-9538 --- .../qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp index 64e5b3f7b6..0710e152d9 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp +++ b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp @@ -2083,10 +2083,9 @@ void tst_qdeclarativeecmascript::compiled() QCOMPARE(object->property("test15").toBool(), false); QCOMPARE(object->property("test16").toBool(), true); - QCOMPARE(object->property("test17").toInt(), 4); + QCOMPARE(object->property("test17").toInt(), 5); QCOMPARE(object->property("test18").toReal(), qreal(176)); - QEXPECT_FAIL("", "QTBUG-9538", Continue); - QCOMPARE(object->property("test19").toInt(), 6); + QCOMPARE(object->property("test19").toInt(), 7); QCOMPARE(object->property("test20").toReal(), qreal(6.7)); QCOMPARE(object->property("test21").toString(), QLatin1String("6.7")); QCOMPARE(object->property("test22").toString(), QLatin1String("!")); -- cgit v1.2.1 From 54c6a0101ba2bf3910126c53738e337712e5bb9a Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Tue, 18 May 2010 11:42:46 +1000 Subject: Add parent parameter to QDeclarativeExpression constructor. Also rearrange the parameter order to be more clear. --- .../auto/declarative/qdeclarativecontext/tst_qdeclarativecontext.cpp | 2 +- tests/auto/declarative/qdeclarativeecmascript/testtypes.h | 2 +- tests/auto/declarative/qdeclarativeimage/tst_qdeclarativeimage.cpp | 2 +- .../declarative/qdeclarativelistmodel/tst_qdeclarativelistmodel.cpp | 4 ++-- .../declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp | 2 +- .../declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp | 2 +- .../qdeclarativevisualdatamodel/tst_qdeclarativevisualdatamodel.cpp | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativecontext/tst_qdeclarativecontext.cpp b/tests/auto/declarative/qdeclarativecontext/tst_qdeclarativecontext.cpp index 851460f30e..7f0e6c07af 100644 --- a/tests/auto/declarative/qdeclarativecontext/tst_qdeclarativecontext.cpp +++ b/tests/auto/declarative/qdeclarativecontext/tst_qdeclarativecontext.cpp @@ -398,7 +398,7 @@ void tst_qdeclarativecontext::destruction() QObject obj; QDeclarativeEngine::setContextForObject(&obj, ctxt); - QDeclarativeExpression expr(ctxt, "a", 0); + QDeclarativeExpression expr(ctxt, 0, "a"); QCOMPARE(ctxt, QDeclarativeEngine::contextForObject(&obj)); QCOMPARE(ctxt, expr.context()); diff --git a/tests/auto/declarative/qdeclarativeecmascript/testtypes.h b/tests/auto/declarative/qdeclarativeecmascript/testtypes.h index 1381d571cd..7bb8a8e745 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/testtypes.h +++ b/tests/auto/declarative/qdeclarativeecmascript/testtypes.h @@ -190,7 +190,7 @@ class MyExpression : public QDeclarativeExpression Q_OBJECT public: MyExpression(QDeclarativeContext *ctxt, const QString &expr) - : QDeclarativeExpression(ctxt, expr, 0), changed(false) + : QDeclarativeExpression(ctxt, 0, expr), changed(false) { QObject::connect(this, SIGNAL(valueChanged()), this, SLOT(expressionValueChanged())); setNotifyOnValueChanged(true); diff --git a/tests/auto/declarative/qdeclarativeimage/tst_qdeclarativeimage.cpp b/tests/auto/declarative/qdeclarativeimage/tst_qdeclarativeimage.cpp index e0143a6510..720702a82a 100644 --- a/tests/auto/declarative/qdeclarativeimage/tst_qdeclarativeimage.cpp +++ b/tests/auto/declarative/qdeclarativeimage/tst_qdeclarativeimage.cpp @@ -400,7 +400,7 @@ T *tst_qdeclarativeimage::findItem(QGraphicsObject *parent, const QString &objec //qDebug() << "try" << item; if (mo.cast(item) && (objectName.isEmpty() || item->objectName() == objectName)) { if (index != -1) { - QDeclarativeExpression e(qmlContext(item), "index", item); + QDeclarativeExpression e(qmlContext(item), item, "index"); if (e.evaluate().toInt() == index) return static_cast(item); } else { diff --git a/tests/auto/declarative/qdeclarativelistmodel/tst_qdeclarativelistmodel.cpp b/tests/auto/declarative/qdeclarativelistmodel/tst_qdeclarativelistmodel.cpp index 26a12f05c9..be4ffe829b 100644 --- a/tests/auto/declarative/qdeclarativelistmodel/tst_qdeclarativelistmodel.cpp +++ b/tests/auto/declarative/qdeclarativelistmodel/tst_qdeclarativelistmodel.cpp @@ -275,7 +275,7 @@ void tst_qdeclarativelistmodel::dynamic() QDeclarativeListModel model; QDeclarativeEngine::setContextForObject(&model,engine.rootContext()); engine.rootContext()->setContextObject(&model); - QDeclarativeExpression e(engine.rootContext(), script, &model); + QDeclarativeExpression e(engine.rootContext(), &model, script); if (!warning.isEmpty()) QTest::ignoreMessage(QtWarningMsg, warning.toLatin1()); @@ -332,7 +332,7 @@ void tst_qdeclarativelistmodel::dynamic_worker() Q_ARG(QVariant, operations.mid(0, operations.length()-1)))); waitForWorker(item); - QDeclarativeExpression e(eng.rootContext(), operations.last().toString(), &model); + QDeclarativeExpression e(eng.rootContext(), &model, operations.last().toString()); if (QByteArray(QTest::currentDataTag()).startsWith("nested")) QVERIFY(e.evaluate().toInt() != result); else diff --git a/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp b/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp index ec2afaecc9..fde2e43c44 100644 --- a/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp +++ b/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp @@ -1550,7 +1550,7 @@ T *tst_QDeclarativeListView::findItem(QGraphicsObject *parent, const QString &ob //qDebug() << "try" << item; if (mo.cast(item) && (objectName.isEmpty() || item->objectName() == objectName)) { if (index != -1) { - QDeclarativeExpression e(qmlContext(item), "index", item); + QDeclarativeExpression e(qmlContext(item), item, "index"); if (e.evaluate().toInt() == index) return static_cast(item); } else { diff --git a/tests/auto/declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp b/tests/auto/declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp index 0e16f66843..f32a6c7796 100644 --- a/tests/auto/declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp +++ b/tests/auto/declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp @@ -760,7 +760,7 @@ T *tst_QDeclarativePathView::findItem(QGraphicsObject *parent, const QString &ob //qDebug() << "try" << item; if (mo.cast(item) && (objectName.isEmpty() || item->objectName() == objectName)) { if (index != -1) { - QDeclarativeExpression e(qmlContext(item), "index", item); + QDeclarativeExpression e(qmlContext(item), item, "index"); if (e.evaluate().toInt() == index) return static_cast(item); } else { diff --git a/tests/auto/declarative/qdeclarativevisualdatamodel/tst_qdeclarativevisualdatamodel.cpp b/tests/auto/declarative/qdeclarativevisualdatamodel/tst_qdeclarativevisualdatamodel.cpp index c238ef9afe..8f3fb16b79 100644 --- a/tests/auto/declarative/qdeclarativevisualdatamodel/tst_qdeclarativevisualdatamodel.cpp +++ b/tests/auto/declarative/qdeclarativevisualdatamodel/tst_qdeclarativevisualdatamodel.cpp @@ -190,7 +190,7 @@ T *tst_qdeclarativevisualdatamodel::findItem(QGraphicsObject *parent, const QStr //qDebug() << "try" << item; if (mo.cast(item) && (objectName.isEmpty() || item->objectName() == objectName)) { if (index != -1) { - QDeclarativeExpression e(qmlContext(item), "index", item); + QDeclarativeExpression e(qmlContext(item), item, "index"); if (e.evaluate().toInt() == index) return static_cast(item); } else { -- cgit v1.2.1 From 07fc1c3a97689f1f72e4e9b6d7d1bad1a391a9a7 Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Tue, 18 May 2010 12:28:26 +1000 Subject: Rename files; fix test. --- .../auto/declarative/qdeclarativelanguage/data/scriptString.3.qml | 5 ----- .../auto/declarative/qdeclarativelanguage/data/scriptString.4.qml | 5 ----- .../auto/declarative/qdeclarativelanguage/data/scriptString.5.qml | 5 ----- tests/auto/declarative/qdeclarativelanguage/data/scriptString2.qml | 5 +++++ tests/auto/declarative/qdeclarativelanguage/data/scriptString3.qml | 5 +++++ tests/auto/declarative/qdeclarativelanguage/data/scriptString4.qml | 5 +++++ .../declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp | 7 ++++--- 7 files changed, 19 insertions(+), 18 deletions(-) delete mode 100644 tests/auto/declarative/qdeclarativelanguage/data/scriptString.3.qml delete mode 100644 tests/auto/declarative/qdeclarativelanguage/data/scriptString.4.qml delete mode 100644 tests/auto/declarative/qdeclarativelanguage/data/scriptString.5.qml create mode 100644 tests/auto/declarative/qdeclarativelanguage/data/scriptString2.qml create mode 100644 tests/auto/declarative/qdeclarativelanguage/data/scriptString3.qml create mode 100644 tests/auto/declarative/qdeclarativelanguage/data/scriptString4.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativelanguage/data/scriptString.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/scriptString.3.qml deleted file mode 100644 index 0de366747a..0000000000 --- a/tests/auto/declarative/qdeclarativelanguage/data/scriptString.3.qml +++ /dev/null @@ -1,5 +0,0 @@ -import Test 1.0 - -MyTypeObject { - scriptProperty: "hello world" -} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/scriptString.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/scriptString.4.qml deleted file mode 100644 index 0cd82ff58f..0000000000 --- a/tests/auto/declarative/qdeclarativelanguage/data/scriptString.4.qml +++ /dev/null @@ -1,5 +0,0 @@ -import Test 1.0 - -MyTypeObject { - scriptProperty: 12.345 -} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/scriptString.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/scriptString.5.qml deleted file mode 100644 index 3e2f9a49f1..0000000000 --- a/tests/auto/declarative/qdeclarativelanguage/data/scriptString.5.qml +++ /dev/null @@ -1,5 +0,0 @@ -import Test 1.0 - -MyTypeObject { - scriptProperty: true -} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/scriptString2.qml b/tests/auto/declarative/qdeclarativelanguage/data/scriptString2.qml new file mode 100644 index 0000000000..0de366747a --- /dev/null +++ b/tests/auto/declarative/qdeclarativelanguage/data/scriptString2.qml @@ -0,0 +1,5 @@ +import Test 1.0 + +MyTypeObject { + scriptProperty: "hello world" +} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/scriptString3.qml b/tests/auto/declarative/qdeclarativelanguage/data/scriptString3.qml new file mode 100644 index 0000000000..0cd82ff58f --- /dev/null +++ b/tests/auto/declarative/qdeclarativelanguage/data/scriptString3.qml @@ -0,0 +1,5 @@ +import Test 1.0 + +MyTypeObject { + scriptProperty: 12.345 +} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/scriptString4.qml b/tests/auto/declarative/qdeclarativelanguage/data/scriptString4.qml new file mode 100644 index 0000000000..3e2f9a49f1 --- /dev/null +++ b/tests/auto/declarative/qdeclarativelanguage/data/scriptString4.qml @@ -0,0 +1,5 @@ +import Test 1.0 + +MyTypeObject { + scriptProperty: true +} diff --git a/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp b/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp index 4434e46dbd..b72c75f094 100644 --- a/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp +++ b/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp @@ -1122,16 +1122,17 @@ void tst_qdeclarativelanguage::scriptString() } { - QDeclarativeComponent component(&engine, TEST_FILE("scriptString3.qml")); + QDeclarativeComponent component(&engine, TEST_FILE("scriptString2.qml")); VERIFY_ERRORS(0); MyTypeObject *object = qobject_cast(component.create()); QVERIFY(object != 0); + QEXPECT_FAIL("", "Variant.asScript() returns incorrect value for string (bug pending)", Continue); QCOMPARE(object->scriptProperty().script(), QString("\"hello world\"")); } { - QDeclarativeComponent component(&engine, TEST_FILE("scriptString4.qml")); + QDeclarativeComponent component(&engine, TEST_FILE("scriptString3.qml")); VERIFY_ERRORS(0); MyTypeObject *object = qobject_cast(component.create()); @@ -1140,7 +1141,7 @@ void tst_qdeclarativelanguage::scriptString() } { - QDeclarativeComponent component(&engine, TEST_FILE("scriptString5.qml")); + QDeclarativeComponent component(&engine, TEST_FILE("scriptString4.qml")); VERIFY_ERRORS(0); MyTypeObject *object = qobject_cast(component.create()); -- cgit v1.2.1 From 300a259e13906e8dde204e3f33dab88ea80f8302 Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Tue, 18 May 2010 13:10:33 +1000 Subject: Test Qt.labs.folderlistmodel plugin --- .../qdeclarativefolderlistmodel/data/basic.qml | 5 + .../qdeclarativefolderlistmodel/data/dummy.qml | 1 + .../qdeclarativefolderlistmodel.pro | 17 ++++ .../tst_qdeclarativefolderlistmodel.cpp | 113 +++++++++++++++++++++ 4 files changed, 136 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativefolderlistmodel/data/basic.qml create mode 100644 tests/auto/declarative/qdeclarativefolderlistmodel/data/dummy.qml create mode 100644 tests/auto/declarative/qdeclarativefolderlistmodel/qdeclarativefolderlistmodel.pro create mode 100644 tests/auto/declarative/qdeclarativefolderlistmodel/tst_qdeclarativefolderlistmodel.cpp (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativefolderlistmodel/data/basic.qml b/tests/auto/declarative/qdeclarativefolderlistmodel/data/basic.qml new file mode 100644 index 0000000000..2c4977d08b --- /dev/null +++ b/tests/auto/declarative/qdeclarativefolderlistmodel/data/basic.qml @@ -0,0 +1,5 @@ +import Qt.labs.folderlistmodel 1.0 + +FolderListModel { + nameFilters: [ "*.qml" ] +} diff --git a/tests/auto/declarative/qdeclarativefolderlistmodel/data/dummy.qml b/tests/auto/declarative/qdeclarativefolderlistmodel/data/dummy.qml new file mode 100644 index 0000000000..609638bec6 --- /dev/null +++ b/tests/auto/declarative/qdeclarativefolderlistmodel/data/dummy.qml @@ -0,0 +1 @@ +// This file is not used, it is just content for QDirModel diff --git a/tests/auto/declarative/qdeclarativefolderlistmodel/qdeclarativefolderlistmodel.pro b/tests/auto/declarative/qdeclarativefolderlistmodel/qdeclarativefolderlistmodel.pro new file mode 100644 index 0000000000..487d0e157d --- /dev/null +++ b/tests/auto/declarative/qdeclarativefolderlistmodel/qdeclarativefolderlistmodel.pro @@ -0,0 +1,17 @@ +load(qttest_p4) +contains(QT_CONFIG,declarative): QT += declarative +macx:CONFIG -= app_bundle + +SOURCES += tst_qdeclarativefolderlistmodel.cpp + +# Define SRCDIR equal to test's source directory +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} + +CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativefolderlistmodel/tst_qdeclarativefolderlistmodel.cpp b/tests/auto/declarative/qdeclarativefolderlistmodel/tst_qdeclarativefolderlistmodel.cpp new file mode 100644 index 0000000000..8a8bfe7789 --- /dev/null +++ b/tests/auto/declarative/qdeclarativefolderlistmodel/tst_qdeclarativefolderlistmodel.cpp @@ -0,0 +1,113 @@ +/**************************************************************************** +** +** 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 test suite 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 "../../../shared/util.h" +#include +#include +#include +#include +#include +#include + +// From qdeclarastivefolderlistmodel.h +const int FileNameRole = Qt::UserRole+1; +const int FilePathRole = Qt::UserRole+2; +enum SortField { Unsorted, Name, Time, Size, Type }; + +class tst_qdeclarativefolderlistmodel : public QObject +{ + Q_OBJECT +public: + tst_qdeclarativefolderlistmodel() {} + +private slots: + void basicProperties(); + +private: + void checkNoErrors(const QDeclarativeComponent& component); + QDeclarativeEngine engine; +}; + +void tst_qdeclarativefolderlistmodel::checkNoErrors(const QDeclarativeComponent& component) +{ + // Wait until the component is ready + QTRY_VERIFY(component.isReady() || component.isError()); + + if (component.isError()) { + QList errors = component.errors(); + for (int ii = 0; ii < errors.count(); ++ii) { + const QDeclarativeError &error = errors.at(ii); + QByteArray errorStr = QByteArray::number(error.line()) + ":" + + QByteArray::number(error.column()) + ":" + + error.description().toUtf8(); + qWarning() << errorStr; + } + } + QVERIFY(!component.isError()); +} + +void tst_qdeclarativefolderlistmodel::basicProperties() +{ + QDeclarativeComponent component(&engine, QUrl::fromLocalFile(SRCDIR "/data/basic.qml")); + checkNoErrors(component); + + QAbstractListModel *flm = qobject_cast(component.create()); + QVERIFY(flm != 0); + + + flm->setProperty("folder",QUrl::fromLocalFile(SRCDIR "/data")); + QTRY_COMPARE(flm->property("count").toInt(),2); // wait for refresh + QCOMPARE(flm->property("folder").toUrl(), QUrl::fromLocalFile(SRCDIR "/data")); + QCOMPARE(flm->property("parentFolder").toUrl(), QUrl::fromLocalFile(SRCDIR)); + QCOMPARE(flm->property("sortField").toInt(), int(Name)); + QCOMPARE(flm->property("nameFilters").toStringList(), QStringList() << "*.qml"); + QCOMPARE(flm->property("sortReversed").toBool(), false); + QCOMPARE(flm->property("showDirs").toBool(), true); + QCOMPARE(flm->property("showDotAndDotDot").toBool(), false); + QCOMPARE(flm->property("showOnlyReadable").toBool(), false); + QCOMPARE(flm->data(flm->index(0),FileNameRole).toString(), QLatin1String("basic.qml")); + QCOMPARE(flm->data(flm->index(1),FileNameRole).toString(), QLatin1String("dummy.qml")); +} + +QTEST_MAIN(tst_qdeclarativefolderlistmodel) + +#include "tst_qdeclarativefolderlistmodel.moc" -- cgit v1.2.1 From 92b783a4ab9687baaf55d732965fe21aa69146a4 Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Tue, 18 May 2010 13:23:46 +1000 Subject: git ignore stuff --- tests/auto/declarative/.gitignore | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 tests/auto/declarative/.gitignore (limited to 'tests/auto') diff --git a/tests/auto/declarative/.gitignore b/tests/auto/declarative/.gitignore deleted file mode 100644 index 57608cf425..0000000000 --- a/tests/auto/declarative/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -tst_* -!tst_*.* -tst_*.log -tst_*.debug -tst_*~ -- cgit v1.2.1 From 3d1a6596c6a381b71718af22eb8a861830ec7b6b Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Tue, 18 May 2010 14:51:58 +1000 Subject: Make sure strings are escaped when returned via asScript. Makes 273024e58d90bb9b3a5da0161f884f1af22d75df more correct. --- tests/auto/declarative/qdeclarativelanguage/data/emptySignal.qml | 2 +- tests/auto/declarative/qdeclarativelanguage/data/scriptString2.qml | 2 +- .../declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.qml b/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.qml index 4c5a122782..ba3545e8e4 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.qml @@ -1,6 +1,6 @@ import Test 1.0 MyQmlObject { - onBasicSignal: " " + onBasicSignal: " " } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/scriptString2.qml b/tests/auto/declarative/qdeclarativelanguage/data/scriptString2.qml index 0de366747a..c42da2b9e1 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/scriptString2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/scriptString2.qml @@ -1,5 +1,5 @@ import Test 1.0 MyTypeObject { - scriptProperty: "hello world" + scriptProperty: "hello\n\"world\"" } diff --git a/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp b/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp index b72c75f094..cb2764feee 100644 --- a/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp +++ b/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp @@ -351,7 +351,8 @@ void tst_qdeclarativelanguage::errors_data() QTest::newRow("invalidAttachedProperty.12") << "invalidAttachedProperty.12.qml" << "invalidAttachedProperty.12.errors.txt" << false; QTest::newRow("invalidAttachedProperty.13") << "invalidAttachedProperty.13.qml" << "invalidAttachedProperty.13.errors.txt" << false; - QTest::newRow("emptySignal") << "emptySignal.qml" << "emptySignal.errors.txt" << false; + //### this is no longer considered empty (and should produce a different error: QTBUG-10764) + //QTest::newRow("emptySignal") << "emptySignal.qml" << "emptySignal.errors.txt" << false; QTest::newRow("emptySignal.2") << "emptySignal.2.qml" << "emptySignal.2.errors.txt" << false; QTest::newRow("nestedErrors") << "nestedErrors.qml" << "nestedErrors.errors.txt" << false; @@ -1127,8 +1128,7 @@ void tst_qdeclarativelanguage::scriptString() MyTypeObject *object = qobject_cast(component.create()); QVERIFY(object != 0); - QEXPECT_FAIL("", "Variant.asScript() returns incorrect value for string (bug pending)", Continue); - QCOMPARE(object->scriptProperty().script(), QString("\"hello world\"")); + QCOMPARE(object->scriptProperty().script(), QString("\"hello\\n\\\"world\\\"\"")); } { -- cgit v1.2.1 From 9a111f72362b39be9b10d5d365faa21dfebf770e Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Tue, 18 May 2010 15:40:53 +1000 Subject: Prevent assignment of values (string, number, bool) to signal handlers. Task-number: QTBUG-10764 Reviewed-by: Aaron Kennedy --- .../qdeclarativelanguage/data/assignValueToSignal.errors.txt | 1 + .../declarative/qdeclarativelanguage/data/assignValueToSignal.qml | 6 ++++++ .../declarative/qdeclarativelanguage/data/emptySignal.2.errors.txt | 1 - tests/auto/declarative/qdeclarativelanguage/data/emptySignal.2.qml | 7 ------- .../declarative/qdeclarativelanguage/data/emptySignal.errors.txt | 2 +- tests/auto/declarative/qdeclarativelanguage/data/emptySignal.qml | 3 ++- .../declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp | 5 ++--- 7 files changed, 12 insertions(+), 13 deletions(-) create mode 100644 tests/auto/declarative/qdeclarativelanguage/data/assignValueToSignal.errors.txt create mode 100644 tests/auto/declarative/qdeclarativelanguage/data/assignValueToSignal.qml delete mode 100644 tests/auto/declarative/qdeclarativelanguage/data/emptySignal.2.errors.txt delete mode 100644 tests/auto/declarative/qdeclarativelanguage/data/emptySignal.2.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignValueToSignal.errors.txt b/tests/auto/declarative/qdeclarativelanguage/data/assignValueToSignal.errors.txt new file mode 100644 index 0000000000..eb1430a715 --- /dev/null +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignValueToSignal.errors.txt @@ -0,0 +1 @@ +4:5:Cannot assign a value to a signal (expecting a script to be run) diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignValueToSignal.qml b/tests/auto/declarative/qdeclarativelanguage/data/assignValueToSignal.qml new file mode 100644 index 0000000000..6fa1259f39 --- /dev/null +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignValueToSignal.qml @@ -0,0 +1,6 @@ +import Test 1.0 + +MyQmlObject { + onBasicSignal: "hello world" +} + diff --git a/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.2.errors.txt b/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.2.errors.txt deleted file mode 100644 index 8b20434973..0000000000 --- a/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.2.errors.txt +++ /dev/null @@ -1 +0,0 @@ -4:5:Incorrectly specified signal assignment diff --git a/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.2.qml deleted file mode 100644 index c84fea3fe6..0000000000 --- a/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.2.qml +++ /dev/null @@ -1,7 +0,0 @@ -import Test 1.0 - -MyQmlObject { - onBasicSignal { - } -} - diff --git a/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.errors.txt b/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.errors.txt index 353bbf5d8c..8b20434973 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.errors.txt +++ b/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.errors.txt @@ -1 +1 @@ -4:5:Empty signal assignment +4:5:Incorrectly specified signal assignment diff --git a/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.qml b/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.qml index ba3545e8e4..c84fea3fe6 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.qml @@ -1,6 +1,7 @@ import Test 1.0 MyQmlObject { - onBasicSignal: " " + onBasicSignal { + } } diff --git a/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp b/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp index cb2764feee..200f0162ea 100644 --- a/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp +++ b/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp @@ -351,9 +351,8 @@ void tst_qdeclarativelanguage::errors_data() QTest::newRow("invalidAttachedProperty.12") << "invalidAttachedProperty.12.qml" << "invalidAttachedProperty.12.errors.txt" << false; QTest::newRow("invalidAttachedProperty.13") << "invalidAttachedProperty.13.qml" << "invalidAttachedProperty.13.errors.txt" << false; - //### this is no longer considered empty (and should produce a different error: QTBUG-10764) - //QTest::newRow("emptySignal") << "emptySignal.qml" << "emptySignal.errors.txt" << false; - QTest::newRow("emptySignal.2") << "emptySignal.2.qml" << "emptySignal.2.errors.txt" << false; + QTest::newRow("assignValueToSignal") << "assignValueToSignal.qml" << "assignValueToSignal.errors.txt" << false; + QTest::newRow("emptySignal") << "emptySignal.qml" << "emptySignal.errors.txt" << false; QTest::newRow("nestedErrors") << "nestedErrors.qml" << "nestedErrors.errors.txt" << false; QTest::newRow("defaultGrouped") << "defaultGrouped.qml" << "defaultGrouped.errors.txt" << false; -- cgit v1.2.1 From ffccebed9af217cc5bf2f3e4eba00df754eb7ac9 Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Tue, 18 May 2010 16:09:53 +1000 Subject: Make Qt.include() work for js files that have '.pragma library' --- .../qdeclarativeecmascript/data/include_pragma.qml | 11 +++++++++++ .../qdeclarativeecmascript/data/include_pragma_inner.js | 5 +++++ .../qdeclarativeecmascript/data/include_pragma_outer.js | 6 ++++++ .../qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp | 11 +++++++++++ 4 files changed, 33 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/include_pragma.qml create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/include_pragma_inner.js create mode 100644 tests/auto/declarative/qdeclarativeecmascript/data/include_pragma_outer.js (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include_pragma.qml b/tests/auto/declarative/qdeclarativeecmascript/data/include_pragma.qml new file mode 100644 index 0000000000..67b8cfd85b --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include_pragma.qml @@ -0,0 +1,11 @@ +import Qt 4.7 +import "include_pragma_outer.js" as Script + +Item { + property int test1 + + Component.onCompleted: { + test1 = Script.callFunction() + } +} + diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include_pragma_inner.js b/tests/auto/declarative/qdeclarativeecmascript/data/include_pragma_inner.js new file mode 100644 index 0000000000..a0380a25df --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include_pragma_inner.js @@ -0,0 +1,5 @@ +.pragma library + +function getValue() { + return 100; +} diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include_pragma_outer.js b/tests/auto/declarative/qdeclarativeecmascript/data/include_pragma_outer.js new file mode 100644 index 0000000000..d87bafc816 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include_pragma_outer.js @@ -0,0 +1,6 @@ +Qt.include("include_pragma_inner.js") + +function callFunction() { + return getValue(); +} + diff --git a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp index 0710e152d9..9a88237fd2 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp +++ b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp @@ -2424,6 +2424,17 @@ void tst_qdeclarativeecmascript::include() delete o; } + // Including file with ".pragma library" + { + QDeclarativeComponent component(&engine, TEST_FILE("include_pragma.qml")); + qDebug() << "errors:" << component.errorsString(); + QObject *o = component.create(); + QVERIFY(o != 0); + QCOMPARE(o->property("test1").toInt(), 100); + + delete o; + } + // Remote - success { TestHTTPServer server(8111); -- cgit v1.2.1 From 633a5cf6d8197105d6392dbf56bf0f29f9c84da1 Mon Sep 17 00:00:00 2001 From: Joona Petrell Date: Tue, 18 May 2010 16:26:20 +1000 Subject: Regression fix for Loader anchors not working Task-number: QTBUG-10766 Reviewed-by: Yann Bodson --- .../qdeclarativeloader/data/AnchoredLoader.qml | 14 ++++++++++++++ .../qdeclarativeloader/tst_qdeclarativeloader.cpp | 22 ++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativeloader/data/AnchoredLoader.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeloader/data/AnchoredLoader.qml b/tests/auto/declarative/qdeclarativeloader/data/AnchoredLoader.qml new file mode 100644 index 0000000000..5d02dae78d --- /dev/null +++ b/tests/auto/declarative/qdeclarativeloader/data/AnchoredLoader.qml @@ -0,0 +1,14 @@ +import Qt 4.7 + +Rectangle { + width: 300 + height: 200 + color: "blue" + Loader { + objectName: "loader" + anchors.fill: parent + sourceComponent: Component { + Rectangle { color: "red"; objectName: "sourceElement" } + } + } +} diff --git a/tests/auto/declarative/qdeclarativeloader/tst_qdeclarativeloader.cpp b/tests/auto/declarative/qdeclarativeloader/tst_qdeclarativeloader.cpp index 59580ea228..11cc61be7f 100644 --- a/tests/auto/declarative/qdeclarativeloader/tst_qdeclarativeloader.cpp +++ b/tests/auto/declarative/qdeclarativeloader/tst_qdeclarativeloader.cpp @@ -78,6 +78,7 @@ private slots: void clear(); void urlToComponent(); void componentToUrl(); + void anchoredLoader(); void sizeLoaderToItem(); void sizeItemToLoader(); void noResize(); @@ -266,6 +267,27 @@ void tst_QDeclarativeLoader::componentToUrl() delete item; } +void tst_QDeclarativeLoader::anchoredLoader() +{ + QDeclarativeComponent component(&engine, TEST_FILE("/AnchoredLoader.qml")); + QDeclarativeItem *rootItem = qobject_cast(component.create()); + QVERIFY(rootItem != 0); + QDeclarativeItem *loader = rootItem->findChild("loader"); + QDeclarativeItem *sourceElement = rootItem->findChild("sourceElement"); + + QVERIFY(loader != 0); + QVERIFY(sourceElement != 0); + + QCOMPARE(rootItem->width(), 300.0); + QCOMPARE(rootItem->height(), 200.0); + + QCOMPARE(loader->width(), 300.0); + QCOMPARE(loader->height(), 200.0); + + QCOMPARE(sourceElement->width(), 300.0); + QCOMPARE(sourceElement->height(), 200.0); +} + void tst_QDeclarativeLoader::sizeLoaderToItem() { QDeclarativeComponent component(&engine, TEST_FILE("/SizeToItem.qml")); -- cgit v1.2.1 From 74993e0fd685c905fff1f9e21a190b3531107f20 Mon Sep 17 00:00:00 2001 From: Denis Dzyubenko Date: Mon, 10 May 2010 10:47:19 +0200 Subject: Upgraded QLocale to Unicode CLDR 1.8.1 Reviewed-by: trustme --- tests/auto/qlocale/tst_qlocale.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qlocale/tst_qlocale.cpp b/tests/auto/qlocale/tst_qlocale.cpp index 7a5d8a6c00..374bdee552 100644 --- a/tests/auto/qlocale/tst_qlocale.cpp +++ b/tests/auto/qlocale/tst_qlocale.cpp @@ -1896,8 +1896,8 @@ void tst_QLocale::ampm() QCOMPARE(c.pmText(), QLatin1String("PM")); QLocale de("de_DE"); - QCOMPARE(de.amText(), QLatin1String("AM")); - QCOMPARE(de.pmText(), QLatin1String("PM")); + QCOMPARE(de.amText(), QLatin1String("vorm.")); + QCOMPARE(de.pmText(), QLatin1String("nachm.")); QLocale sv("sv_SE"); QCOMPARE(sv.amText(), QLatin1String("fm")); -- cgit v1.2.1 From 28ad286c3e2df7e391d4e5cbe41958c9be12d900 Mon Sep 17 00:00:00 2001 From: Denis Dzyubenko Date: Fri, 14 May 2010 11:27:47 +0200 Subject: Gestures in GraphicsView do not require a viewport to subscribe to gestures. When a graphicsitem subscribes to a gesture the viewport is implicitly subscribed to it as well. Task-number: QTBUG-9849 Reviewed-by: Olivier Goffart Reviewed-by: Mikko Harju --- tests/auto/gestures/tst_gestures.cpp | 83 ++++++++++++++++++++++++++++-------- 1 file changed, 66 insertions(+), 17 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/gestures/tst_gestures.cpp b/tests/auto/gestures/tst_gestures.cpp index dfadf48c50..4a9f1d1be7 100644 --- a/tests/auto/gestures/tst_gestures.cpp +++ b/tests/auto/gestures/tst_gestures.cpp @@ -336,6 +336,7 @@ private slots: void finishedWithoutStarted(); void unknownGesture(); void graphicsItemGesture(); + void graphicsView(); void graphicsItemTreeGesture(); void explicitGraphicsObjectTarget(); void gestureOverChildGraphicsItem(); @@ -859,7 +860,6 @@ void tst_Gestures::graphicsItemGesture() QTest::qWaitForWindowShown(&view); view.ensureVisible(scene.sceneRect()); - view.viewport()->grabGesture(CustomGesture::GestureType, Qt::DontStartGestureOnChildren); item->grabGesture(CustomGesture::GestureType); static const int TotalGestureEventsCount = CustomGesture::SerialFinishedThreshold - CustomGesture::SerialStartedThreshold + 1; @@ -908,6 +908,71 @@ void tst_Gestures::graphicsItemGesture() QCOMPARE(item->gestureOverrideEventsReceived, 0); } +void tst_Gestures::graphicsView() +{ + QGraphicsScene scene; + QGraphicsView view(&scene); + view.setWindowFlags(Qt::X11BypassWindowManagerHint); + + GestureItem *item = new GestureItem("item"); + scene.addItem(item); + item->setPos(100, 100); + + view.show(); + QTest::qWaitForWindowShown(&view); + view.ensureVisible(scene.sceneRect()); + + item->grabGesture(CustomGesture::GestureType); + + static const int TotalGestureEventsCount = CustomGesture::SerialFinishedThreshold - CustomGesture::SerialStartedThreshold + 1; + static const int TotalCustomEventsCount = CustomGesture::SerialFinishedThreshold - CustomGesture::SerialMaybeThreshold + 1; + + CustomEvent event; + // make sure the event is properly delivered if only the hotspot is set. + event.hotSpot = mapToGlobal(QPointF(10, 10), item, &view); + event.hasHotSpot = true; + sendCustomGesture(&event, item, &scene); + + QCOMPARE(item->customEventsReceived, TotalCustomEventsCount); + QCOMPARE(item->gestureEventsReceived, TotalGestureEventsCount); + QCOMPARE(item->gestureOverrideEventsReceived, 0); + + // change the viewport and try again + QWidget *newViewport = new QWidget; + view.setViewport(newViewport); + + item->reset(); + sendCustomGesture(&event, item, &scene); + + QCOMPARE(item->customEventsReceived, TotalCustomEventsCount); + QCOMPARE(item->gestureEventsReceived, TotalGestureEventsCount); + QCOMPARE(item->gestureOverrideEventsReceived, 0); + + // change the scene and try again + QGraphicsScene newScene; + item = new GestureItem("newItem"); + newScene.addItem(item); + item->setPos(100, 100); + view.setScene(&newScene); + + item->reset(); + // first without a gesture + sendCustomGesture(&event, item, &newScene); + + QCOMPARE(item->customEventsReceived, TotalCustomEventsCount); + QCOMPARE(item->gestureEventsReceived, 0); + QCOMPARE(item->gestureOverrideEventsReceived, 0); + + // then grab the gesture and try again + item->reset(); + item->grabGesture(CustomGesture::GestureType); + sendCustomGesture(&event, item, &newScene); + + QCOMPARE(item->customEventsReceived, TotalCustomEventsCount); + QCOMPARE(item->gestureEventsReceived, TotalGestureEventsCount); + QCOMPARE(item->gestureOverrideEventsReceived, 0); +} + void tst_Gestures::graphicsItemTreeGesture() { QGraphicsScene scene; @@ -933,7 +998,6 @@ void tst_Gestures::graphicsItemTreeGesture() QTest::qWaitForWindowShown(&view); view.ensureVisible(scene.sceneRect()); - view.viewport()->grabGesture(CustomGesture::GestureType, Qt::DontStartGestureOnChildren); item1->grabGesture(CustomGesture::GestureType); static const int TotalGestureEventsCount = CustomGesture::SerialFinishedThreshold - CustomGesture::SerialStartedThreshold + 1; @@ -991,7 +1055,6 @@ void tst_Gestures::explicitGraphicsObjectTarget() QTest::qWaitForWindowShown(&view); view.ensureVisible(scene.sceneRect()); - view.viewport()->grabGesture(CustomGesture::GestureType, Qt::DontStartGestureOnChildren); item1->grabGesture(CustomGesture::GestureType, Qt::DontStartGestureOnChildren); item2->grabGesture(CustomGesture::GestureType, Qt::DontStartGestureOnChildren); item2_child1->grabGesture(CustomGesture::GestureType, Qt::DontStartGestureOnChildren); @@ -1051,7 +1114,6 @@ void tst_Gestures::gestureOverChildGraphicsItem() QTest::qWaitForWindowShown(&view); view.ensureVisible(scene.sceneRect()); - view.viewport()->grabGesture(CustomGesture::GestureType, Qt::DontStartGestureOnChildren); item1->grabGesture(CustomGesture::GestureType); static const int TotalGestureEventsCount = CustomGesture::SerialFinishedThreshold - CustomGesture::SerialStartedThreshold + 1; @@ -1519,8 +1581,6 @@ void tst_Gestures::autoCancelGestures2() parent->setPos(0, 0); child->setPos(10, 10); scene.addItem(parent); - view.viewport()->grabGesture(CustomGesture::GestureType, Qt::DontStartGestureOnChildren); - view.viewport()->grabGesture(secondGesture, Qt::DontStartGestureOnChildren); parent->grabGesture(CustomGesture::GestureType); child->grabGesture(secondGesture); @@ -1573,7 +1633,6 @@ void tst_Gestures::graphicsViewParentPropagation() QTest::qWaitForWindowShown(&view); view.ensureVisible(scene.sceneRect()); - view.viewport()->grabGesture(CustomGesture::GestureType, Qt::DontStartGestureOnChildren); item0->grabGesture(CustomGesture::GestureType, Qt::ReceivePartialGestures | Qt::IgnoredGesturesPropagateToParent); item1->grabGesture(CustomGesture::GestureType, Qt::ReceivePartialGestures | Qt::IgnoredGesturesPropagateToParent); item1_c1->grabGesture(CustomGesture::GestureType, Qt::IgnoredGesturesPropagateToParent); @@ -1644,8 +1703,6 @@ void tst_Gestures::panelPropagation() QTest::qWaitForWindowShown(&view); view.ensureVisible(scene.sceneRect()); - view.viewport()->grabGesture(CustomGesture::GestureType, Qt::DontStartGestureOnChildren); - static const int TotalGestureEventsCount = CustomGesture::SerialFinishedThreshold - CustomGesture::SerialStartedThreshold + 1; static const int TotalCustomEventsCount = CustomGesture::SerialFinishedThreshold - CustomGesture::SerialMaybeThreshold + 1; @@ -1757,8 +1814,6 @@ void tst_Gestures::panelStacksBehindParent() QTest::qWaitForWindowShown(&view); view.ensureVisible(scene.sceneRect()); - view.viewport()->grabGesture(CustomGesture::GestureType, Qt::DontStartGestureOnChildren); - static const int TotalGestureEventsCount = CustomGesture::SerialFinishedThreshold - CustomGesture::SerialStartedThreshold + 1; CustomEvent event; @@ -1843,8 +1898,6 @@ void tst_Gestures::deleteGestureTargetItem() QTest::qWaitForWindowShown(&view); view.ensureVisible(scene.sceneRect()); - view.viewport()->grabGesture(CustomGesture::GestureType, Qt::DontStartGestureOnChildren); - if (propagateUpdateGesture) item2->ignoredUpdatedGestures << CustomGesture::GestureType; connect(items.value(emitter, 0), signalName, items.value(receiver, 0), slotName); @@ -1890,8 +1943,6 @@ void tst_Gestures::viewportCoordinates() QTest::qWaitForWindowShown(&view); view.ensureVisible(scene.sceneRect()); - view.viewport()->grabGesture(CustomGesture::GestureType, Qt::DontStartGestureOnChildren); - CustomEvent event; event.hotSpot = mapToGlobal(item1->boundingRect().center(), item1, &view); event.hasHotSpot = true; @@ -1929,8 +1980,6 @@ void tst_Gestures::partialGesturePropagation() QTest::qWaitForWindowShown(&view); view.ensureVisible(scene.sceneRect()); - view.viewport()->grabGesture(CustomGesture::GestureType, Qt::DontStartGestureOnChildren); - item1->ignoredUpdatedGestures << CustomGesture::GestureType; CustomEvent event; -- cgit v1.2.1 From b40e5271102bf0dcbaffff393797c0122dcf29d2 Mon Sep 17 00:00:00 2001 From: Denis Dzyubenko Date: Fri, 14 May 2010 17:51:15 +0200 Subject: Added support for es_419 locale. Added a new country code "419" which stands for "Latin America and the Caribbean". This is the first three-letter country code (from UN M.49). Task-number: QT-3312 Reviewed-by: Thiago Macieira --- tests/auto/qlocale/tst_qlocale.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qlocale/tst_qlocale.cpp b/tests/auto/qlocale/tst_qlocale.cpp index 374bdee552..5e050ab18a 100644 --- a/tests/auto/qlocale/tst_qlocale.cpp +++ b/tests/auto/qlocale/tst_qlocale.cpp @@ -192,6 +192,7 @@ void tst_QLocale::ctor() TEST_CTOR(French, France, QLocale::French, QLocale::France) TEST_CTOR(C, France, QLocale::C, QLocale::AnyCountry) + TEST_CTOR(Spanish, LatinAmericaAndTheCaribbean, QLocale::Spanish, QLocale::LatinAmericaAndTheCaribbean) QLocale::setDefault(QLocale(QLocale::English, QLocale::France)); @@ -323,6 +324,8 @@ void tst_QLocale::ctor() TEST_CTOR("no_NO", Norwegian, Norway) TEST_CTOR("nb_NO", Norwegian, Norway) TEST_CTOR("nn_NO", NorwegianNynorsk, Norway) + TEST_CTOR("es_ES", Spanish, Spain) + TEST_CTOR("es_419", Spanish, LatinAmericaAndTheCaribbean) #undef TEST_CTOR -- cgit v1.2.1 From df9ab6c300eca3a5c75dcee93ae848957cb9a617 Mon Sep 17 00:00:00 2001 From: Aaron McCarthy Date: Wed, 19 May 2010 10:09:51 +1000 Subject: Only setup ICD test data when ICD is enabled. Fixes unit test build failures introduced in 90de3e5c903b67b2e5f3d7dc14266fe24f1daa23. --- tests/auto/qnetworkconfiguration/tst_qnetworkconfiguration.cpp | 8 ++++---- .../tst_qnetworkconfigurationmanager.cpp | 8 ++++---- tests/auto/qnetworksession/test/tst_qnetworksession.cpp | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qnetworkconfiguration/tst_qnetworkconfiguration.cpp b/tests/auto/qnetworkconfiguration/tst_qnetworkconfiguration.cpp index a3cccb2065..f714b04c7f 100644 --- a/tests/auto/qnetworkconfiguration/tst_qnetworkconfiguration.cpp +++ b/tests/auto/qnetworkconfiguration/tst_qnetworkconfiguration.cpp @@ -52,7 +52,7 @@ */ #include -#if defined(Q_WS_MAEMO_6) || defined(Q_WS_MAEMO_5) +#ifndef QT_NO_ICD #include #include #endif @@ -73,7 +73,7 @@ private slots: void isRoamingAvailable(); private: -#if defined(Q_WS_MAEMO_6) || defined(Q_WS_MAEMO_5) +#ifndef QT_NO_ICD Maemo::IAPConf *iapconf; Maemo::IAPConf *iapconf2; Maemo::IAPConf *gprsiap; @@ -85,7 +85,7 @@ private: void tst_QNetworkConfiguration::initTestCase() { -#if defined(Q_WS_MAEMO_6) || defined(Q_WS_MAEMO_5) +#ifndef QT_NO_ICD iapconf = new Maemo::IAPConf("007"); iapconf->setValue("ipv4_type", "AUTO"); iapconf->setValue("wlan_wepkey1", "connt"); @@ -158,7 +158,7 @@ void tst_QNetworkConfiguration::initTestCase() void tst_QNetworkConfiguration::cleanupTestCase() { -#if defined(Q_WS_MAEMO_6) || defined(Q_WS_MAEMO_5) +#ifndef QT_NO_ICD iapconf->clear(); delete iapconf; iapconf2->clear(); diff --git a/tests/auto/qnetworkconfigurationmanager/tst_qnetworkconfigurationmanager.cpp b/tests/auto/qnetworkconfigurationmanager/tst_qnetworkconfigurationmanager.cpp index 7cc527caa2..6dfc0b5e2d 100644 --- a/tests/auto/qnetworkconfigurationmanager/tst_qnetworkconfigurationmanager.cpp +++ b/tests/auto/qnetworkconfigurationmanager/tst_qnetworkconfigurationmanager.cpp @@ -45,7 +45,7 @@ #include #include -#if defined(Q_WS_MAEMO_6) || defined(Q_WS_MAEMO_5) +#ifndef QT_NO_ICD #include #include #endif @@ -67,7 +67,7 @@ private slots: void configurationFromIdentifier(); private: -#if defined(Q_WS_MAEMO_6) || defined(Q_WS_MAEMO_5) +#ifndef QT_NO_ICD Maemo::IAPConf *iapconf; Maemo::IAPConf *iapconf2; Maemo::IAPConf *gprsiap; @@ -79,7 +79,7 @@ private: void tst_QNetworkConfigurationManager::initTestCase() { -#if defined(Q_WS_MAEMO_6) || defined(Q_WS_MAEMO_5) +#ifndef QT_NO_ICD iapconf = new Maemo::IAPConf("007"); iapconf->setValue("ipv4_type", "AUTO"); iapconf->setValue("wlan_wepkey1", "connt"); @@ -153,7 +153,7 @@ void tst_QNetworkConfigurationManager::initTestCase() void tst_QNetworkConfigurationManager::cleanupTestCase() { -#if defined(Q_WS_MAEMO_6) || defined(Q_WS_MAEMO_5) +#ifndef QT_NO_ICD iapconf->clear(); delete iapconf; iapconf2->clear(); diff --git a/tests/auto/qnetworksession/test/tst_qnetworksession.cpp b/tests/auto/qnetworksession/test/tst_qnetworksession.cpp index 934a50e3bd..65fc1a8330 100644 --- a/tests/auto/qnetworksession/test/tst_qnetworksession.cpp +++ b/tests/auto/qnetworksession/test/tst_qnetworksession.cpp @@ -48,7 +48,7 @@ #include #include -#if defined(Q_WS_MAEMO_6) || defined(Q_WS_MAEMO_5) +#ifndef QT_NO_ICD #include #include #endif @@ -104,7 +104,7 @@ private: int inProcessSessionManagementCount; -#if defined(Q_WS_MAEMO_6) || defined(Q_WS_MAEMO_5) +#ifndef QT_NO_ICD Maemo::IAPConf *iapconf; Maemo::IAPConf *iapconf2; Maemo::IAPConf *gprsiap; @@ -140,7 +140,7 @@ void tst_QNetworkSession::initTestCase() testsToRun["userChoiceSession"] = true; testsToRun["sessionOpenCloseStop"] = true; -#if defined(Q_WS_MAEMO_6) || defined(Q_WS_MAEMO_5) +#ifndef QT_NO_ICD iapconf = new Maemo::IAPConf("007"); iapconf->setValue("ipv4_type", "AUTO"); iapconf->setValue("wlan_wepkey1", "connt"); @@ -226,7 +226,7 @@ void tst_QNetworkSession::cleanupTestCase() "inProcessSessionManagement()"); } -#if defined(Q_WS_MAEMO_6) || defined(Q_WS_MAEMO_5) +#ifndef QT_NO_ICD iapconf->clear(); delete iapconf; iapconf2->clear(); -- cgit v1.2.1 From 650fefd7e25b10d88048d2a465a27c479d80636d Mon Sep 17 00:00:00 2001 From: Kurt Korbatits Date: Wed, 19 May 2010 10:41:46 +1000 Subject: removed test file, part of mediaservice removal. Reviewed-by:Justin McPherson --- tests/auto/qsoundeffect/test.wav | Bin 38316 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 tests/auto/qsoundeffect/test.wav (limited to 'tests/auto') diff --git a/tests/auto/qsoundeffect/test.wav b/tests/auto/qsoundeffect/test.wav deleted file mode 100644 index e4088a973a..0000000000 Binary files a/tests/auto/qsoundeffect/test.wav and /dev/null differ -- cgit v1.2.1 From f29f46107204ea542ec899915508a69f520f6159 Mon Sep 17 00:00:00 2001 From: Rohan McGovern Date: Wed, 19 May 2010 11:35:48 +1000 Subject: Fixed tst_compilerwarnings test failure due to icecc node failures. When an icecc node has some system error, icecc on the client side outputs a warning. Since it's able to recover and the warning has nothing to do with the code, we should ignore it. Other distributed compile tools will have similar issues, but no attempt has been made to cover them. --- .../auto/compilerwarnings/tst_compilerwarnings.cpp | 30 +++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/compilerwarnings/tst_compilerwarnings.cpp b/tests/auto/compilerwarnings/tst_compilerwarnings.cpp index f910a18d94..82c327a677 100644 --- a/tests/auto/compilerwarnings/tst_compilerwarnings.cpp +++ b/tests/auto/compilerwarnings/tst_compilerwarnings.cpp @@ -62,6 +62,9 @@ class tst_CompilerWarnings: public QObject private slots: void warnings_data(); void warnings(); + +private: + bool shouldIgnoreWarning(QString const&); }; #if 0 @@ -242,16 +245,37 @@ void tst_CompilerWarnings::warnings() if (!errs.isEmpty()) { errList = errs.split("\n"); qDebug() << "Arguments:" << args; - foreach (QString err, errList) { - qDebug() << err; + QStringList validErrors; + foreach (QString const& err, errList) { + bool ignore = shouldIgnoreWarning(err); + qDebug() << err << (ignore ? " [ignored]" : ""); + if (!ignore) { + validErrors << err; + } } + errList = validErrors; } QCOMPARE(errList.count(), 0); // verbose info how many lines of errors in output - QVERIFY(errs.isEmpty()); tmpQSourceFile.remove(); } +bool tst_CompilerWarnings::shouldIgnoreWarning(QString const& warning) +{ + if (warning.isEmpty()) { + return true; + } + + // icecc outputs warnings if some icecc node breaks + if (warning.startsWith("ICECC[")) { + return true; + } + + // Add more bogus warnings here + + return false; +} + QTEST_APPLESS_MAIN(tst_CompilerWarnings) #include "tst_compilerwarnings.moc" -- cgit v1.2.1 From 36c51fe5229580ddaef7b7feb23822ecb775bffc Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Wed, 19 May 2010 12:54:59 +1000 Subject: Bug moved. --- .../qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp b/tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp index 831e3181b8..4173a44353 100644 --- a/tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp +++ b/tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp @@ -238,7 +238,7 @@ void tst_qdeclarativexmllistmodel::roleErrors() QCOMPARE(data.value(Qt::UserRole+1), QVariant()); QCOMPARE(data.value(Qt::UserRole+2), QVariant()); - QEXPECT_FAIL("", "QT-2456", Continue); + QEXPECT_FAIL("", "QTBUG-10797", Continue); QCOMPARE(data.value(Qt::UserRole+3), QVariant()); delete model; -- cgit v1.2.1 From 4ccc8d2fd1c6ae51d2459e80f655a2c2ac60e3c0 Mon Sep 17 00:00:00 2001 From: Aaron McCarthy Date: Wed, 19 May 2010 16:22:47 +1000 Subject: Fix build on Mac OS X and Windows. --- tests/auto/qnetworkconfiguration/tst_qnetworkconfiguration.cpp | 8 ++++---- .../tst_qnetworkconfigurationmanager.cpp | 8 ++++---- tests/auto/qnetworksession/test/tst_qnetworksession.cpp | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qnetworkconfiguration/tst_qnetworkconfiguration.cpp b/tests/auto/qnetworkconfiguration/tst_qnetworkconfiguration.cpp index f714b04c7f..e66719a206 100644 --- a/tests/auto/qnetworkconfiguration/tst_qnetworkconfiguration.cpp +++ b/tests/auto/qnetworkconfiguration/tst_qnetworkconfiguration.cpp @@ -52,7 +52,7 @@ */ #include -#ifndef QT_NO_ICD +#if defined(Q_OS_UNIX) && !defined(QT_NO_ICD) #include #include #endif @@ -73,7 +73,7 @@ private slots: void isRoamingAvailable(); private: -#ifndef QT_NO_ICD +#if defined(Q_OS_UNIX) && !defined(QT_NO_ICD) Maemo::IAPConf *iapconf; Maemo::IAPConf *iapconf2; Maemo::IAPConf *gprsiap; @@ -85,7 +85,7 @@ private: void tst_QNetworkConfiguration::initTestCase() { -#ifndef QT_NO_ICD +#if defined(Q_OS_UNIX) && !defined(QT_NO_ICD) iapconf = new Maemo::IAPConf("007"); iapconf->setValue("ipv4_type", "AUTO"); iapconf->setValue("wlan_wepkey1", "connt"); @@ -158,7 +158,7 @@ void tst_QNetworkConfiguration::initTestCase() void tst_QNetworkConfiguration::cleanupTestCase() { -#ifndef QT_NO_ICD +#if defined(Q_OS_UNIX) && !defined(QT_NO_ICD) iapconf->clear(); delete iapconf; iapconf2->clear(); diff --git a/tests/auto/qnetworkconfigurationmanager/tst_qnetworkconfigurationmanager.cpp b/tests/auto/qnetworkconfigurationmanager/tst_qnetworkconfigurationmanager.cpp index 6dfc0b5e2d..c732a5b0ea 100644 --- a/tests/auto/qnetworkconfigurationmanager/tst_qnetworkconfigurationmanager.cpp +++ b/tests/auto/qnetworkconfigurationmanager/tst_qnetworkconfigurationmanager.cpp @@ -45,7 +45,7 @@ #include #include -#ifndef QT_NO_ICD +#if defined(Q_OS_UNIX) && !defined(QT_NO_ICD) #include #include #endif @@ -67,7 +67,7 @@ private slots: void configurationFromIdentifier(); private: -#ifndef QT_NO_ICD +#if defined(Q_OS_UNIX) && !defined(QT_NO_ICD) Maemo::IAPConf *iapconf; Maemo::IAPConf *iapconf2; Maemo::IAPConf *gprsiap; @@ -79,7 +79,7 @@ private: void tst_QNetworkConfigurationManager::initTestCase() { -#ifndef QT_NO_ICD +#if defined(Q_OS_UNIX) && !defined(QT_NO_ICD) iapconf = new Maemo::IAPConf("007"); iapconf->setValue("ipv4_type", "AUTO"); iapconf->setValue("wlan_wepkey1", "connt"); @@ -153,7 +153,7 @@ void tst_QNetworkConfigurationManager::initTestCase() void tst_QNetworkConfigurationManager::cleanupTestCase() { -#ifndef QT_NO_ICD +#if defined(Q_OS_UNIX) && !defined(QT_NO_ICD) iapconf->clear(); delete iapconf; iapconf2->clear(); diff --git a/tests/auto/qnetworksession/test/tst_qnetworksession.cpp b/tests/auto/qnetworksession/test/tst_qnetworksession.cpp index 65fc1a8330..e4f24866a9 100644 --- a/tests/auto/qnetworksession/test/tst_qnetworksession.cpp +++ b/tests/auto/qnetworksession/test/tst_qnetworksession.cpp @@ -48,7 +48,7 @@ #include #include -#ifndef QT_NO_ICD +#if defined(Q_OS_UNIX) && !defined(QT_NO_ICD) #include #include #endif @@ -104,7 +104,7 @@ private: int inProcessSessionManagementCount; -#ifndef QT_NO_ICD +#if defined(Q_OS_UNIX) && !defined(QT_NO_ICD) Maemo::IAPConf *iapconf; Maemo::IAPConf *iapconf2; Maemo::IAPConf *gprsiap; @@ -140,7 +140,7 @@ void tst_QNetworkSession::initTestCase() testsToRun["userChoiceSession"] = true; testsToRun["sessionOpenCloseStop"] = true; -#ifndef QT_NO_ICD +#if defined(Q_OS_UNIX) && !defined(QT_NO_ICD) iapconf = new Maemo::IAPConf("007"); iapconf->setValue("ipv4_type", "AUTO"); iapconf->setValue("wlan_wepkey1", "connt"); @@ -226,7 +226,7 @@ void tst_QNetworkSession::cleanupTestCase() "inProcessSessionManagement()"); } -#ifndef QT_NO_ICD +#if defined(Q_OS_UNIX) && !defined(QT_NO_ICD) iapconf->clear(); delete iapconf; iapconf2->clear(); -- cgit v1.2.1 From fd02170f2fd241b53a20668c6354249bdeab3e1a Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Wed, 19 May 2010 16:44:09 +1000 Subject: Disable mouse-based selection in TextInput/TextEdit Can still be turned back on, if people only want to target platforms where the behaviour is acceptable. Task-number: QTBUG-10684 Reviewed-by: Michael Brasser --- .../tst_qdeclarativetextedit.cpp | 45 ++++++++++++++++++++++ 1 file changed, 45 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp index c65c8832b8..4befc4c0c8 100644 --- a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp +++ b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp @@ -76,6 +76,8 @@ private slots: void persistentSelection(); void focusOnPress(); void selection(); + void mouseSelection_data(); + void mouseSelection(); void inputMethodHints(); void cursorDelegate(); @@ -602,6 +604,49 @@ void tst_qdeclarativetextedit::selection() QVERIFY(textEditObject->selectedText().size() == 10); } +void tst_qdeclarativetextedit::mouseSelection_data() +{ + QTest::addColumn("qmlfile"); + QTest::addColumn("expectSelection"); + + // import installed + QTest::newRow("on") << SRCDIR "/data/mouseselection_true.qml" << true; + QTest::newRow("off") << SRCDIR "/data/mouseselection_false.qml" << false; + QTest::newRow("default") << SRCDIR "/data/mouseselection_default.qml" << false; +} + +void tst_qdeclarativetextedit::mouseSelection() +{ + QFETCH(QString, qmlfile); + QFETCH(bool, expectSelection); + + QDeclarativeView *canvas = createView(qmlfile); + + canvas->show(); + QApplication::setActiveWindow(canvas); + QTest::qWaitForWindowShown(canvas); + QTRY_COMPARE(QApplication::activeWindow(), static_cast(canvas)); + + QVERIFY(canvas->rootObject() != 0); + QDeclarativeTextEdit *textEditObject = qobject_cast(canvas->rootObject()); + QVERIFY(textEditObject != 0); + + // press-and-drag-and-release from x1 to x2 + int x1 = 10; + int x2 = 70; + int y = textEditObject->height()/2; + QTest::mousePress(canvas->viewport(), Qt::LeftButton, 0, canvas->mapFromScene(QPoint(x1,y))); + //QTest::mouseMove(canvas->viewport(), canvas->mapFromScene(QPoint(x2,y))); // doesn't work + QMouseEvent mv(QEvent::MouseMove, canvas->mapFromScene(QPoint(x2,y)), Qt::LeftButton, Qt::LeftButton,Qt::NoModifier); + QApplication::sendEvent(canvas->viewport(), &mv); + QTest::mouseRelease(canvas->viewport(), Qt::LeftButton, 0, canvas->mapFromScene(QPoint(x2,y))); + QString str = textEditObject->selectedText(); + if (expectSelection) + QVERIFY(str.length() > 3); // don't reallly care *what* was selected (and it's too sensitive to platform) + else + QVERIFY(str.isEmpty()); +} + void tst_qdeclarativetextedit::inputMethodHints() { QDeclarativeView *canvas = createView(SRCDIR "/data/inputmethodhints.qml"); -- cgit v1.2.1 From eea978b9744c24200496af4f8a37d76228a29320 Mon Sep 17 00:00:00 2001 From: Thierry Bastian Date: Wed, 19 May 2010 16:33:48 +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 --- tests/auto/qmenu/tst_qmenu.cpp | 54 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qmenu/tst_qmenu.cpp b/tests/auto/qmenu/tst_qmenu.cpp index e10d7ee69a..c8dc5161bf 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 @@ -106,6 +107,7 @@ private slots: void pushButtonPopulateOnAboutToShow(); void QTBUG7907_submenus_autoselect(); void QTBUG7411_submenus_activate(); + void QTBUG_10735_crashWithDialog(); protected slots: void onActivated(QAction*); void onHighlighted(QAction*); @@ -969,5 +971,57 @@ void tst_QMenu::QTBUG7411_submenus_activate() +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(0, 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 v1.2.1 From 8a0e7a7249c608c0e2548435c65661b5a876343b Mon Sep 17 00:00:00 2001 From: Denis Dzyubenko Date: Wed, 19 May 2010 14:02:53 +0200 Subject: Updated tst_qlocale autotest. Added countries/languages that were added in new cldr and forgotten to be added to the autotest. Reviewed-by: trustme --- tests/auto/qlocale/tst_qlocale.cpp | 89 +++++++++++++++++++++++++++++++++++++- 1 file changed, 88 insertions(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/qlocale/tst_qlocale.cpp b/tests/auto/qlocale/tst_qlocale.cpp index 5e050ab18a..bac2faa6d6 100644 --- a/tests/auto/qlocale/tst_qlocale.cpp +++ b/tests/auto/qlocale/tst_qlocale.cpp @@ -1324,10 +1324,12 @@ static const LocaleListItem g_locale_list[] = { { 9, 11}, // Armenian/Armenia { 10, 100}, // Assamese/India { 12, 15}, // Azerbaijani/Azerbaijan + { 12, 102}, // Azerbaijani/Iran { 14, 197}, // Basque/Spain { 15, 18}, // Bengali/Bangladesh { 15, 100}, // Bengali/India { 16, 25}, // Bhutani/Bhutan + { 19, 74}, // Breton/France { 20, 33}, // Bulgarian/Bulgaria { 21, 147}, // Burmese/Myanmar { 22, 20}, // Byelorussian/Belarus @@ -1357,6 +1359,7 @@ static const LocaleListItem g_locale_list[] = { { 31, 107}, // English/Jamaica { 31, 133}, // English/Malta { 31, 134}, // English/MarshallIslands + { 31, 137}, // English/Mauritius { 31, 148}, // English/Namibia { 31, 154}, // English/NewZealand { 31, 160}, // English/NorthernMarianaIslands @@ -1374,11 +1377,23 @@ static const LocaleListItem g_locale_list[] = { { 36, 73}, // Finnish/Finland { 37, 74}, // French/France { 37, 21}, // French/Belgium + { 37, 37}, // French/Cameroon { 37, 38}, // French/Canada + { 37, 41}, // French/CentralAfricanRepublic + { 37, 53}, // French/IvoryCoast + { 37, 88}, // French/Guadeloupe + { 37, 91}, // French/Guinea { 37, 125}, // French/Luxembourg + { 37, 128}, // French/Madagascar + { 37, 132}, // French/Mali + { 37, 135}, // French/Martinique { 37, 142}, // French/Monaco + { 37, 156}, // French/Niger + { 37, 176}, // French/Reunion { 37, 187}, // French/Senegal { 37, 206}, // French/Switzerland + { 37, 244}, // French/Saint Barthelemy + { 37, 245}, // French/Saint Martin { 40, 197}, // Galician/Spain { 41, 81}, // Georgian/Georgia { 42, 82}, // German/Germany @@ -1409,6 +1424,9 @@ static const LocaleListItem g_locale_list[] = { { 64, 179}, // Kinyarwanda/Rwanda { 65, 116}, // Kirghiz/Kyrgyzstan { 66, 114}, // Korean/RepublicOfKorea + { 67, 102}, // Kurdish/Iran + { 67, 103}, // Kurdish/Iraq + { 67, 207}, // Kurdish/SyrianArabRepublic { 67, 217}, // Kurdish/Turkey { 69, 117}, // Laothian/Lao { 71, 118}, // Latvian/Latvia @@ -1416,16 +1434,19 @@ static const LocaleListItem g_locale_list[] = { { 72, 50}, // Lingala/PeoplesRepublicOfCongo { 73, 124}, // Lithuanian/Lithuania { 74, 127}, // Macedonian/Macedonia + { 75, 128}, // Malagasy/Madagascar { 76, 130}, // Malay/Malaysia { 76, 32}, // Malay/BruneiDarussalam { 77, 100}, // Malayalam/India { 78, 133}, // Maltese/Malta + { 79, 154}, // Maori/NewZealand { 80, 100}, // Marathi/India { 82, 44}, // Mongolian/China { 82, 143}, // Mongolian/Mongolia { 84, 100}, // Nepali/India { 84, 150}, // Nepali/Nepal { 85, 161}, // Norwegian/Norway + { 86, 74}, // Occitan/France { 87, 100}, // Oriya/India { 88, 1}, // Pashto/Afghanistan { 89, 102}, // Persian/Iran @@ -1433,22 +1454,30 @@ static const LocaleListItem g_locale_list[] = { { 90, 172}, // Polish/Poland { 91, 173}, // Portuguese/Portugal { 91, 30}, // Portuguese/Brazil + { 91, 92}, // Portuguese/GuineaBissau + { 91, 146}, // Portuguese/Mozambique { 92, 100}, // Punjabi/India { 92, 163}, // Punjabi/Pakistan + { 94, 206}, // RhaetoRomance/Switzerland { 95, 141}, // Romanian/Moldova { 95, 177}, // Romanian/Romania { 96, 178}, // Russian/RussianFederation + { 96, 141}, // Russian/Moldova { 96, 222}, // Russian/Ukraine + { 98, 41}, // Sangho/CentralAfricanRepublic { 99, 100}, // Sanskrit/India { 100, 241}, // Serbian/SerbiaAndMontenegro { 100, 27}, // Serbian/BosniaAndHerzegowina { 100, 238}, // Serbian/Yugoslavia + { 100, 242}, // Serbian/Montenegro + { 100, 243}, // Serbian/Serbia { 101, 241}, // SerboCroatian/SerbiaAndMontenegro { 101, 27}, // SerboCroatian/BosniaAndHerzegowina { 101, 238}, // SerboCroatian/Yugoslavia { 102, 120}, // Sesotho/Lesotho { 102, 195}, // Sesotho/SouthAfrica { 103, 195}, // Setswana/SouthAfrica + { 104, 240}, // Shona/Zimbabwe { 106, 198}, // Singhalese/SriLanka { 107, 195}, // Siswati/SouthAfrica { 107, 204}, // Siswati/Swaziland @@ -1467,6 +1496,7 @@ static const LocaleListItem g_locale_list[] = { { 111, 61}, // Spanish/DominicanRepublic { 111, 63}, // Spanish/Ecuador { 111, 65}, // Spanish/ElSalvador + { 111, 66}, // Spanish/EquatorialGuinea { 111, 90}, // Spanish/Guatemala { 111, 96}, // Spanish/Honduras { 111, 139}, // Spanish/Mexico @@ -1484,9 +1514,12 @@ static const LocaleListItem g_locale_list[] = { { 114, 73}, // Swedish/Finland { 116, 209}, // Tajik/Tajikistan { 117, 100}, // Tamil/India + { 117, 198}, // Tamil/SriLanka { 118, 178}, // Tatar/RussianFederation { 119, 100}, // Telugu/India { 120, 211}, // Thai/Thailand + { 121, 44}, // Tibetan/China + { 121, 100}, // Tibetan/India { 122, 67}, // Tigrinya/Eritrea { 122, 69}, // Tigrinya/Ethiopia { 123, 214}, // Tonga/Tonga @@ -1527,9 +1560,63 @@ static const LocaleListItem g_locale_list[] = { { 160, 195}, // Venda/SouthAfrica { 161, 83}, // Ewe/Ghana { 161, 212}, // Ewe/Togo + { 162, 69}, // Walamo/Ethiopia { 163, 225}, // Hawaiian/UnitedStates { 164, 157}, // Tyap/Nigeria - { 165, 129} // Chewa/Malawi + { 165, 129}, // Chewa/Malawi + { 166, 170}, // Filipino/Philippines + { 167, 206}, // Swiss German/Switzerland + { 168, 44}, // Sichuan Yi/China + { 169, 91}, // Kpelle/Guinea + { 169, 121}, // Kpelle/Liberia + { 170, 82}, // Low German/Germany + { 171, 195}, // South Ndebele/SouthAfrica + { 172, 195}, // Northern Sotho/SouthAfrica + { 173, 73}, // Northern Sami/Finland + { 173, 161}, // Northern Sami/Norway + { 174, 208}, // Taroko/Taiwan + { 175, 111}, // Gusii/Kenya + { 176, 111}, // Taita/Kenya + { 177, 187}, // Fulah/Senegal + { 178, 111}, // Kikuyu/Kenya + { 179, 111}, // Samburu/Kenya + { 180, 146}, // Sena/Mozambique + { 181, 240}, // North Ndebele/Zimbabwe + { 182, 210}, // Rombo/Tanzania + { 183, 145}, // Tachelhit/Morocco + { 184, 3}, // Kabyle/Algeria + { 185, 221}, // Nyankole/Uganda + { 186, 210}, // Bena/Tanzania + { 187, 210}, // Vunjo/Tanzania + { 188, 132}, // Bambara/Mali + { 189, 111}, // Embu/Kenya + { 190, 225}, // Cherokee/UnitedStates + { 191, 137}, // Morisyen/Mauritius + { 192, 210}, // Makonde/Tanzania + { 193, 210}, // Langi/Tanzania + { 194, 221}, // Ganda/Uganda + { 195, 239}, // Bemba/Zambia + { 196, 39}, // Kabuverdianu/CapeVerde + { 197, 111}, // Meru/Kenya + { 198, 111}, // Kalenjin/Kenya + { 199, 148}, // Nama/Namibia + { 200, 210}, // Machame/Tanzania + { 201, 82}, // Colognian/Germany + { 202, 111}, // Masai/Kenya + { 202, 210}, // Masai/Tanzania + { 203, 221}, // Soga/Uganda + { 204, 111}, // Luyia/Kenya + { 205, 210}, // Asu/Tanzania + { 206, 111}, // Teso/Kenya + { 206, 221}, // Teso/Uganda + { 207, 67}, // Saho/Eritrea + { 208, 132}, // Koyra Chiini/Mali + { 209, 210}, // Rwa/Tanzania + { 210, 111}, // Luo/Kenya + { 211, 221}, // Chiga/Uganda + { 212, 145}, // Central Morocco Tamazight/Morocco + { 213, 132}, // Koyraboro Senni/Mali + { 214, 210} // Shambala/Tanzania }; static const int g_locale_list_count = sizeof(g_locale_list)/sizeof(g_locale_list[0]); -- cgit v1.2.1 From 38e9c2224c3c0e83d42f3a7d6e525172341bbbf6 Mon Sep 17 00:00:00 2001 From: Denis Dzyubenko Date: Wed, 19 May 2010 14:23:04 +0200 Subject: Added default countries for Mongolian and Nepali. Task-number: QTBUG-9370 Reviewed-by: trustme --- tests/auto/qlocale/tst_qlocale.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qlocale/tst_qlocale.cpp b/tests/auto/qlocale/tst_qlocale.cpp index bac2faa6d6..7e9b8ec3d0 100644 --- a/tests/auto/qlocale/tst_qlocale.cpp +++ b/tests/auto/qlocale/tst_qlocale.cpp @@ -327,6 +327,10 @@ void tst_QLocale::ctor() TEST_CTOR("es_ES", Spanish, Spain) TEST_CTOR("es_419", Spanish, LatinAmericaAndTheCaribbean) + // test default countries for languages + TEST_CTOR("mn", Mongolian, Mongolia) + TEST_CTOR("ne", Nepali, Nepal) + #undef TEST_CTOR } -- cgit v1.2.1 From e3664eb48e3a0db0d30b88b8d403e21ef0d0f277 Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Thu, 20 May 2010 12:16:52 +1000 Subject: Fix test. Missed files. --- .../qdeclarativetextedit/data/mouseselection_default.qml | 7 +++++++ .../declarative/qdeclarativetextedit/data/mouseselection_false.qml | 7 +++++++ .../declarative/qdeclarativetextedit/data/mouseselection_true.qml | 7 +++++++ 3 files changed, 21 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativetextedit/data/mouseselection_default.qml create mode 100644 tests/auto/declarative/qdeclarativetextedit/data/mouseselection_false.qml create mode 100644 tests/auto/declarative/qdeclarativetextedit/data/mouseselection_true.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_default.qml b/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_default.qml new file mode 100644 index 0000000000..f1cf86cd4e --- /dev/null +++ b/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_default.qml @@ -0,0 +1,7 @@ +import Qt 4.7 + +TextEdit { + focus: true + text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ" + selectByMouse: false +} diff --git a/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_false.qml b/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_false.qml new file mode 100644 index 0000000000..f1cf86cd4e --- /dev/null +++ b/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_false.qml @@ -0,0 +1,7 @@ +import Qt 4.7 + +TextEdit { + focus: true + text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ" + selectByMouse: false +} diff --git a/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_true.qml b/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_true.qml new file mode 100644 index 0000000000..90383b9418 --- /dev/null +++ b/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_true.qml @@ -0,0 +1,7 @@ +import Qt 4.7 + +TextEdit { + focus: true + text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ" + selectByMouse: true +} -- cgit v1.2.1 From 223abd4d483d3bc9f45ef2bfae8898ab95d7a9df Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Thu, 20 May 2010 12:59:33 +1000 Subject: Fix test --- .../declarative/qdeclarativeinstruction/tst_qdeclarativeinstruction.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeinstruction/tst_qdeclarativeinstruction.cpp b/tests/auto/declarative/qdeclarativeinstruction/tst_qdeclarativeinstruction.cpp index 9ae26f2e33..1e88255fcc 100644 --- a/tests/auto/declarative/qdeclarativeinstruction/tst_qdeclarativeinstruction.cpp +++ b/tests/auto/declarative/qdeclarativeinstruction/tst_qdeclarativeinstruction.cpp @@ -534,7 +534,6 @@ void tst_qdeclarativeinstruction::dump() << "-------------------------------------------------------------------------------" << "0\t\t0\tINIT\t\t\t0\t3\t-1\t-1" << "1\t\t1\tCREATE\t\t\t0\t\t\t\"Test\"" - << "1\t\t1\tCREATE_SIMPLE\t\t-1" << "2\t\t2\tSETID\t\t\t0\t\t\t\"testId\"" << "3\t\t3\tSET_DEFAULT" << "4\t\t4\tCREATE_COMPONENT\t3" -- cgit v1.2.1 From c91a5420d119ab604c7df709fcee00ae6b1b248f Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Thu, 20 May 2010 13:38:26 +1000 Subject: Autotest (XFAIL) for QTBUG-10822 --- .../qdeclarativelanguage/data/dynamicObjectProperties.2.qml | 11 +++++++++++ .../qdeclarativelanguage/tst_qdeclarativelanguage.cpp | 11 +++++++++++ 2 files changed, 22 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativelanguage/data/dynamicObjectProperties.2.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativelanguage/data/dynamicObjectProperties.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/dynamicObjectProperties.2.qml new file mode 100644 index 0000000000..df3de207ea --- /dev/null +++ b/tests/auto/declarative/qdeclarativelanguage/data/dynamicObjectProperties.2.qml @@ -0,0 +1,11 @@ +import Qt 4.7 +import Qt 4.7 as Qt47 + +Qt.QtObject { + property Qt47.QtObject objectProperty + property list objectPropertyList + + objectProperty: QtObject {} + objectPropertyList: QtObject {} +} + diff --git a/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp b/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp index 200f0162ea..011870c99e 100644 --- a/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp +++ b/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp @@ -683,6 +683,7 @@ void tst_qdeclarativelanguage::listProperties() // ### Not complete void tst_qdeclarativelanguage::dynamicObjectProperties() { + { QDeclarativeComponent component(&engine, TEST_FILE("dynamicObjectProperties.qml")); VERIFY_ERRORS(0); QObject *object = component.create(); @@ -690,6 +691,16 @@ void tst_qdeclarativelanguage::dynamicObjectProperties() QVERIFY(object->property("objectProperty") == qVariantFromValue((QObject*)0)); QVERIFY(object->property("objectProperty2") != qVariantFromValue((QObject*)0)); + } + { + QDeclarativeComponent component(&engine, TEST_FILE("dynamicObjectProperties.2.qml")); + QEXPECT_FAIL("", "QTBUG-10822", Abort); + VERIFY_ERRORS(0); + QObject *object = component.create(); + QVERIFY(object != 0); + + QVERIFY(object->property("objectProperty") != qVariantFromValue((QObject*)0)); + } } // Tests the declaration of dynamic signals and slots -- cgit v1.2.1 From c37a7442d298ccec251b9178a31b1f0c8f199676 Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Thu, 20 May 2010 14:04:04 +1000 Subject: Make test more stable --- tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp b/tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp index dd2f46e5e6..b1831053ca 100644 --- a/tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp +++ b/tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp @@ -45,6 +45,7 @@ #include #include #include +#include "../../../shared/util.h" class tst_QDeclarativeView : public QObject @@ -106,9 +107,9 @@ void tst_QDeclarativeView::resizemodedeclarativeitem() // size update from root object declarativeItem->setWidth(250); declarativeItem->setHeight(350); - qApp->processEvents(); QCOMPARE(declarativeItem->width(), 250.0); QCOMPARE(declarativeItem->height(), 350.0); + QTRY_COMPARE(canvas->size(), QSize(250, 350)); QCOMPARE(canvas->size(), QSize(250, 350)); QCOMPARE(canvas->size(), canvas->sizeHint()); QCOMPARE(sceneResizedSpy.count(), 4); @@ -134,9 +135,9 @@ void tst_QDeclarativeView::resizemodedeclarativeitem() // size update from root object declarativeItem->setWidth(80); declarativeItem->setHeight(100); - qApp->processEvents(); QCOMPARE(declarativeItem->width(), 80.0); QCOMPARE(declarativeItem->height(), 100.0); + QTRY_COMPARE(canvas->size(), QSize(80, 100)); QCOMPARE(canvas->size(), QSize(80, 100)); QCOMPARE(canvas->size(), canvas->sizeHint()); QCOMPARE(sceneResizedSpy2.count(), 2); -- cgit v1.2.1 From 5732a44092e17829985a381400bafccc326a0d1f Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Thu, 20 May 2010 14:08:41 +1000 Subject: Rename Component::errorsString() -> errorString() (and also for QDeclarativeComponent) --- .../declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp index 9a88237fd2..32d5da79b3 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp +++ b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp @@ -2427,7 +2427,6 @@ void tst_qdeclarativeecmascript::include() // Including file with ".pragma library" { QDeclarativeComponent component(&engine, TEST_FILE("include_pragma.qml")); - qDebug() << "errors:" << component.errorsString(); QObject *o = component.create(); QVERIFY(o != 0); QCOMPARE(o->property("test1").toInt(), 100); -- cgit v1.2.1 From cae5ae70dab4272e5b7313ea101ce32eb6c22240 Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Thu, 20 May 2010 14:22:24 +1000 Subject: Improve testcase As the default was AllUppercase, the tests weren't actually testing anything other than that assigning enums had no errors --- tests/auto/declarative/qdeclarativevaluetypes/data/enums.5.qml | 10 ++++++++++ tests/auto/declarative/qdeclarativevaluetypes/testtypes.h | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 tests/auto/declarative/qdeclarativevaluetypes/data/enums.5.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/enums.5.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/enums.5.qml new file mode 100644 index 0000000000..a66e9d6689 --- /dev/null +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/enums.5.qml @@ -0,0 +1,10 @@ +import Test 1.0 +import Qt 4.7 as MyQt + +MyTypeObject { + MyQt.Component.onCompleted: { + font.capitalization = MyQt.Font.AllUppercase + } +} + + diff --git a/tests/auto/declarative/qdeclarativevaluetypes/testtypes.h b/tests/auto/declarative/qdeclarativevaluetypes/testtypes.h index 1da9990605..7ed3993e25 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/testtypes.h +++ b/tests/auto/declarative/qdeclarativevaluetypes/testtypes.h @@ -99,7 +99,7 @@ public: m_font.setOverline(true); m_font.setStrikeOut(true); m_font.setPointSize(29); - m_font.setCapitalization(QFont::AllUppercase); + m_font.setCapitalization(QFont::AllLowercase); m_font.setLetterSpacing(QFont::AbsoluteSpacing, 10.2); m_font.setWordSpacing(19.7); } -- cgit v1.2.1 From 5b3937ce27d04ce240662521321dfdc3e1a8373b Mon Sep 17 00:00:00 2001 From: Aaron Kennedy Date: Thu, 20 May 2010 14:23:07 +1000 Subject: Ensure valuetype enums can be assigned from JS QTBUG-10830 --- .../qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp b/tests/auto/declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp index 95b9baacfe..53fd68c453 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp +++ b/tests/auto/declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp @@ -838,6 +838,14 @@ void tst_qdeclarativevaluetypes::enums() QVERIFY(object->font().capitalization() == QFont::AllUppercase); delete object; } + + { + QDeclarativeComponent component(&engine, TEST_FILE("enums.5.qml")); + MyTypeObject *object = qobject_cast(component.create()); + QVERIFY(object != 0); + QVERIFY(object->font().capitalization() == QFont::AllUppercase); + delete object; + } } // Tests switching between "conflicting" bindings (eg. a binding on the core -- cgit v1.2.1 From 972134e16767d1ea5224fba911c894eb22b70ca4 Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Thu, 20 May 2010 14:23:50 +1000 Subject: Stop highlight animators for highlightFollowsCurrentItem: false Task-number: QTBUG-10803 --- .../qdeclarativegridview/data/manual-highlight.qml | 48 ++++++++++++++++++++++ .../tst_qdeclarativegridview.cpp | 30 ++++++++++++++ .../qdeclarativelistview/data/manual-highlight.qml | 47 +++++++++++++++++++++ .../tst_qdeclarativelistview.cpp | 29 +++++++++++++ 4 files changed, 154 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativegridview/data/manual-highlight.qml create mode 100644 tests/auto/declarative/qdeclarativelistview/data/manual-highlight.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativegridview/data/manual-highlight.qml b/tests/auto/declarative/qdeclarativegridview/data/manual-highlight.qml new file mode 100644 index 0000000000..510fcc542b --- /dev/null +++ b/tests/auto/declarative/qdeclarativegridview/data/manual-highlight.qml @@ -0,0 +1,48 @@ +import Qt 4.7 + +Item { + + ListModel { + id: model + ListElement { + name: "Bill Smith" + number: "555 3264" + } + ListElement { + name: "John Brown" + number: "555 8426" + } + ListElement { + name: "Sam Wise" + number: "555 0473" + } + ListElement { + name: "Bob Brown" + number: "555 5845" + } + } + + Component { + id: highlight + Rectangle { + objectName: "highlight" + width: 80; height: 80 + color: "lightsteelblue"; radius: 5 + y: grid.currentItem.y + x: grid.currentItem.x + } + } + + GridView { + id: grid + objectName: "grid" + anchors.fill: parent + model: model + delegate: Text { objectName: "wrapper"; text: name; width: 80; height: 80 } + + highlight: highlight + highlightFollowsCurrentItem: false + focus: true + } + +} diff --git a/tests/auto/declarative/qdeclarativegridview/tst_qdeclarativegridview.cpp b/tests/auto/declarative/qdeclarativegridview/tst_qdeclarativegridview.cpp index 89be1515b7..2db3ee678a 100644 --- a/tests/auto/declarative/qdeclarativegridview/tst_qdeclarativegridview.cpp +++ b/tests/auto/declarative/qdeclarativegridview/tst_qdeclarativegridview.cpp @@ -75,6 +75,7 @@ private slots: void resetModel(); void enforceRange(); void QTBUG_8456(); + void manualHighlight(); private: QDeclarativeView *createView(); @@ -1107,6 +1108,35 @@ void tst_QDeclarativeGridView::QTBUG_8456() QTRY_COMPARE(gridview->currentIndex(), 0); } +void tst_QDeclarativeGridView::manualHighlight() +{ + QDeclarativeView *canvas = createView(); + + QString filename(SRCDIR "/data/manual-highlight.qml"); + canvas->setSource(QUrl::fromLocalFile(filename)); + + qApp->processEvents(); + + QDeclarativeGridView *gridview = findItem(canvas->rootObject(), "grid"); + QTRY_VERIFY(gridview != 0); + + QDeclarativeItem *viewport = gridview->viewport(); + QTRY_VERIFY(viewport != 0); + + QTRY_COMPARE(gridview->currentIndex(), 0); + QTRY_COMPARE(gridview->currentItem(), findItem(viewport, "wrapper", 0)); + QTRY_COMPARE(gridview->highlightItem()->y(), gridview->currentItem()->y()); + QTRY_COMPARE(gridview->highlightItem()->x(), gridview->currentItem()->x()); + + gridview->setCurrentIndex(2); + + QTRY_COMPARE(gridview->currentIndex(), 2); + QTRY_COMPARE(gridview->currentItem(), findItem(viewport, "wrapper", 2)); + QTRY_COMPARE(gridview->highlightItem()->y(), gridview->currentItem()->y()); + QTRY_COMPARE(gridview->highlightItem()->x(), gridview->currentItem()->x()); +} + + QDeclarativeView *tst_QDeclarativeGridView::createView() { QDeclarativeView *canvas = new QDeclarativeView(0); diff --git a/tests/auto/declarative/qdeclarativelistview/data/manual-highlight.qml b/tests/auto/declarative/qdeclarativelistview/data/manual-highlight.qml new file mode 100644 index 0000000000..4913ebe97d --- /dev/null +++ b/tests/auto/declarative/qdeclarativelistview/data/manual-highlight.qml @@ -0,0 +1,47 @@ +import Qt 4.7 + +Item { + + ListModel { + id: model + ListElement { + name: "Bill Smith" + number: "555 3264" + } + ListElement { + name: "John Brown" + number: "555 8426" + } + ListElement { + name: "Sam Wise" + number: "555 0473" + } + ListElement { + name: "Bob Brown" + number: "555 5845" + } + } + + Component { + id: highlight + Rectangle { + objectName: "highlight" + width: 180; height: 20 + color: "lightsteelblue"; radius: 5 + y: list.currentItem.y + } + } + + ListView { + id: list + objectName: "list" + anchors.fill: parent + model: model + delegate: Text { objectName: "wrapper"; text: name } + + highlight: highlight + highlightFollowsCurrentItem: false + focus: true + } + +} diff --git a/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp b/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp index fde2e43c44..203760e469 100644 --- a/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp +++ b/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp @@ -90,6 +90,7 @@ private slots: void componentChanges(); void modelChanges(); void QTBUG_9791(); + void manualHighlight(); private: template void items(); @@ -1463,6 +1464,34 @@ void tst_QDeclarativeListView::QTBUG_9791() delete canvas; } +void tst_QDeclarativeListView::manualHighlight() +{ + QDeclarativeView *canvas = new QDeclarativeView(0); + canvas->setFixedSize(240,320); + + QDeclarativeContext *ctxt = canvas->rootContext(); + + QString filename(SRCDIR "/data/manual-highlight.qml"); + canvas->setSource(QUrl::fromLocalFile(filename)); + + qApp->processEvents(); + + QDeclarativeListView *listview = findItem(canvas->rootObject(), "list"); + QTRY_VERIFY(listview != 0); + + QDeclarativeItem *viewport = listview->viewport(); + QTRY_VERIFY(viewport != 0); + + QTRY_COMPARE(listview->currentIndex(), 0); + QTRY_COMPARE(listview->currentItem(), findItem(viewport, "wrapper", 0)); + QTRY_COMPARE(listview->highlightItem()->y(), listview->currentItem()->y()); + + listview->setCurrentIndex(2); + + QTRY_COMPARE(listview->currentIndex(), 2); + QTRY_COMPARE(listview->currentItem(), findItem(viewport, "wrapper", 2)); + QTRY_COMPARE(listview->highlightItem()->y(), listview->currentItem()->y()); +} void tst_QDeclarativeListView::qListModelInterface_items() { -- cgit v1.2.1 From e792c38a265ecf21b508e98c9c81e3da8576d709 Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Thu, 20 May 2010 13:01:10 +1000 Subject: Improve error messages when tests fail. --- .../tst_qdeclarativeecmascript.cpp | 29 +++++++++++----------- 1 file changed, 15 insertions(+), 14 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp index 32d5da79b3..4900fa2548 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp +++ b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp @@ -2102,20 +2102,21 @@ void tst_qdeclarativeecmascript::numberAssignment() QObject *object = component.create(); QVERIFY(object != 0); - QVERIFY(object->property("test1") == QVariant((qreal)6.7)); - QVERIFY(object->property("test2") == QVariant((qreal)6.7)); - QVERIFY(object->property("test3") == QVariant((qreal)6)); - QVERIFY(object->property("test4") == QVariant((qreal)6)); - - QVERIFY(object->property("test5") == QVariant((int)7)); - QVERIFY(object->property("test6") == QVariant((int)7)); - QVERIFY(object->property("test7") == QVariant((int)6)); - QVERIFY(object->property("test8") == QVariant((int)6)); - - QVERIFY(object->property("test9") == QVariant((unsigned int)7)); - QVERIFY(object->property("test10") == QVariant((unsigned int)7)); - QVERIFY(object->property("test11") == QVariant((unsigned int)6)); - QVERIFY(object->property("test12") == QVariant((unsigned int)6)); + QCOMPARE(object->property("test1"), QVariant((qreal)6.7)); + QCOMPARE(object->property("test2"), QVariant((qreal)6.7)); + QCOMPARE(object->property("test2"), QVariant((qreal)6.7)); + QCOMPARE(object->property("test3"), QVariant((qreal)6)); + QCOMPARE(object->property("test4"), QVariant((qreal)6)); + + QCOMPARE(object->property("test5"), QVariant((int)7)); + QCOMPARE(object->property("test6"), QVariant((int)7)); + QCOMPARE(object->property("test7"), QVariant((int)6)); + QCOMPARE(object->property("test8"), QVariant((int)6)); + + QCOMPARE(object->property("test9"), QVariant((unsigned int)7)); + QCOMPARE(object->property("test10"), QVariant((unsigned int)7)); + QCOMPARE(object->property("test11"), QVariant((unsigned int)6)); + QCOMPARE(object->property("test12"), QVariant((unsigned int)6)); delete object; } -- cgit v1.2.1 From 1057b0a334c9ac7e7e1f3287935fad06de423108 Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Thu, 20 May 2010 14:35:07 +1000 Subject: Add XmlListModel::errorString() --- .../qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp b/tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp index 4173a44353..7769979c9b 100644 --- a/tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp +++ b/tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp @@ -268,10 +268,12 @@ void tst_qdeclarativexmllistmodel::xml() QDeclarativeXmlListModel *model = qobject_cast(component.create()); QSignalSpy spy(model, SIGNAL(statusChanged(QDeclarativeXmlListModel::Status))); + QVERIFY(model->errorString().isEmpty()); QCOMPARE(model->progress(), qreal(0.0)); QCOMPARE(model->status(), QDeclarativeXmlListModel::Loading); QTRY_COMPARE(spy.count(), 1); spy.clear(); QCOMPARE(model->status(), QDeclarativeXmlListModel::Ready); + QVERIFY(model->errorString().isEmpty()); QCOMPARE(model->progress(), qreal(1.0)); QCOMPARE(model->count(), 9); @@ -284,6 +286,7 @@ void tst_qdeclarativexmllistmodel::xml() QCOMPARE(model->status(), QDeclarativeXmlListModel::Loading); QTRY_COMPARE(spy.count(), 1); spy.clear(); QCOMPARE(model->status(), QDeclarativeXmlListModel::Ready); + QVERIFY(model->errorString().isEmpty()); QCOMPARE(model->count(), count); delete model; @@ -309,10 +312,12 @@ void tst_qdeclarativexmllistmodel::source() QDeclarativeXmlListModel *model = qobject_cast(component.create()); QSignalSpy spy(model, SIGNAL(statusChanged(QDeclarativeXmlListModel::Status))); + QVERIFY(model->errorString().isEmpty()); QCOMPARE(model->progress(), qreal(0.0)); QCOMPARE(model->status(), QDeclarativeXmlListModel::Loading); QTRY_COMPARE(spy.count(), 1); spy.clear(); QCOMPARE(model->status(), QDeclarativeXmlListModel::Ready); + QVERIFY(model->errorString().isEmpty()); QCOMPARE(model->progress(), qreal(1.0)); QCOMPARE(model->count(), 9); @@ -320,6 +325,7 @@ void tst_qdeclarativexmllistmodel::source() QCOMPARE(model->progress(), qreal(0.0)); QTRY_COMPARE(spy.count(), 1); spy.clear(); QCOMPARE(model->status(), QDeclarativeXmlListModel::Loading); + QVERIFY(model->errorString().isEmpty()); QEventLoop loop; QTimer timer; @@ -337,9 +343,12 @@ void tst_qdeclarativexmllistmodel::source() QCOMPARE(model->status(), status); QCOMPARE(model->count(), count); + if (status == QDeclarativeXmlListModel::Ready) QCOMPARE(model->progress(), qreal(1.0)); + QCOMPARE(model->errorString().isEmpty(), status == QDeclarativeXmlListModel::Ready); + delete model; } -- cgit v1.2.1 From 33f59e150e871a1a090f478bfdfa22dc175a9d6e Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Thu, 20 May 2010 14:40:21 +1000 Subject: Test e75088323ae15604139ddfd66b85cc3b8d43abeb Task-number: QTBUG-10820 --- tests/auto/declarative/qdeclarativeecmascript/data/compiled.qml | 4 ++++ .../declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp | 2 ++ 2 files changed, 6 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/compiled.qml b/tests/auto/declarative/qdeclarativeecmascript/data/compiled.qml index a883e85e75..165590585d 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/compiled.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/compiled.qml @@ -31,6 +31,8 @@ QtObject { property string test21: g property string test22: h property bool test23: i + property color test24: j + property color test25: k property real a: 4.5 property real b: 11.2 @@ -41,4 +43,6 @@ QtObject { property variant g: 6.7 property variant h: "!" property variant i: true + property string j: "#112233" + property string k: "#aa112233" } diff --git a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp index 4900fa2548..9a8ad647fe 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp +++ b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp @@ -2090,6 +2090,8 @@ void tst_qdeclarativeecmascript::compiled() QCOMPARE(object->property("test21").toString(), QLatin1String("6.7")); QCOMPARE(object->property("test22").toString(), QLatin1String("!")); QCOMPARE(object->property("test23").toBool(), true); + QCOMPARE(qvariant_cast(object->property("test24")), QColor(0x11,0x22,0x33)); + QCOMPARE(qvariant_cast(object->property("test25")), QColor(0x11,0x22,0x33,0xAA)); delete object; } -- cgit v1.2.1 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(-) (limited to 'tests/auto') diff --git a/tests/auto/qaudiodeviceinfo/tst_qaudiodeviceinfo.cpp b/tests/auto/qaudiodeviceinfo/tst_qaudiodeviceinfo.cpp index d3d81e6555..7e16ed919b 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 v1.2.1 From 9c13272ddeea2408c83eb12a9f1fcceeb6a7589e Mon Sep 17 00:00:00 2001 From: Ritt Konstantin Date: Thu, 20 May 2010 10:47:19 +0200 Subject: more subtests for QChar Merge-request: 2392 Reviewed-by: Olivier Goffart --- tests/auto/qchar/tst_qchar.cpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qchar/tst_qchar.cpp b/tests/auto/qchar/tst_qchar.cpp index 5ca225529f..9f70b8c6e3 100644 --- a/tests/auto/qchar/tst_qchar.cpp +++ b/tests/auto/qchar/tst_qchar.cpp @@ -75,6 +75,7 @@ private slots: void isPrint(); void isUpper(); void isLower(); + void isTitle(); void category(); void direction(); void joining(); @@ -234,6 +235,11 @@ void tst_QChar::isUpper() QVERIFY(!QChar('?').isUpper()); QVERIFY(QChar(0xC2).isUpper()); // A with ^ QVERIFY(!QChar(0xE2).isUpper()); // a with ^ + + for (uint codepoint = 0; codepoint <= UNICODE_LAST_CODEPOINT; ++codepoint) { + if (QChar::category(codepoint) == QChar::Letter_Uppercase) + QVERIFY(codepoint == QChar::toUpper(codepoint)); + } } void tst_QChar::isLower() @@ -245,6 +251,19 @@ void tst_QChar::isLower() QVERIFY(!QChar('?').isLower()); QVERIFY(!QChar(0xC2).isLower()); // A with ^ QVERIFY(QChar(0xE2).isLower()); // a with ^ + + for (uint codepoint = 0; codepoint <= UNICODE_LAST_CODEPOINT; ++codepoint) { + if (QChar::category(codepoint) == QChar::Letter_Lowercase) + QVERIFY(codepoint == QChar::toLower(codepoint)); + } +} + +void tst_QChar::isTitle() +{ + for (uint codepoint = 0; codepoint <= UNICODE_LAST_CODEPOINT; ++codepoint) { + if (QChar::category(codepoint) == QChar::Letter_Titlecase) + QVERIFY(codepoint == QChar::toTitleCase(codepoint)); + } } void tst_QChar::category() -- cgit v1.2.1 From 89a5f382e1eff75c3d3f015b3fce0a58b8079e04 Mon Sep 17 00:00:00 2001 From: Ritt Konstantin Date: Thu, 20 May 2010 10:47:21 +0200 Subject: improve Unicode Normalization autotest Merge-request: 2392 Reviewed-by: Olivier Goffart --- tests/auto/qchar/tst_qchar.cpp | 85 ++++++++++++++++++++++++++++-------------- 1 file changed, 57 insertions(+), 28 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qchar/tst_qchar.cpp b/tests/auto/qchar/tst_qchar.cpp index 9f70b8c6e3..93aaf9632f 100644 --- a/tests/auto/qchar/tst_qchar.cpp +++ b/tests/auto/qchar/tst_qchar.cpp @@ -43,6 +43,7 @@ #include #include #include +#include #include #if defined(Q_OS_WINCE) #include @@ -84,7 +85,9 @@ private slots: void decomposition(); // void ligature(); void lineBreakClass(); + void normalization_data(); void normalization(); + void normalization_manual(); void normalizationCorrections(); void unicodeVersion(); #if defined(Q_OS_WINCE) @@ -505,31 +508,13 @@ void tst_QChar::lineBreakClass() QVERIFY(QUnicodeTables::lineBreakClass(0x0fffdu) == QUnicodeTables::LineBreak_AL); } -void tst_QChar::normalization() +void tst_QChar::normalization_data() { - { - QString composed; - composed += QChar(0xc0); - QString decomposed; - decomposed += QChar(0x41); - decomposed += QChar(0x300); + QTest::addColumn("columns"); + QTest::addColumn("part"); - QVERIFY(composed.normalized(QString::NormalizationForm_D) == decomposed); - QVERIFY(composed.normalized(QString::NormalizationForm_C) == composed); - QVERIFY(composed.normalized(QString::NormalizationForm_KD) == decomposed); - QVERIFY(composed.normalized(QString::NormalizationForm_KC) == composed); - } - { - QString composed; - composed += QChar(0xa0); - QString decomposed; - decomposed += QChar(0x20); - - QVERIFY(composed.normalized(QString::NormalizationForm_D) == composed); - QVERIFY(composed.normalized(QString::NormalizationForm_C) == composed); - QVERIFY(composed.normalized(QString::NormalizationForm_KD) == decomposed); - QVERIFY(composed.normalized(QString::NormalizationForm_KC) == decomposed); - } + int linenum = 0; + int part = 0; QFile f(SRCDIR "NormalizationTest.txt"); QVERIFY(f.exists()); @@ -537,6 +522,8 @@ void tst_QChar::normalization() f.open(QIODevice::ReadOnly); while (!f.atEnd()) { + linenum++; + QByteArray line; line.resize(1024); int len = f.readLine(line.data(), 1024); @@ -546,8 +533,11 @@ void tst_QChar::normalization() if (comment >= 0) line = line.left(comment); - if (line.startsWith("@")) + if (line.startsWith("@")) { + if (line.startsWith("@Part") && line.size() > 5 && QChar(line.at(5)).isDigit()) + part = QChar(line.at(5)).digitValue(); continue; + } if (line.isEmpty()) continue; @@ -560,8 +550,10 @@ void tst_QChar::normalization() Q_ASSERT(l.size() == 5); - QString columns[5]; + QStringList columns; for (int i = 0; i < 5; ++i) { + columns.append(QString()); + QList c = l.at(i).split(' '); Q_ASSERT(!c.isEmpty()); @@ -572,15 +564,26 @@ void tst_QChar::normalization() columns[i].append(QChar(uc)); else { // convert to utf16 - uc -= 0x10000; - ushort high = uc/0x400 + 0xd800; - ushort low = uc%0x400 + 0xdc00; + ushort high = QChar::highSurrogate(uc); + ushort low = QChar::lowSurrogate(uc); columns[i].append(QChar(high)); columns[i].append(QChar(low)); } } } + QString nm = QString("line #%1:").arg(linenum); + QTest::newRow(nm.toLatin1()) << columns << part; + } +} + +void tst_QChar::normalization() +{ + QFETCH(QStringList, columns); + QFETCH(int, part); + + Q_UNUSED(part) + // CONFORMANCE: // 1. The following invariants must be true for all conformant implementations // @@ -630,6 +633,32 @@ void tst_QChar::normalization() // ################# +} + +void tst_QChar::normalization_manual() +{ + { + QString composed; + composed += QChar(0xc0); + QString decomposed; + decomposed += QChar(0x41); + decomposed += QChar(0x300); + + QVERIFY(composed.normalized(QString::NormalizationForm_D) == decomposed); + QVERIFY(composed.normalized(QString::NormalizationForm_C) == composed); + QVERIFY(composed.normalized(QString::NormalizationForm_KD) == decomposed); + QVERIFY(composed.normalized(QString::NormalizationForm_KC) == composed); + } + { + QString composed; + composed += QChar(0xa0); + QString decomposed; + decomposed += QChar(0x20); + + QVERIFY(composed.normalized(QString::NormalizationForm_D) == composed); + QVERIFY(composed.normalized(QString::NormalizationForm_C) == composed); + QVERIFY(composed.normalized(QString::NormalizationForm_KD) == decomposed); + QVERIFY(composed.normalized(QString::NormalizationForm_KC) == decomposed); } } -- cgit v1.2.1 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 --- tests/auto/qapplication/tst_qapplication.cpp | 78 ++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qapplication/tst_qapplication.cpp b/tests/auto/qapplication/tst_qapplication.cpp index 459ac2ba13..43fbba104a 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 v1.2.1 From 76fcf30c0f275a7c9f9752b1be5cb1d5ba98d9b6 Mon Sep 17 00:00:00 2001 From: Thierry Bastian Date: Thu, 20 May 2010 12:26:11 +0200 Subject: Autotest fix on macosx --- tests/auto/qmenu/tst_qmenu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/qmenu/tst_qmenu.cpp b/tests/auto/qmenu/tst_qmenu.cpp index c8dc5161bf..b6bdb36a96 100644 --- a/tests/auto/qmenu/tst_qmenu.cpp +++ b/tests/auto/qmenu/tst_qmenu.cpp @@ -988,7 +988,7 @@ public: popup(QPoint()); QTest::qWaitForWindowShown(this); setActiveAction(dialogActions[index]); - QTimer::singleShot(0, this, SLOT(checkVisibility())); + QTimer::singleShot(500, this, SLOT(checkVisibility())); QTest::keyClick(this, Qt::Key_Enter); //activation } -- cgit v1.2.1 From 2c1d1c136102a17eef9ae3c4e9f0cf01338306ae Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Thu, 20 May 2010 13:07:41 +0200 Subject: Deselect the current selection when the QItemSelectionModel::model is reset. Merge-request: 639 Reviewed-by: Olivier Goffart --- .../tst_qitemselectionmodel.cpp | 47 ++++++++++++++++++++-- 1 file changed, 43 insertions(+), 4 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qitemselectionmodel/tst_qitemselectionmodel.cpp b/tests/auto/qitemselectionmodel/tst_qitemselectionmodel.cpp index 3b2a7167c0..9858829936 100644 --- a/tests/auto/qitemselectionmodel/tst_qitemselectionmodel.cpp +++ b/tests/auto/qitemselectionmodel/tst_qitemselectionmodel.cpp @@ -1536,6 +1536,43 @@ public: inline void reset() { QStandardItemModel::reset(); } }; +class ResetObserver : public QObject +{ + QItemSelectionModel * const m_selectionModel; + QItemSelection m_selection; + Q_OBJECT +public: + ResetObserver(QItemSelectionModel *selectionModel) + : m_selectionModel(selectionModel) + { + connect(selectionModel->model(), SIGNAL(modelAboutToBeReset()),SLOT(modelAboutToBeReset())); + connect(selectionModel, SIGNAL(selectionChanged(QItemSelection,QItemSelection)), SLOT(selectionChanged(QItemSelection,QItemSelection))); + connect(selectionModel->model(), SIGNAL(modelReset()),SLOT(modelReset())); + } + +private slots: + void modelAboutToBeReset() + { + m_selection = m_selectionModel->selection(); + foreach(const QItemSelectionRange &range, m_selection) + { + QVERIFY(range.isValid()); + } + } + + void selectionChanged(const QItemSelection &selected, const QItemSelection &deselected) + { + qDebug() << deselected << selected; + QCOMPARE(m_selection, deselected); + m_selection.clear(); + } + + void modelReset() + { + QVERIFY(m_selectionModel->selection().isEmpty()); + } +}; + void tst_QItemSelectionModel::resetModel() { MyStandardItemModel model(20, 20); @@ -1555,11 +1592,13 @@ void tst_QItemSelectionModel::resetModel() view.selectionModel()->select(QItemSelection(model.index(0, 0), model.index(5, 5)), QItemSelectionModel::Select); - QCOMPARE(spy.count(), 2); - QCOMPARE(spy.at(1).count(), 2); + // We get this signal three times. Twice in this test method and once because the source reset causes the current selection to + // be deselected. + QCOMPARE(spy.count(), 3); + QCOMPARE(spy.at(2).count(), 2); // make sure we don't get an "old selection" - QCOMPARE(spy.at(1).at(1).userType(), qMetaTypeId()); - QVERIFY(qvariant_cast(spy.at(1).at(1)).isEmpty()); + QCOMPARE(spy.at(2).at(1).userType(), qMetaTypeId()); + QVERIFY(qvariant_cast(spy.at(2).at(1)).isEmpty()); } void tst_QItemSelectionModel::removeRows_data() -- cgit v1.2.1 From 30b490476bad5d486332093fc672856a8dd6a195 Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Thu, 20 May 2010 16:42:06 +1000 Subject: Add XmlListModel::get() Task-number: QTBUG-10761 --- .../tst_qdeclarativexmllistmodel.cpp | 41 ++++++++++++++++++++++ 1 file changed, 41 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp b/tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp index 7769979c9b..e1dd6f4014 100644 --- a/tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp +++ b/tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp @@ -81,6 +81,7 @@ private slots: void source(); void source_data(); void data(); + void get(); void reload(); void useKeys(); void useKeys_data(); @@ -388,6 +389,46 @@ void tst_qdeclarativexmllistmodel::data() delete model; } +void tst_qdeclarativexmllistmodel::get() +{ + QDeclarativeComponent component(&engine, QUrl::fromLocalFile(SRCDIR "/data/model.qml")); + QDeclarativeXmlListModel *model = qobject_cast(component.create()); + QVERIFY(model != 0); + QVERIFY(model->get(0).isUndefined()); + + QTRY_COMPARE(model->count(), 9); + QVERIFY(model->get(-1).isUndefined()); + + QScriptValue sv = model->get(0); + QCOMPARE(sv.property("name").toString(), QLatin1String("Polly")); + QCOMPARE(sv.property("type").toString(), QLatin1String("Parrot")); + QCOMPARE(sv.property("age").toNumber(), qsreal(12)); + QCOMPARE(sv.property("size").toString(), QLatin1String("Small")); + + sv = model->get(1); + QCOMPARE(sv.property("name").toString(), QLatin1String("Penny")); + QCOMPARE(sv.property("type").toString(), QLatin1String("Turtle")); + QCOMPARE(sv.property("age").toNumber(), qsreal(4)); + QCOMPARE(sv.property("size").toString(), QLatin1String("Small")); + + sv = model->get(7); + QCOMPARE(sv.property("name").toString(), QLatin1String("Rover")); + QCOMPARE(sv.property("type").toString(), QLatin1String("Dog")); + QCOMPARE(sv.property("age").toNumber(), qsreal(0)); + QCOMPARE(sv.property("size").toString(), QLatin1String("Large")); + + sv = model->get(8); + QCOMPARE(sv.property("name").toString(), QLatin1String("Tiny")); + QCOMPARE(sv.property("type").toString(), QLatin1String("Elephant")); + QCOMPARE(sv.property("age").toNumber(), qsreal(15)); + QCOMPARE(sv.property("size").toString(), QLatin1String("Large")); + + sv = model->get(9); + QVERIFY(sv.isUndefined()); + + delete model; +} + void tst_qdeclarativexmllistmodel::reload() { // If no keys are used, the model should be rebuilt from scratch when -- cgit v1.2.1 From 58e154ec33ec1b1aea70fa35a1c5c692fe035df2 Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Fri, 21 May 2010 11:12:23 +1000 Subject: Print warnings for xml query syntax errors Task-number: QTBUG-10797 --- .../qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp b/tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp index e1dd6f4014..464f9e0822 100644 --- a/tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp +++ b/tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp @@ -224,6 +224,8 @@ void tst_qdeclarativexmllistmodel::roleErrors() { QDeclarativeComponent component(&engine, QUrl::fromLocalFile(SRCDIR "/data/roleErrors.qml")); QTest::ignoreMessage(QtWarningMsg, (QUrl::fromLocalFile(SRCDIR "/data/roleErrors.qml").toString() + ":6:5: QML XmlRole: An XmlRole query must not start with '/'").toUtf8().constData()); + QTest::ignoreMessage(QtWarningMsg, "XmlListModel: invalid query: \"age/\""); + //### make sure we receive all expected warning messages. QDeclarativeXmlListModel *model = qobject_cast(component.create()); QVERIFY(model != 0); -- cgit v1.2.1 From 54e9fdb0ddf673b3c8ee9a5ffce561114db2329c Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Fri, 21 May 2010 12:48:32 +1000 Subject: Also show file/line numbers on XML query errors. Task-number: QTBUG-10797 Reviewed-by: Bea Lam --- .../qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp b/tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp index 464f9e0822..35790e43ab 100644 --- a/tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp +++ b/tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp @@ -224,7 +224,7 @@ void tst_qdeclarativexmllistmodel::roleErrors() { QDeclarativeComponent component(&engine, QUrl::fromLocalFile(SRCDIR "/data/roleErrors.qml")); QTest::ignoreMessage(QtWarningMsg, (QUrl::fromLocalFile(SRCDIR "/data/roleErrors.qml").toString() + ":6:5: QML XmlRole: An XmlRole query must not start with '/'").toUtf8().constData()); - QTest::ignoreMessage(QtWarningMsg, "XmlListModel: invalid query: \"age/\""); + QTest::ignoreMessage(QtWarningMsg, (QUrl::fromLocalFile(SRCDIR "/data/roleErrors.qml").toString() + ":9:5: QML XmlRole: invalid query: \"age/\"").toUtf8().constData()); //### make sure we receive all expected warning messages. QDeclarativeXmlListModel *model = qobject_cast(component.create()); -- cgit v1.2.1 From d5a86d924bfe331aeba6465b0f249cd27ef83ad4 Mon Sep 17 00:00:00 2001 From: Jason McDonald Date: Fri, 21 May 2010 16:05:11 +1000 Subject: Add license headers for .qml files. Examples get the BSD license, while all other .qml files get the LGPL/tech-preview license. Reviewed-by: Trust Me --- tests/auto/declarative/examples/data/dummytest.qml | 40 +++++++++++++++++++++ .../examples/data/webbrowser/webbrowser.qml | 40 +++++++++++++++++++++ .../qdeclarativeanchors/data/anchors.qml | 41 ++++++++++++++++++++++ .../data/anchorsqgraphicswidget.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanchors/data/centerin.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanchors/data/crash1.qml | 41 ++++++++++++++++++++++ .../declarative/qdeclarativeanchors/data/fill.qml | 41 ++++++++++++++++++++++ .../declarative/qdeclarativeanchors/data/loop1.qml | 41 ++++++++++++++++++++++ .../declarative/qdeclarativeanchors/data/loop2.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanchors/data/margins.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanimatedimage/data/colors.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanimatedimage/data/stickman.qml | 41 ++++++++++++++++++++++ .../data/stickmanerror1.qml | 41 ++++++++++++++++++++++ .../data/stickmanpause.qml | 41 ++++++++++++++++++++++ .../data/stickmanscaled.qml | 41 ++++++++++++++++++++++ .../data/stickmanstopped.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanimations/data/attached.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanimations/data/badproperty1.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanimations/data/badproperty2.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanimations/data/badtype1.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanimations/data/badtype2.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanimations/data/badtype3.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanimations/data/badtype4.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanimations/data/dontAutoStart.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanimations/data/dontStart.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanimations/data/dontStart2.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanimations/data/dotproperty.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanimations/data/mixedtype1.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanimations/data/mixedtype2.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanimations/data/properties.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanimations/data/properties2.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanimations/data/properties3.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanimations/data/properties4.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanimations/data/properties5.qml | 41 ++++++++++++++++++++++ .../data/propertiesTransition.qml | 41 ++++++++++++++++++++++ .../data/propertiesTransition2.qml | 41 ++++++++++++++++++++++ .../data/propertiesTransition3.qml | 41 ++++++++++++++++++++++ .../data/propertiesTransition4.qml | 41 ++++++++++++++++++++++ .../data/propertiesTransition5.qml | 41 ++++++++++++++++++++++ .../data/propertiesTransition6.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanimations/data/rotation.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanimations/data/valuesource.qml | 41 ++++++++++++++++++++++ .../qdeclarativeanimations/data/valuesource2.qml | 41 ++++++++++++++++++++++ .../qdeclarativebehaviors/data/binding.qml | 41 ++++++++++++++++++++++ .../qdeclarativebehaviors/data/color.qml | 41 ++++++++++++++++++++++ .../qdeclarativebehaviors/data/cpptrigger.qml | 41 ++++++++++++++++++++++ .../qdeclarativebehaviors/data/disabled.qml | 41 ++++++++++++++++++++++ .../qdeclarativebehaviors/data/dontStart.qml | 41 ++++++++++++++++++++++ .../qdeclarativebehaviors/data/empty.qml | 41 ++++++++++++++++++++++ .../qdeclarativebehaviors/data/explicit.qml | 41 ++++++++++++++++++++++ .../qdeclarativebehaviors/data/groupProperty.qml | 41 ++++++++++++++++++++++ .../qdeclarativebehaviors/data/groupProperty2.qml | 41 ++++++++++++++++++++++ .../qdeclarativebehaviors/data/loop.qml | 41 ++++++++++++++++++++++ .../qdeclarativebehaviors/data/nonSelecting2.qml | 41 ++++++++++++++++++++++ .../qdeclarativebehaviors/data/parent.qml | 41 ++++++++++++++++++++++ .../data/reassignedAnimation.qml | 41 ++++++++++++++++++++++ .../qdeclarativebehaviors/data/scripttrigger.qml | 41 ++++++++++++++++++++++ .../qdeclarativebehaviors/data/simple.qml | 41 ++++++++++++++++++++++ .../qdeclarativebehaviors/data/startup.qml | 41 ++++++++++++++++++++++ .../qdeclarativebehaviors/data/startup2.qml | 41 ++++++++++++++++++++++ .../qdeclarativebinding/data/test-binding.qml | 41 ++++++++++++++++++++++ .../qdeclarativebinding/data/test-binding2.qml | 41 ++++++++++++++++++++++ .../data/connection-targetchange.qml | 41 ++++++++++++++++++++++ .../data/connection-unknownsignals-ignored.qml | 41 ++++++++++++++++++++++ .../data/connection-unknownsignals-notarget.qml | 41 ++++++++++++++++++++++ .../data/connection-unknownsignals-parent.qml | 41 ++++++++++++++++++++++ .../data/connection-unknownsignals.qml | 41 ++++++++++++++++++++++ .../data/test-connection.qml | 41 ++++++++++++++++++++++ .../data/test-connection2.qml | 41 ++++++++++++++++++++++ .../data/test-connection3.qml | 41 ++++++++++++++++++++++ .../qdeclarativeconnection/data/trimming.qml | 41 ++++++++++++++++++++++ .../qdeclarativedom/data/MyComponent.qml | 41 ++++++++++++++++++++++ .../declarative/qdeclarativedom/data/MyItem.qml | 41 ++++++++++++++++++++++ .../qdeclarativedom/data/import/Bar.qml | 41 ++++++++++++++++++++++ .../qdeclarativedom/data/importlib/sublib/Foo.qml | 41 ++++++++++++++++++++++ .../auto/declarative/qdeclarativedom/data/top.qml | 41 ++++++++++++++++++++++ .../data/ConstantsOverrideBindings.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/CustomObject.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/MethodsObject.qml | 41 ++++++++++++++++++++++ .../data/NestedTypeTransientErrors.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/ScopeObject.qml | 41 ++++++++++++++++++++++ .../data/SpuriousWarning.qml | 41 ++++++++++++++++++++++ .../data/TypeForDynamicCreation.qml | 41 ++++++++++++++++++++++ .../data/aliasPropertyAndBinding.qml | 41 ++++++++++++++++++++++ .../data/assignBasicTypes.2.qml | 41 ++++++++++++++++++++++ .../data/assignBasicTypes.qml | 41 ++++++++++++++++++++++ .../data/attachedProperty.qml | 41 ++++++++++++++++++++++ .../data/attachedPropertyScope.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/bindingLoop.qml | 41 ++++++++++++++++++++++ .../data/boolPropertiesEvaluateAsBool.1.qml | 41 ++++++++++++++++++++++ .../data/boolPropertiesEvaluateAsBool.2.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/bug.1.qml | 41 ++++++++++++++++++++++ .../data/canAssignNullToQObject.1.qml | 41 ++++++++++++++++++++++ .../data/canAssignNullToQObject.2.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/compiled.qml | 41 ++++++++++++++++++++++ .../data/compositePropertyType.qml | 41 ++++++++++++++++++++++ .../data/constantsOverrideBindings.1.qml | 41 ++++++++++++++++++++++ .../data/constantsOverrideBindings.2.qml | 41 ++++++++++++++++++++++ .../data/constantsOverrideBindings.3.qml | 41 ++++++++++++++++++++++ .../data/declarativeToString.qml | 41 ++++++++++++++++++++++ .../data/deferredProperties.qml | 41 ++++++++++++++++++++++ .../data/deferredPropertiesErrors.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/deletedEngine.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/deletedObject.qml | 41 ++++++++++++++++++++++ .../data/dynamicCreation.helper.qml | 41 ++++++++++++++++++++++ .../data/dynamicCreation.qml | 41 ++++++++++++++++++++++ .../data/dynamicDeletion.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/enums.1.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/enums.2.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/eval.qml | 41 ++++++++++++++++++++++ .../data/exceptionClearsOnReeval.qml | 41 ++++++++++++++++++++++ .../data/exceptionProducesWarning.qml | 41 ++++++++++++++++++++++ .../data/exceptionProducesWarning2.qml | 41 ++++++++++++++++++++++ .../data/extendedObjectPropertyLookup.qml | 41 ++++++++++++++++++++++ .../data/extensionObjects.qml | 41 ++++++++++++++++++++++ .../data/extensionObjectsPropertyOverride.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/function.qml | 41 ++++++++++++++++++++++ .../data/functionAssignment.1.qml | 41 ++++++++++++++++++++++ .../data/functionAssignment.2.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/functionErrors.qml | 41 ++++++++++++++++++++++ .../data/idShortcutInvalidates.1.qml | 41 ++++++++++++++++++++++ .../data/idShortcutInvalidates.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/include.qml | 41 ++++++++++++++++++++++ .../data/include_callback.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/include_pragma.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/include_remote.qml | 41 ++++++++++++++++++++++ .../data/include_remote_missing.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/include_shared.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/jsObject.qml | 41 ++++++++++++++++++++++ .../data/libraryScriptAssert.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/listProperties.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/listToVariant.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/methods.1.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/methods.2.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/methods.3.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/methods.4.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/methods.5.qml | 41 ++++++++++++++++++++++ .../data/multiEngineObject.qml | 41 ++++++++++++++++++++++ .../data/noSpuriousWarningsAtShutdown.2.qml | 41 ++++++++++++++++++++++ .../data/noSpuriousWarningsAtShutdown.qml | 41 ++++++++++++++++++++++ .../data/nonExistantAttachedObject.qml | 41 ++++++++++++++++++++++ .../data/nullObjectBinding.qml | 41 ++++++++++++++++++++++ .../data/numberAssignment.qml | 41 ++++++++++++++++++++++ .../data/objectsCompareAsEqual.qml | 41 ++++++++++++++++++++++ .../data/outerBindingOverridesInnerBinding.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/ownership.qml | 41 ++++++++++++++++++++++ .../data/propertyAssignmentErrors.qml | 41 ++++++++++++++++++++++ .../data/qlistqobjectMethods.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/qtbug_10696.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/qtbug_9792.qml | 41 ++++++++++++++++++++++ .../data/qtcreatorbug_1289.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/regExp.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/scope.2.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/scope.3.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/scope.4.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/scope.qml | 41 ++++++++++++++++++++++ .../data/scriptConnect.1.qml | 41 ++++++++++++++++++++++ .../data/scriptConnect.2.qml | 41 ++++++++++++++++++++++ .../data/scriptConnect.3.qml | 41 ++++++++++++++++++++++ .../data/scriptConnect.4.qml | 41 ++++++++++++++++++++++ .../data/scriptConnect.5.qml | 41 ++++++++++++++++++++++ .../data/scriptConnect.6.qml | 41 ++++++++++++++++++++++ .../data/scriptDisconnect.1.qml | 41 ++++++++++++++++++++++ .../data/scriptDisconnect.2.qml | 41 ++++++++++++++++++++++ .../data/scriptDisconnect.3.qml | 41 ++++++++++++++++++++++ .../data/scriptDisconnect.4.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/scriptErrors.qml | 41 ++++++++++++++++++++++ .../data/selfDeletingBinding.2.qml | 41 ++++++++++++++++++++++ .../data/selfDeletingBinding.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/shutdownErrors.qml | 41 ++++++++++++++++++++++ .../data/signalAssignment.1.qml | 41 ++++++++++++++++++++++ .../data/signalAssignment.2.qml | 41 ++++++++++++++++++++++ .../data/signalParameterTypes.qml | 41 ++++++++++++++++++++++ .../data/signalTriggeredBindings.qml | 41 ++++++++++++++++++++++ .../qdeclarativeecmascript/data/strictlyEquals.qml | 41 ++++++++++++++++++++++ .../data/transientErrors.2.qml | 41 ++++++++++++++++++++++ .../data/transientErrors.qml | 41 ++++++++++++++++++++++ .../data/undefinedResetsProperty.2.qml | 41 ++++++++++++++++++++++ .../data/undefinedResetsProperty.qml | 41 ++++++++++++++++++++++ .../data/valueTypeFunctions.qml | 41 ++++++++++++++++++++++ .../data/variantsAssignedUndefined.qml | 41 ++++++++++++++++++++++ .../qdeclarativeflickable/data/flickable01.qml | 41 ++++++++++++++++++++++ .../qdeclarativeflickable/data/flickable02.qml | 41 ++++++++++++++++++++++ .../qdeclarativeflickable/data/flickable03.qml | 41 ++++++++++++++++++++++ .../qdeclarativeflickable/data/flickable04.qml | 41 ++++++++++++++++++++++ .../qdeclarativeflipable/data/crash.qml | 41 ++++++++++++++++++++++ .../qdeclarativeflipable/data/flipable-abort.qml | 41 ++++++++++++++++++++++ .../qdeclarativeflipable/data/test-flipable.qml | 41 ++++++++++++++++++++++ .../qdeclarativefocusscope/data/forcefocus.qml | 41 ++++++++++++++++++++++ .../qdeclarativefocusscope/data/test.qml | 41 ++++++++++++++++++++++ .../qdeclarativefocusscope/data/test2.qml | 41 ++++++++++++++++++++++ .../qdeclarativefocusscope/data/test3.qml | 41 ++++++++++++++++++++++ .../qdeclarativefocusscope/data/test4.qml | 41 ++++++++++++++++++++++ .../qdeclarativefocusscope/data/test5.qml | 41 ++++++++++++++++++++++ .../qdeclarativefolderlistmodel/data/basic.qml | 41 ++++++++++++++++++++++ .../qdeclarativefolderlistmodel/data/dummy.qml | 41 ++++++++++++++++++++++ .../qdeclarativegridview/data/displaygrid.qml | 41 ++++++++++++++++++++++ .../data/gridview-enforcerange.qml | 41 ++++++++++++++++++++++ .../data/gridview-initCurrent.qml | 41 ++++++++++++++++++++++ .../qdeclarativegridview/data/gridview1.qml | 41 ++++++++++++++++++++++ .../qdeclarativegridview/data/gridview2.qml | 41 ++++++++++++++++++++++ .../qdeclarativegridview/data/gridview3.qml | 41 ++++++++++++++++++++++ .../qdeclarativegridview/data/manual-highlight.qml | 41 ++++++++++++++++++++++ .../data/propertychangestest.qml | 41 ++++++++++++++++++++++ .../qdeclarativegridview/data/setindex.qml | 41 ++++++++++++++++++++++ .../qdeclarativeimage/data/aspectratio.qml | 41 ++++++++++++++++++++++ .../declarative/qdeclarativeimage/data/tiling.qml | 41 ++++++++++++++++++++++ .../qdeclarativeinfo/data/NestedObject.qml | 41 ++++++++++++++++++++++ .../qdeclarativeinfo/data/nestedQmlObject.qml | 41 ++++++++++++++++++++++ .../qdeclarativeinfo/data/qmlObject.qml | 41 ++++++++++++++++++++++ .../qdeclarativeitem/data/childrenProperty.qml | 41 ++++++++++++++++++++++ .../qdeclarativeitem/data/childrenRect.qml | 41 ++++++++++++++++++++++ .../qdeclarativeitem/data/keynavigationtest.qml | 41 ++++++++++++++++++++++ .../qdeclarativeitem/data/keyspriority.qml | 41 ++++++++++++++++++++++ .../declarative/qdeclarativeitem/data/keystest.qml | 41 ++++++++++++++++++++++ .../qdeclarativeitem/data/mapCoordinates.qml | 41 ++++++++++++++++++++++ .../qdeclarativeitem/data/mouseFocus.qml | 41 ++++++++++++++++++++++ .../qdeclarativeitem/data/propertychanges.qml | 41 ++++++++++++++++++++++ .../qdeclarativeitem/data/resourcesProperty.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/Alias.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/Alias2.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/Alias3.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/Alias4.qml | 41 ++++++++++++++++++++++ .../data/ComponentComposite.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/CompositeType.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/CompositeType2.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/CompositeType3.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/CompositeType4.qml | 41 ++++++++++++++++++++++ .../data/DynamicPropertiesNestedType.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/HelperAlias.qml | 41 ++++++++++++++++++++++ .../declarative/qdeclarativelanguage/data/I18n.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/I18nType30.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/LocalLast.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/MyComponent.qml | 41 ++++++++++++++++++++++ .../data/MyCompositeValueSource.qml | 41 ++++++++++++++++++++++ .../data/MyContainerComponent.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/NestedAlias.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/NestedErrorsType.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/OnCompletedType.qml | 41 ++++++++++++++++++++++ .../data/OnDestructionType.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/alias.1.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/alias.2.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/alias.3.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/alias.4.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/alias.5.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/alias.6.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/alias.7.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/alias.8.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/alias.9.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/assignBasicTypes.qml | 41 ++++++++++++++++++++++ .../data/assignCompositeToType.qml | 41 ++++++++++++++++++++++ .../data/assignLiteralSignalProperty.qml | 41 ++++++++++++++++++++++ .../data/assignLiteralToVariant.qml | 41 ++++++++++++++++++++++ .../data/assignObjectToSignal.qml | 41 ++++++++++++++++++++++ .../data/assignObjectToVariant.qml | 41 ++++++++++++++++++++++ .../data/assignQmlComponent.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/assignSignal.qml | 41 ++++++++++++++++++++++ .../data/assignToNamespace.qml | 41 ++++++++++++++++++++++ .../data/assignTypeExtremes.qml | 41 ++++++++++++++++++++++ .../data/assignValueToSignal.qml | 41 ++++++++++++++++++++++ .../data/attachedProperties.qml | 41 ++++++++++++++++++++++ .../data/autoComponentCreation.qml | 41 ++++++++++++++++++++++ .../data/autoNotifyConnection.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/component.1.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/component.2.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/component.3.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/component.4.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/component.5.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/component.6.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/component.7.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/component.8.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/component.9.qml | 41 ++++++++++++++++++++++ .../data/componentCompositeType.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/cppnamespace.2.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/cppnamespace.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/crash2.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/customOnProperty.qml | 41 ++++++++++++++++++++++ .../data/customParserIdNotAllowed.qml | 41 ++++++++++++++++++++++ .../data/customParserTypes.qml | 41 ++++++++++++++++++++++ .../data/customVariantTypes.qml | 41 ++++++++++++++++++++++ .../data/declaredPropertyValues.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/defaultGrouped.qml | 41 ++++++++++++++++++++++ .../data/defaultPropertyListOrder.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/destroyedSignal.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/doubleSignal.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/duplicateIDs.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/dynamicMeta.1.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/dynamicMeta.2.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/dynamicMeta.3.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/dynamicMeta.4.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/dynamicMeta.5.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/dynamicObject.1.qml | 41 ++++++++++++++++++++++ .../data/dynamicObjectProperties.2.qml | 41 ++++++++++++++++++++++ .../data/dynamicObjectProperties.qml | 41 ++++++++++++++++++++++ .../data/dynamicProperties.qml | 41 ++++++++++++++++++++++ .../data/dynamicPropertiesNested.qml | 41 ++++++++++++++++++++++ .../data/dynamicSignalsAndSlots.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/empty.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/emptySignal.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/enumTypes.qml | 41 ++++++++++++++++++++++ .../data/failingComponentTest.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/fakeDotProperty.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/finalOverride.qml | 41 ++++++++++++++++++++++ .../data/i18nDeclaredPropertyNames.qml | 41 ++++++++++++++++++++++ .../data/i18nDeclaredPropertyUse.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/i18nNameSpace.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/i18nScript.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/i18nStrings.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/i18nType.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/idProperty.qml | 41 ++++++++++++++++++++++ .../data/importNamespaceConflict.qml | 41 ++++++++++++++++++++++ .../data/importNewerVersion.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/importNonExist.qml | 41 ++++++++++++++++++++++ .../data/importNonExistOlder.qml | 41 ++++++++++++++++++++++ .../data/importVersionMissingBuiltIn.qml | 41 ++++++++++++++++++++++ .../data/importVersionMissingInstalled.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/importscript.1.qml | 41 ++++++++++++++++++++++ .../data/inlineQmlComponents.qml | 41 ++++++++++++++++++++++ .../data/interfaceProperty.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/interfaceQList.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/invalidAlias.1.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/invalidAlias.2.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/invalidAlias.3.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/invalidAlias.4.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/invalidAlias.5.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/invalidAlias.6.qml | 41 ++++++++++++++++++++++ .../data/invalidAttachedProperty.1.qml | 41 ++++++++++++++++++++++ .../data/invalidAttachedProperty.10.qml | 41 ++++++++++++++++++++++ .../data/invalidAttachedProperty.11.qml | 41 ++++++++++++++++++++++ .../data/invalidAttachedProperty.12.qml | 41 ++++++++++++++++++++++ .../data/invalidAttachedProperty.13.qml | 41 ++++++++++++++++++++++ .../data/invalidAttachedProperty.2.qml | 41 ++++++++++++++++++++++ .../data/invalidAttachedProperty.3.qml | 41 ++++++++++++++++++++++ .../data/invalidAttachedProperty.4.qml | 41 ++++++++++++++++++++++ .../data/invalidAttachedProperty.5.qml | 41 ++++++++++++++++++++++ .../data/invalidAttachedProperty.6.qml | 41 ++++++++++++++++++++++ .../data/invalidAttachedProperty.7.qml | 41 ++++++++++++++++++++++ .../data/invalidAttachedProperty.8.qml | 41 ++++++++++++++++++++++ .../data/invalidAttachedProperty.9.qml | 41 ++++++++++++++++++++++ .../data/invalidGroupedProperty.1.qml | 41 ++++++++++++++++++++++ .../data/invalidGroupedProperty.10.qml | 41 ++++++++++++++++++++++ .../data/invalidGroupedProperty.2.qml | 41 ++++++++++++++++++++++ .../data/invalidGroupedProperty.3.qml | 41 ++++++++++++++++++++++ .../data/invalidGroupedProperty.4.qml | 41 ++++++++++++++++++++++ .../data/invalidGroupedProperty.5.qml | 41 ++++++++++++++++++++++ .../data/invalidGroupedProperty.6.qml | 41 ++++++++++++++++++++++ .../data/invalidGroupedProperty.7.qml | 41 ++++++++++++++++++++++ .../data/invalidGroupedProperty.8.qml | 41 ++++++++++++++++++++++ .../data/invalidGroupedProperty.9.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/invalidID.2.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/invalidID.3.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/invalidID.4.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/invalidID.5.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/invalidID.6.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/invalidID.7.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/invalidID.8.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/invalidID.9.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/invalidID.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/invalidImportID.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/invalidOn.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/invalidRoot.qml | 41 ++++++++++++++++++++++ .../lib/com/nokia/installedtest/InstalledTest.qml | 41 ++++++++++++++++++++++ .../lib/com/nokia/installedtest/InstalledTest2.qml | 41 ++++++++++++++++++++++ .../data/lib/com/nokia/installedtest/LocalLast.qml | 41 ++++++++++++++++++++++ .../lib/com/nokia/installedtest/PrivateType.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/listAssignment.1.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/listAssignment.2.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/listAssignment.3.qml | 41 ++++++++++++++++++++++ .../data/listItemDeleteSelf.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/listProperties.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/method.1.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/missingObject.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/missingSignal.qml | 41 ++++++++++++++++++++++ .../data/missingValueTypeProperty.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/multiSet.1.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/multiSet.10.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/multiSet.11.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/multiSet.2.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/multiSet.3.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/multiSet.4.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/multiSet.5.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/multiSet.6.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/multiSet.7.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/multiSet.8.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/multiSet.9.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/nestedErrors.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/noCreation.qml | 41 ++++++++++++++++++++++ .../data/nonexistantProperty.1.qml | 41 ++++++++++++++++++++++ .../data/nonexistantProperty.2.qml | 41 ++++++++++++++++++++++ .../data/nonexistantProperty.3.qml | 41 ++++++++++++++++++++++ .../data/nonexistantProperty.4.qml | 41 ++++++++++++++++++++++ .../data/nonexistantProperty.5.qml | 41 ++++++++++++++++++++++ .../data/nonexistantProperty.6.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/nullDotProperty.qml | 41 ++++++++++++++++++++++ .../data/objectValueTypeProperty.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/onCompleted.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/onDestruction.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/property.1.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/property.2.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/property.3.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/property.4.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/property.5.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/property.6.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/property.7.qml | 41 ++++++++++++++++++++++ .../data/propertyValueSource.2.qml | 41 ++++++++++++++++++++++ .../data/propertyValueSource.qml | 41 ++++++++++++++++++++++ .../data/qmlAttachedPropertiesObjectMethod.1.qml | 41 ++++++++++++++++++++++ .../data/qmlAttachedPropertiesObjectMethod.2.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/readOnly.1.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/readOnly.2.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/readOnly.3.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/readOnly.4.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/readOnly.5.qml | 41 ++++++++++++++++++++++ .../data/rootAsQmlComponent.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/scriptString.1.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/scriptString.2.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/scriptString.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/scriptString2.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/scriptString3.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/scriptString4.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/signal.1.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/signal.2.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/signal.3.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/signal.4.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/simpleBindings.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/simpleContainer.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/simpleObject.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/subdir/Test.qml | 41 ++++++++++++++++++++++ .../data/subdir/subsubdir/SubTest.qml | 41 ++++++++++++++++++++++ .../data/unregisteredObject.qml | 41 ++++++++++++++++++++++ .../data/unsupportedProperty.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/valueTypes.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/wrongType.1.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/wrongType.10.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/wrongType.11.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/wrongType.12.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/wrongType.13.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/wrongType.14.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/wrongType.15.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/wrongType.16.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/wrongType.2.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/wrongType.3.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/wrongType.4.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/wrongType.5.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/wrongType.6.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/wrongType.7.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/wrongType.8.qml | 41 ++++++++++++++++++++++ .../qdeclarativelanguage/data/wrongType.9.qml | 41 ++++++++++++++++++++++ .../declarative/qmllanguage/LocalInternal.qml | 41 ++++++++++++++++++++++ .../qtest/declarative/qmllanguage/Test.qml | 41 ++++++++++++++++++++++ .../qtest/declarative/qmllanguage/TestLocal.qml | 41 ++++++++++++++++++++++ .../qtest/declarative/qmllanguage/TestNamed.qml | 41 ++++++++++++++++++++++ .../qtest/declarative/qmllanguage/TestSubDir.qml | 41 ++++++++++++++++++++++ .../declarative/qmllanguage/UndeclaredLocal.qml | 41 ++++++++++++++++++++++ .../declarative/qmllanguage/WrongTestLocal.qml | 41 ++++++++++++++++++++++ .../declarative/qmllanguage/subdir/SubTest.qml | 41 ++++++++++++++++++++++ .../qdeclarativelayoutitem/data/layoutItem.qml | 41 ++++++++++++++++++++++ .../qdeclarativelistmodel/data/enumerate.qml | 41 ++++++++++++++++++++++ .../qdeclarativelistmodel/data/model.qml | 41 ++++++++++++++++++++++ .../qdeclarativelistreference/data/MyType.qml | 41 ++++++++++++++++++++++ .../qdeclarativelistreference/data/engineTypes.qml | 41 ++++++++++++++++++++++ .../data/variantToList.qml | 41 ++++++++++++++++++++++ .../qdeclarativelistview/data/displaylist.qml | 41 ++++++++++++++++++++++ .../qdeclarativelistview/data/itemlist.qml | 41 ++++++++++++++++++++++ .../data/listview-enforcerange.qml | 41 ++++++++++++++++++++++ .../data/listview-initCurrent.qml | 41 ++++++++++++++++++++++ .../data/listview-sections.qml | 41 ++++++++++++++++++++++ .../qdeclarativelistview/data/listviewtest.qml | 41 ++++++++++++++++++++++ .../qdeclarativelistview/data/manual-highlight.qml | 41 ++++++++++++++++++++++ .../data/propertychangestest.qml | 41 ++++++++++++++++++++++ .../data/strictlyenforcerange.qml | 41 ++++++++++++++++++++++ .../qdeclarativeloader/data/AnchoredLoader.qml | 41 ++++++++++++++++++++++ .../qdeclarativeloader/data/BlueRect.qml | 41 ++++++++++++++++++++++ .../data/GraphicsWidget250x250.qml | 41 ++++++++++++++++++++++ .../qdeclarativeloader/data/GreenRect.qml | 41 ++++++++++++++++++++++ .../qdeclarativeloader/data/NoResize.qml | 41 ++++++++++++++++++++++ .../data/NoResizeGraphicsWidget.qml | 41 ++++++++++++++++++++++ .../qdeclarativeloader/data/Rect120x60.qml | 41 ++++++++++++++++++++++ .../qdeclarativeloader/data/SetSourceComponent.qml | 41 ++++++++++++++++++++++ .../data/SizeGraphicsWidgetToLoader.qml | 41 ++++++++++++++++++++++ .../data/SizeLoaderToGraphicsWidget.qml | 41 ++++++++++++++++++++++ .../qdeclarativeloader/data/SizeToItem.qml | 41 ++++++++++++++++++++++ .../qdeclarativeloader/data/SizeToLoader.qml | 41 ++++++++++++++++++++++ .../qdeclarativeloader/data/VmeError.qml | 41 ++++++++++++++++++++++ .../declarative/qdeclarativeloader/data/crash.qml | 41 ++++++++++++++++++++++ .../qdeclarativeloader/data/differentorigin.qml | 41 ++++++++++++++++++++++ .../qdeclarativeloader/data/nonItem.qml | 41 ++++++++++++++++++++++ .../qdeclarativeloader/data/sameorigin-load.qml | 41 ++++++++++++++++++++++ .../qdeclarativeloader/data/sameorigin.qml | 41 ++++++++++++++++++++++ .../qdeclarativeloader/data/vmeErrors.qml | 41 ++++++++++++++++++++++ .../qdeclarativemoduleplugin/data/works.qml | 41 ++++++++++++++++++++++ .../qdeclarativemousearea/data/clickandhold.qml | 41 ++++++++++++++++++++++ .../qdeclarativemousearea/data/dragging.qml | 41 ++++++++++++++++++++++ .../qdeclarativemousearea/data/dragproperties.qml | 41 ++++++++++++++++++++++ .../qdeclarativemousearea/data/dragreset.qml | 41 ++++++++++++++++++++++ .../qdeclarativemousearea/data/rejectEvent.qml | 41 ++++++++++++++++++++++ .../data/updateMousePosOnClick.qml | 41 ++++++++++++++++++++++ .../data/updateMousePosOnResize.qml | 41 ++++++++++++++++++++++ .../data/particlemotiontest.qml | 41 ++++++++++++++++++++++ .../qdeclarativeparticles/data/particlestest.qml | 41 ++++++++++++++++++++++ .../qdeclarativepathview/data/datamodel.qml | 41 ++++++++++++++++++++++ .../qdeclarativepathview/data/displaypath.qml | 41 ++++++++++++++++++++++ .../data/pathUpdateOnStartChanged.qml | 41 ++++++++++++++++++++++ .../qdeclarativepathview/data/pathtest.qml | 41 ++++++++++++++++++++++ .../qdeclarativepathview/data/pathview0.qml | 41 ++++++++++++++++++++++ .../qdeclarativepathview/data/pathview1.qml | 41 ++++++++++++++++++++++ .../qdeclarativepathview/data/pathview2.qml | 41 ++++++++++++++++++++++ .../qdeclarativepathview/data/pathview3.qml | 41 ++++++++++++++++++++++ .../qdeclarativepathview/data/pathview_package.qml | 41 ++++++++++++++++++++++ .../qdeclarativepathview/data/propertychanges.qml | 41 ++++++++++++++++++++++ .../qdeclarativepositioners/data/flowtest.qml | 41 ++++++++++++++++++++++ .../qdeclarativepositioners/data/grid-animated.qml | 41 ++++++++++++++++++++++ .../qdeclarativepositioners/data/grid-spacing.qml | 41 ++++++++++++++++++++++ .../data/grid-toptobottom.qml | 41 ++++++++++++++++++++++ .../qdeclarativepositioners/data/gridtest.qml | 41 ++++++++++++++++++++++ .../data/gridzerocolumns.qml | 41 ++++++++++++++++++++++ .../data/horizontal-animated.qml | 41 ++++++++++++++++++++++ .../data/horizontal-spacing.qml | 41 ++++++++++++++++++++++ .../qdeclarativepositioners/data/horizontal.qml | 41 ++++++++++++++++++++++ .../data/propertychangestest.qml | 41 ++++++++++++++++++++++ .../qdeclarativepositioners/data/repeatertest.qml | 41 ++++++++++++++++++++++ .../data/vertical-animated.qml | 41 ++++++++++++++++++++++ .../data/vertical-spacing.qml | 41 ++++++++++++++++++++++ .../qdeclarativepositioners/data/vertical.qml | 41 ++++++++++++++++++++++ .../qdeclarativeproperty/data/TestType.qml | 41 ++++++++++++++++++++++ .../data/readSynthesizedObject.qml | 41 ++++++++++++++++++++++ .../auto/declarative/qdeclarativeqt/data/atob.qml | 41 ++++++++++++++++++++++ .../auto/declarative/qdeclarativeqt/data/btoa.qml | 41 ++++++++++++++++++++++ .../declarative/qdeclarativeqt/data/consoleLog.qml | 41 ++++++++++++++++++++++ .../qdeclarativeqt/data/createComponent.qml | 41 ++++++++++++++++++++++ .../qdeclarativeqt/data/createComponentData.qml | 41 ++++++++++++++++++++++ .../qdeclarativeqt/data/createQmlObject.qml | 41 ++++++++++++++++++++++ .../declarative/qdeclarativeqt/data/darker.qml | 41 ++++++++++++++++++++++ .../auto/declarative/qdeclarativeqt/data/enums.qml | 41 ++++++++++++++++++++++ .../qdeclarativeqt/data/fontFamilies.qml | 41 ++++++++++++++++++++++ .../declarative/qdeclarativeqt/data/formatting.qml | 41 ++++++++++++++++++++++ .../auto/declarative/qdeclarativeqt/data/hsla.qml | 41 ++++++++++++++++++++++ .../declarative/qdeclarativeqt/data/isQtObject.qml | 41 ++++++++++++++++++++++ .../declarative/qdeclarativeqt/data/lighter.qml | 41 ++++++++++++++++++++++ tests/auto/declarative/qdeclarativeqt/data/md5.qml | 41 ++++++++++++++++++++++ .../qdeclarativeqt/data/openUrlExternally.qml | 41 ++++++++++++++++++++++ .../auto/declarative/qdeclarativeqt/data/point.qml | 41 ++++++++++++++++++++++ .../auto/declarative/qdeclarativeqt/data/rect.qml | 41 ++++++++++++++++++++++ .../auto/declarative/qdeclarativeqt/data/rgba.qml | 41 ++++++++++++++++++++++ .../auto/declarative/qdeclarativeqt/data/size.qml | 41 ++++++++++++++++++++++ .../auto/declarative/qdeclarativeqt/data/tint.qml | 41 ++++++++++++++++++++++ .../declarative/qdeclarativeqt/data/vector.qml | 41 ++++++++++++++++++++++ .../qdeclarativerepeater/data/intmodel.qml | 41 ++++++++++++++++++++++ .../qdeclarativerepeater/data/itemlist.qml | 41 ++++++++++++++++++++++ .../qdeclarativerepeater/data/objlist.qml | 41 ++++++++++++++++++++++ .../qdeclarativerepeater/data/properties.qml | 41 ++++++++++++++++++++++ .../qdeclarativerepeater/data/repeater1.qml | 41 ++++++++++++++++++++++ .../qdeclarativerepeater/data/repeater2.qml | 41 ++++++++++++++++++++++ .../data/smoothedanimation1.qml | 41 ++++++++++++++++++++++ .../data/smoothedanimation2.qml | 41 ++++++++++++++++++++++ .../data/smoothedanimation3.qml | 41 ++++++++++++++++++++++ .../data/smoothedanimationBehavior.qml | 41 ++++++++++++++++++++++ .../data/smoothedanimationValueSource.qml | 41 ++++++++++++++++++++++ .../data/smoothedfollow1.qml | 41 ++++++++++++++++++++++ .../data/smoothedfollow2.qml | 41 ++++++++++++++++++++++ .../data/smoothedfollow3.qml | 41 ++++++++++++++++++++++ .../data/smoothedfollowDisabled.qml | 41 ++++++++++++++++++++++ .../data/smoothedfollowValueSource.qml | 41 ++++++++++++++++++++++ .../data/springfollow1.qml | 41 ++++++++++++++++++++++ .../data/springfollow2.qml | 41 ++++++++++++++++++++++ .../data/springfollow3.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/ExtendedRectangle.qml | 41 ++++++++++++++++++++++ .../data/Implementation/MyType.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/anchorChanges1.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/anchorChanges2.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/anchorChanges3.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/anchorChanges4.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/anchorChanges5.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/anchorChangesCrash.qml | 41 ++++++++++++++++++++++ .../data/autoStateAtStartupRestoreBug.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/basicBinding.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/basicBinding2.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/basicBinding3.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/basicBinding4.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/basicChanges.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/basicChanges2.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/basicChanges3.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/basicChanges4.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/basicExtension.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/deleting.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/deletingState.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/explicit.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/fakeExtension.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/illegalObj.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/illegalTempState.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/legalTempState.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/nonExistantProp.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/parentChange1.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/parentChange2.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/parentChange3.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/parentChange4.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/parentChange5.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/propertyErrors.qml | 41 ++++++++++++++++++++++ .../declarative/qdeclarativestates/data/reset.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/restoreEntryValues.qml | 41 ++++++++++++++++++++++ .../declarative/qdeclarativestates/data/script.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/signalOverride.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/signalOverride2.qml | 41 ++++++++++++++++++++++ .../data/signalOverrideCrash.qml | 41 ++++++++++++++++++++++ .../data/signalOverrideCrash2.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/unnamedWhen.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/urlResolution.qml | 41 ++++++++++++++++++++++ .../qdeclarativestates/data/whenOrdering.qml | 41 ++++++++++++++++++++++ .../qdeclarativetext/data/embeddedImagesLocal.qml | 41 ++++++++++++++++++++++ .../data/embeddedImagesLocalError.qml | 41 ++++++++++++++++++++++ .../qdeclarativetext/data/embeddedImagesRemote.qml | 41 ++++++++++++++++++++++ .../data/embeddedImagesRemoteError.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextedit/data/cursorTest.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextedit/data/geometrySignals.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextedit/data/http/ErrItem.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextedit/data/http/NormItem.qml | 41 ++++++++++++++++++++++ .../data/http/cursorHttpTest.qml | 41 ++++++++++++++++++++++ .../data/http/cursorHttpTestFail1.qml | 41 ++++++++++++++++++++++ .../data/http/cursorHttpTestFail2.qml | 41 ++++++++++++++++++++++ .../data/http/cursorHttpTestPass.qml | 41 ++++++++++++++++++++++ .../data/httpfail/FailItem.qml | 41 ++++++++++++++++++++++ .../data/httpslow/WaitItem.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextedit/data/inputmethodhints.qml | 41 ++++++++++++++++++++++ .../data/mouseselection_default.qml | 41 ++++++++++++++++++++++ .../data/mouseselection_false.qml | 41 ++++++++++++++++++++++ .../data/mouseselection_true.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextedit/data/navigation.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextedit/data/readOnly.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextinput/data/cursorTest.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextinput/data/echoMode.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextinput/data/geometrySignals.qml | 41 ++++++++++++++++++++++ .../data/inputmethodhints.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextinput/data/masks.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextinput/data/maxLength.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextinput/data/navigation.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextinput/data/readOnly.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextinput/data/validators.qml | 41 ++++++++++++++++++++++ .../data/autoBindingRemoval.2.qml | 41 ++++++++++++++++++++++ .../data/autoBindingRemoval.3.qml | 41 ++++++++++++++++++++++ .../data/autoBindingRemoval.qml | 41 ++++++++++++++++++++++ .../data/bindingAssignment.qml | 41 ++++++++++++++++++++++ .../data/bindingConflict.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/bindingRead.qml | 41 ++++++++++++++++++++++ .../data/bindingVariantCopy.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/conflicting.1.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/conflicting.2.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/conflicting.3.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/deletedObject.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/enums.1.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/enums.2.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/enums.3.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/enums.4.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/enums.5.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/font_read.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/font_write.2.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/font_write.3.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/font_write.4.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/font_write.5.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/font_write.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/matrix4x4_read.qml | 41 ++++++++++++++++++++++ .../data/matrix4x4_write.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/point_read.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/point_write.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/pointf_read.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/pointf_write.qml | 41 ++++++++++++++++++++++ .../data/quaternion_read.qml | 41 ++++++++++++++++++++++ .../data/quaternion_write.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/rect_read.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/rect_write.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/rectf_read.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/rectf_write.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/returnValues.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/scriptAccess.qml | 41 ++++++++++++++++++++++ .../data/scriptVariantCopy.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/size_read.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/size_write.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/sizef_read.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/sizef_write.qml | 41 ++++++++++++++++++++++ .../data/sizereadonly_read.qml | 41 ++++++++++++++++++++++ .../data/sizereadonly_writeerror.qml | 41 ++++++++++++++++++++++ .../data/sizereadonly_writeerror2.qml | 41 ++++++++++++++++++++++ .../data/sizereadonly_writeerror3.qml | 41 ++++++++++++++++++++++ .../data/sizereadonly_writeerror4.qml | 41 ++++++++++++++++++++++ .../data/staticAssignment.qml | 41 ++++++++++++++++++++++ .../data/valueInterceptors.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/valueSources.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/varAssignment.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/vector2d_read.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/vector2d_write.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/vector3d_read.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/vector3d_write.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/vector4d_read.qml | 41 ++++++++++++++++++++++ .../qdeclarativevaluetypes/data/vector4d_write.qml | 41 ++++++++++++++++++++++ .../data/resizemodedeclarativeitem.qml | 41 ++++++++++++++++++++++ .../data/resizemodegraphicswidget.qml | 41 ++++++++++++++++++++++ .../qdeclarativeviewer/data/orientation.qml | 41 ++++++++++++++++++++++ .../data/objectlist.qml | 41 ++++++++++++++++++++++ .../data/visualdatamodel.qml | 41 ++++++++++++++++++++++ .../declarative/qdeclarativewebview/data/basic.qml | 41 ++++++++++++++++++++++ .../qdeclarativewebview/data/elements.qml | 41 ++++++++++++++++++++++ .../qdeclarativewebview/data/javaScript.qml | 41 ++++++++++++++++++++++ .../qdeclarativewebview/data/loadError.qml | 41 ++++++++++++++++++++++ .../qdeclarativewebview/data/newwindows.qml | 41 ++++++++++++++++++++++ .../qdeclarativewebview/data/pixelCache.qml | 41 ++++++++++++++++++++++ .../qdeclarativewebview/data/propertychanges.qml | 41 ++++++++++++++++++++++ .../qdeclarativewebview/data/sethtml.qml | 41 ++++++++++++++++++++++ .../qdeclarativeworkerscript/data/worker.qml | 41 ++++++++++++++++++++++ .../qdeclarativexmlhttprequest/data/abort.qml | 41 ++++++++++++++++++++++ .../data/abort_opened.qml | 41 ++++++++++++++++++++++ .../data/abort_unsent.qml | 41 ++++++++++++++++++++++ .../qdeclarativexmlhttprequest/data/attr.qml | 41 ++++++++++++++++++++++ .../data/callbackException.qml | 41 ++++++++++++++++++++++ .../qdeclarativexmlhttprequest/data/cdata.qml | 41 ++++++++++++++++++++++ .../data/constructor.qml | 41 ++++++++++++++++++++++ .../data/defaultState.qml | 41 ++++++++++++++++++++++ .../qdeclarativexmlhttprequest/data/document.qml | 41 ++++++++++++++++++++++ .../data/domExceptionCodes.qml | 41 ++++++++++++++++++++++ .../qdeclarativexmlhttprequest/data/element.qml | 41 ++++++++++++++++++++++ .../data/getAllResponseHeaders.qml | 41 ++++++++++++++++++++++ .../data/getAllResponseHeaders_args.qml | 41 ++++++++++++++++++++++ .../data/getAllResponseHeaders_sent.qml | 41 ++++++++++++++++++++++ .../data/getAllResponseHeaders_unsent.qml | 41 ++++++++++++++++++++++ .../data/getResponseHeader.qml | 41 ++++++++++++++++++++++ .../data/getResponseHeader_args.qml | 41 ++++++++++++++++++++++ .../data/getResponseHeader_sent.qml | 41 ++++++++++++++++++++++ .../data/getResponseHeader_unsent.qml | 41 ++++++++++++++++++++++ .../data/instanceStateValues.qml | 41 ++++++++++++++++++++++ .../data/invalidMethodUsage.qml | 41 ++++++++++++++++++++++ .../qdeclarativexmlhttprequest/data/open.qml | 41 ++++++++++++++++++++++ .../data/open_arg_count.1.qml | 41 ++++++++++++++++++++++ .../data/open_arg_count.2.qml | 41 ++++++++++++++++++++++ .../data/open_invalid_method.qml | 41 ++++++++++++++++++++++ .../qdeclarativexmlhttprequest/data/open_sync.qml | 41 ++++++++++++++++++++++ .../qdeclarativexmlhttprequest/data/open_user.qml | 41 ++++++++++++++++++++++ .../data/open_username.qml | 41 ++++++++++++++++++++++ .../data/redirectError.qml | 41 ++++++++++++++++++++++ .../data/redirectRecur.qml | 41 ++++++++++++++++++++++ .../qdeclarativexmlhttprequest/data/redirects.qml | 41 ++++++++++++++++++++++ .../data/responseText.qml | 41 ++++++++++++++++++++++ .../data/responseXML_invalid.qml | 41 ++++++++++++++++++++++ .../data/send_alreadySent.qml | 41 ++++++++++++++++++++++ .../data/send_data.1.qml | 41 ++++++++++++++++++++++ .../data/send_data.2.qml | 41 ++++++++++++++++++++++ .../data/send_data.3.qml | 41 ++++++++++++++++++++++ .../data/send_data.4.qml | 41 ++++++++++++++++++++++ .../data/send_data.5.qml | 41 ++++++++++++++++++++++ .../data/send_data.6.qml | 41 ++++++++++++++++++++++ .../data/send_data.7.qml | 41 ++++++++++++++++++++++ .../data/send_ignoreData.qml | 41 ++++++++++++++++++++++ .../data/send_unsent.qml | 41 ++++++++++++++++++++++ .../data/setRequestHeader.qml | 41 ++++++++++++++++++++++ .../data/setRequestHeader_args.qml | 41 ++++++++++++++++++++++ .../data/setRequestHeader_illegalName.qml | 41 ++++++++++++++++++++++ .../data/setRequestHeader_sent.qml | 41 ++++++++++++++++++++++ .../data/setRequestHeader_unsent.qml | 41 ++++++++++++++++++++++ .../data/staticStateValues.qml | 41 ++++++++++++++++++++++ .../qdeclarativexmlhttprequest/data/status.qml | 41 ++++++++++++++++++++++ .../qdeclarativexmlhttprequest/data/statusText.qml | 41 ++++++++++++++++++++++ .../qdeclarativexmlhttprequest/data/text.qml | 41 ++++++++++++++++++++++ .../qdeclarativexmlhttprequest/data/utf16.qml | 41 ++++++++++++++++++++++ .../qdeclarativexmllistmodel/data/model.qml | 41 ++++++++++++++++++++++ .../qdeclarativexmllistmodel/data/model2.qml | 41 ++++++++++++++++++++++ .../data/propertychanges.qml | 41 ++++++++++++++++++++++ .../qdeclarativexmllistmodel/data/recipes.qml | 41 ++++++++++++++++++++++ .../qdeclarativexmllistmodel/data/roleErrors.qml | 41 ++++++++++++++++++++++ .../qdeclarativexmllistmodel/data/roleKeys.qml | 41 ++++++++++++++++++++++ .../qdeclarativexmllistmodel/data/unique.qml | 41 ++++++++++++++++++++++ .../auto/declarative/qmlvisual/ListView/basic1.qml | 41 ++++++++++++++++++++++ .../auto/declarative/qmlvisual/ListView/basic2.qml | 41 ++++++++++++++++++++++ .../auto/declarative/qmlvisual/ListView/basic3.qml | 41 ++++++++++++++++++++++ .../auto/declarative/qmlvisual/ListView/basic4.qml | 41 ++++++++++++++++++++++ .../qmlvisual/ListView/data-MAC/basic1.qml | 41 ++++++++++++++++++++++ .../qmlvisual/ListView/data-MAC/basic2.qml | 41 ++++++++++++++++++++++ .../qmlvisual/ListView/data-MAC/basic3.qml | 41 ++++++++++++++++++++++ .../qmlvisual/ListView/data-MAC/basic4.qml | 41 ++++++++++++++++++++++ .../qmlvisual/ListView/data-MAC/itemlist.qml | 41 ++++++++++++++++++++++ .../qmlvisual/ListView/data-MAC/listview.qml | 41 ++++++++++++++++++++++ .../qmlvisual/ListView/data-X11/basic1.qml | 41 ++++++++++++++++++++++ .../qmlvisual/ListView/data-X11/basic2.qml | 41 ++++++++++++++++++++++ .../qmlvisual/ListView/data-X11/basic3.qml | 41 ++++++++++++++++++++++ .../qmlvisual/ListView/data-X11/basic4.qml | 41 ++++++++++++++++++++++ .../declarative/qmlvisual/ListView/data/basic1.qml | 41 ++++++++++++++++++++++ .../declarative/qmlvisual/ListView/data/basic2.qml | 41 ++++++++++++++++++++++ .../declarative/qmlvisual/ListView/data/basic3.qml | 41 ++++++++++++++++++++++ .../declarative/qmlvisual/ListView/data/basic4.qml | 41 ++++++++++++++++++++++ .../qmlvisual/ListView/data/itemlist.qml | 41 ++++++++++++++++++++++ .../qmlvisual/ListView/data/listview.qml | 41 ++++++++++++++++++++++ .../declarative/qmlvisual/ListView/itemlist.qml | 41 ++++++++++++++++++++++ .../declarative/qmlvisual/ListView/listview.qml | 41 ++++++++++++++++++++++ .../qmlvisual/Package_Views/data/packageviews.qml | 41 ++++++++++++++++++++++ .../qmlvisual/Package_Views/packageviews.qml | 41 ++++++++++++++++++++++ .../bindinganimation/bindinganimation.qml | 41 ++++++++++++++++++++++ .../bindinganimation/data/bindinganimation.qml | 41 ++++++++++++++++++++++ .../colorAnimation/colorAnimation-visual.qml | 41 ++++++++++++++++++++++ .../colorAnimation/data/colorAnimation-visual.qml | 41 ++++++++++++++++++++++ .../qmlvisual/animation/easing/data/easing.qml | 41 ++++++++++++++++++++++ .../qmlvisual/animation/easing/easing.qml | 41 ++++++++++++++++++++++ .../qmlvisual/animation/loop/data/loop.qml | 41 ++++++++++++++++++++++ .../declarative/qmlvisual/animation/loop/loop.qml | 41 ++++++++++++++++++++++ .../data/parallelAnimation-visual.qml | 41 ++++++++++++++++++++++ .../parallelAnimation/parallelAnimation-visual.qml | 41 ++++++++++++++++++++++ .../data/parentAnimation-visual.qml | 41 ++++++++++++++++++++++ .../parentAnimation/parentAnimation-visual.qml | 41 ++++++++++++++++++++++ .../parentAnimation2/data/parentAnimation2.qml | 41 ++++++++++++++++++++++ .../parentAnimation2/parentAnimation2.qml | 41 ++++++++++++++++++++++ .../pauseAnimation/data/pauseAnimation-visual.qml | 41 ++++++++++++++++++++++ .../pauseAnimation/pauseAnimation-visual.qml | 41 ++++++++++++++++++++++ .../propertyAction/data/propertyAction-visual.qml | 41 ++++++++++++++++++++++ .../propertyAction/propertyAction-visual.qml | 41 ++++++++++++++++++++++ .../animation/qtbug10586/data/qtbug10586.qml | 41 ++++++++++++++++++++++ .../qmlvisual/animation/qtbug10586/qtbug10586.qml | 41 ++++++++++++++++++++++ .../qmlvisual/animation/reanchor/data/reanchor.qml | 41 ++++++++++++++++++++++ .../qmlvisual/animation/reanchor/reanchor.qml | 41 ++++++++++++++++++++++ .../scriptAction/data/scriptAction-visual.qml | 41 ++++++++++++++++++++++ .../animation/scriptAction/scriptAction-visual.qml | 41 ++++++++++++++++++++++ .../qmlvisual/fillmode/data/fillmode.qml | 41 ++++++++++++++++++++++ .../declarative/qmlvisual/fillmode/fillmode.qml | 41 ++++++++++++++++++++++ .../qmlvisual/focusscope/data-MAC/test.qml | 41 ++++++++++++++++++++++ .../qmlvisual/focusscope/data-MAC/test2.qml | 41 ++++++++++++++++++++++ .../qmlvisual/focusscope/data-MAC/test3.qml | 41 ++++++++++++++++++++++ .../qmlvisual/focusscope/data-X11/test.qml | 41 ++++++++++++++++++++++ .../qmlvisual/focusscope/data-X11/test2.qml | 41 ++++++++++++++++++++++ .../qmlvisual/focusscope/data-X11/test3.qml | 41 ++++++++++++++++++++++ .../declarative/qmlvisual/focusscope/data/test.qml | 41 ++++++++++++++++++++++ .../qmlvisual/focusscope/data/test2.qml | 41 ++++++++++++++++++++++ .../qmlvisual/focusscope/data/test3.qml | 41 ++++++++++++++++++++++ .../auto/declarative/qmlvisual/focusscope/test.qml | 41 ++++++++++++++++++++++ .../declarative/qmlvisual/focusscope/test2.qml | 41 ++++++++++++++++++++++ .../declarative/qmlvisual/focusscope/test3.qml | 41 ++++++++++++++++++++++ .../qdeclarativeborderimage/animated-smooth.qml | 41 ++++++++++++++++++++++ .../qmlvisual/qdeclarativeborderimage/animated.qml | 41 ++++++++++++++++++++++ .../qmlvisual/qdeclarativeborderimage/borders.qml | 41 ++++++++++++++++++++++ .../content/MyBorderImage.qml | 41 ++++++++++++++++++++++ .../data/animated-smooth.qml | 41 ++++++++++++++++++++++ .../qdeclarativeborderimage/data/animated.qml | 41 ++++++++++++++++++++++ .../qdeclarativeborderimage/data/borders.qml | 41 ++++++++++++++++++++++ .../data/flickable-horizontal.qml | 41 ++++++++++++++++++++++ .../data/flickable-vertical.qml | 41 ++++++++++++++++++++++ .../qdeclarativeflickable/flickable-horizontal.qml | 41 ++++++++++++++++++++++ .../qdeclarativeflickable/flickable-vertical.qml | 41 ++++++++++++++++++++++ .../qdeclarativeflipable/data/test-flipable.qml | 41 ++++++++++++++++++++++ .../data/test_flipable_resize.qml | 41 ++++++++++++++++++++++ .../qdeclarativeflipable/test-flipable.qml | 41 ++++++++++++++++++++++ .../qdeclarativeflipable/test_flipable_resize.qml | 41 ++++++++++++++++++++++ .../qdeclarativegridview/data/gridview.qml | 41 ++++++++++++++++++++++ .../qdeclarativegridview/data/gridview2.qml | 41 ++++++++++++++++++++++ .../qmlvisual/qdeclarativegridview/gridview.qml | 41 ++++++++++++++++++++++ .../qmlvisual/qdeclarativegridview/gridview2.qml | 41 ++++++++++++++++++++++ .../qmlvisual/qdeclarativemousearea/data/drag.qml | 41 ++++++++++++++++++++++ .../data/mousearea-flickable.qml | 41 ++++++++++++++++++++++ .../data/mousearea-visual.qml | 41 ++++++++++++++++++++++ .../qmlvisual/qdeclarativemousearea/drag.qml | 41 ++++++++++++++++++++++ .../qdeclarativemousearea/mousearea-flickable.qml | 41 ++++++++++++++++++++++ .../qdeclarativemousearea/mousearea-visual.qml | 41 ++++++++++++++++++++++ .../qdeclarativeparticles/data/particles.qml | 41 ++++++++++++++++++++++ .../qmlvisual/qdeclarativeparticles/particles.qml | 41 ++++++++++++++++++++++ .../qdeclarativepathview/data/test-pathview-2.qml | 41 ++++++++++++++++++++++ .../qdeclarativepathview/data/test-pathview.qml | 41 ++++++++++++++++++++++ .../qdeclarativepathview/test-pathview-2.qml | 41 ++++++++++++++++++++++ .../qdeclarativepathview/test-pathview.qml | 41 ++++++++++++++++++++++ .../qdeclarativepositioners/data/dynamic.qml | 41 ++++++++++++++++++++++ .../qdeclarativepositioners/data/usingRepeater.qml | 41 ++++++++++++++++++++++ .../qmlvisual/qdeclarativepositioners/dynamic.qml | 41 ++++++++++++++++++++++ .../qdeclarativepositioners/usingRepeater.qml | 41 ++++++++++++++++++++++ .../data/easefollow.qml | 41 ++++++++++++++++++++++ .../smoothedanimation.qml | 41 ++++++++++++++++++++++ .../smoothedfollow.qml | 41 ++++++++++++++++++++++ .../qmlvisual/qdeclarativespringfollow/clock.qml | 41 ++++++++++++++++++++++ .../qdeclarativespringfollow/data/clock.qml | 41 ++++++++++++++++++++++ .../qdeclarativespringfollow/data/follow.qml | 41 ++++++++++++++++++++++ .../qmlvisual/qdeclarativespringfollow/follow.qml | 41 ++++++++++++++++++++++ .../baseline/data-X11/parentanchor.qml | 41 ++++++++++++++++++++++ .../baseline/data/parentanchor.qml | 41 ++++++++++++++++++++++ .../qdeclarativetext/baseline/parentanchor.qml | 41 ++++++++++++++++++++++ .../qdeclarativetext/elide/data-MAC/elide.qml | 41 ++++++++++++++++++++++ .../qdeclarativetext/elide/data-MAC/elide2.qml | 41 ++++++++++++++++++++++ .../elide/data-MAC/multilength.qml | 41 ++++++++++++++++++++++ .../qdeclarativetext/elide/data-X11/elide.qml | 41 ++++++++++++++++++++++ .../elide/data-X11/multilength.qml | 41 ++++++++++++++++++++++ .../qdeclarativetext/elide/data/elide.qml | 41 ++++++++++++++++++++++ .../qdeclarativetext/elide/data/elide2.qml | 41 ++++++++++++++++++++++ .../qmlvisual/qdeclarativetext/elide/elide.qml | 41 ++++++++++++++++++++++ .../qmlvisual/qdeclarativetext/elide/elide2.qml | 41 ++++++++++++++++++++++ .../qdeclarativetext/elide/multilength.qml | 41 ++++++++++++++++++++++ .../qdeclarativetext/font/data-MAC/plaintext.qml | 41 ++++++++++++++++++++++ .../qdeclarativetext/font/data-MAC/richtext.qml | 41 ++++++++++++++++++++++ .../qdeclarativetext/font/data/plaintext.qml | 41 ++++++++++++++++++++++ .../qdeclarativetext/font/data/richtext.qml | 41 ++++++++++++++++++++++ .../qmlvisual/qdeclarativetext/font/plaintext.qml | 41 ++++++++++++++++++++++ .../qmlvisual/qdeclarativetext/font/richtext.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextedit/cursorDelegate.qml | 41 ++++++++++++++++++++++ .../data-MAC/cursorDelegate.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextedit/data-MAC/qt-669.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextedit/data-X11/wrap.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextedit/data/cursorDelegate.qml | 41 ++++++++++++++++++++++ .../qmlvisual/qdeclarativetextedit/data/qt-669.qml | 41 ++++++++++++++++++++++ .../qmlvisual/qdeclarativetextedit/data/wrap.qml | 41 ++++++++++++++++++++++ .../qmlvisual/qdeclarativetextedit/qt-669.qml | 41 ++++++++++++++++++++++ .../qmlvisual/qdeclarativetextedit/wrap.qml | 41 ++++++++++++++++++++++ .../qmlvisual/qdeclarativetextinput/LineEdit.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextinput/cursorDelegate.qml | 41 ++++++++++++++++++++++ .../data-MAC/cursorDelegate.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextinput/data-X11/echoMode.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextinput/data-X11/hAlign.qml | 41 ++++++++++++++++++++++ .../data-X11/usingLineEdit.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextinput/data/cursorDelegate.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextinput/data/echoMode.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextinput/data/hAlign.qml | 41 ++++++++++++++++++++++ .../qmlvisual/qdeclarativetextinput/echoMode.qml | 41 ++++++++++++++++++++++ .../qmlvisual/qdeclarativetextinput/hAlign.qml | 41 ++++++++++++++++++++++ .../qdeclarativetextinput/usingLineEdit.qml | 41 ++++++++++++++++++++++ .../declarative/qmlvisual/rect/GradientRect.qml | 41 ++++++++++++++++++++++ tests/auto/declarative/qmlvisual/rect/MyRect.qml | 41 ++++++++++++++++++++++ .../qmlvisual/rect/data/rect-painting.qml | 41 ++++++++++++++++++++++ .../declarative/qmlvisual/rect/rect-painting.qml | 41 ++++++++++++++++++++++ .../auto/declarative/qmlvisual/repeater/basic1.qml | 41 ++++++++++++++++++++++ .../auto/declarative/qmlvisual/repeater/basic2.qml | 41 ++++++++++++++++++++++ .../auto/declarative/qmlvisual/repeater/basic3.qml | 41 ++++++++++++++++++++++ .../auto/declarative/qmlvisual/repeater/basic4.qml | 41 ++++++++++++++++++++++ .../qmlvisual/repeater/data-MAC/basic1.qml | 41 ++++++++++++++++++++++ .../qmlvisual/repeater/data-MAC/basic2.qml | 41 ++++++++++++++++++++++ .../qmlvisual/repeater/data-MAC/basic3.qml | 41 ++++++++++++++++++++++ .../qmlvisual/repeater/data-MAC/basic4.qml | 41 ++++++++++++++++++++++ .../qmlvisual/repeater/data-X11/basic1.qml | 41 ++++++++++++++++++++++ .../qmlvisual/repeater/data-X11/basic2.qml | 41 ++++++++++++++++++++++ .../qmlvisual/repeater/data-X11/basic3.qml | 41 ++++++++++++++++++++++ .../qmlvisual/repeater/data-X11/basic4.qml | 41 ++++++++++++++++++++++ .../declarative/qmlvisual/repeater/data/basic1.qml | 41 ++++++++++++++++++++++ .../declarative/qmlvisual/repeater/data/basic2.qml | 41 ++++++++++++++++++++++ .../declarative/qmlvisual/repeater/data/basic3.qml | 41 ++++++++++++++++++++++ .../declarative/qmlvisual/repeater/data/basic4.qml | 41 ++++++++++++++++++++++ .../selftest_noimages/data/selftest_noimages.qml | 41 ++++++++++++++++++++++ .../selftest_noimages/selftest_noimages.qml | 41 ++++++++++++++++++++++ .../qmlvisual/webview/autosize/autosize.qml | 41 ++++++++++++++++++++++ .../webview/autosize/data-X11/autosize.qml | 41 ++++++++++++++++++++++ .../qmlvisual/webview/autosize/data/autosize.qml | 41 ++++++++++++++++++++++ .../webview/javascript/data/evaluateJavaScript.qml | 41 ++++++++++++++++++++++ .../webview/javascript/data/windowObjects.qml | 41 ++++++++++++++++++++++ .../webview/javascript/evaluateJavaScript.qml | 41 ++++++++++++++++++++++ .../qmlvisual/webview/javascript/windowObjects.qml | 41 ++++++++++++++++++++++ .../qmlvisual/webview/settings/data/fontFamily.qml | 41 ++++++++++++++++++++++ .../qmlvisual/webview/settings/data/fontSize.qml | 41 ++++++++++++++++++++++ .../webview/settings/data/noAutoLoadImages.qml | 41 ++++++++++++++++++++++ .../webview/settings/data/setFontFamily.qml | 41 ++++++++++++++++++++++ .../qmlvisual/webview/settings/fontFamily.qml | 41 ++++++++++++++++++++++ .../qmlvisual/webview/settings/fontSize.qml | 41 ++++++++++++++++++++++ .../webview/settings/noAutoLoadImages.qml | 41 ++++++++++++++++++++++ .../qmlvisual/webview/settings/setFontFamily.qml | 41 ++++++++++++++++++++++ .../qmlvisual/webview/zooming/data/pageWidth.qml | 41 ++++++++++++++++++++++ .../webview/zooming/data/renderControl.qml | 41 ++++++++++++++++++++++ .../qmlvisual/webview/zooming/data/resolution.qml | 41 ++++++++++++++++++++++ .../webview/zooming/data/zoomTextOnly.qml | 41 ++++++++++++++++++++++ .../qmlvisual/webview/zooming/data/zooming.qml | 41 ++++++++++++++++++++++ .../qmlvisual/webview/zooming/pageWidth.qml | 41 ++++++++++++++++++++++ .../qmlvisual/webview/zooming/renderControl.qml | 41 ++++++++++++++++++++++ .../qmlvisual/webview/zooming/resolution.qml | 41 ++++++++++++++++++++++ .../qmlvisual/webview/zooming/zoomTextOnly.qml | 41 ++++++++++++++++++++++ .../qmlvisual/webview/zooming/zooming.qml | 41 ++++++++++++++++++++++ 958 files changed, 39276 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/examples/data/dummytest.qml b/tests/auto/declarative/examples/data/dummytest.qml index b20e907f27..42b4dd17e6 100644 --- a/tests/auto/declarative/examples/data/dummytest.qml +++ b/tests/auto/declarative/examples/data/dummytest.qml @@ -1,3 +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 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.VisualTest 4.6 VisualTest { diff --git a/tests/auto/declarative/examples/data/webbrowser/webbrowser.qml b/tests/auto/declarative/examples/data/webbrowser/webbrowser.qml index d31787b939..e16727f5ef 100644 --- a/tests/auto/declarative/examples/data/webbrowser/webbrowser.qml +++ b/tests/auto/declarative/examples/data/webbrowser/webbrowser.qml @@ -1,3 +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 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.VisualTest 4.6 VisualTest { diff --git a/tests/auto/declarative/qdeclarativeanchors/data/anchors.qml b/tests/auto/declarative/qdeclarativeanchors/data/anchors.qml index 227a055480..94427f2752 100644 --- a/tests/auto/declarative/qdeclarativeanchors/data/anchors.qml +++ b/tests/auto/declarative/qdeclarativeanchors/data/anchors.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanchors/data/anchorsqgraphicswidget.qml b/tests/auto/declarative/qdeclarativeanchors/data/anchorsqgraphicswidget.qml index d430c2cfb2..ab9cf76c56 100644 --- a/tests/auto/declarative/qdeclarativeanchors/data/anchorsqgraphicswidget.qml +++ b/tests/auto/declarative/qdeclarativeanchors/data/anchorsqgraphicswidget.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanchors/data/centerin.qml b/tests/auto/declarative/qdeclarativeanchors/data/centerin.qml index e248cc33a2..ad44c0e624 100644 --- a/tests/auto/declarative/qdeclarativeanchors/data/centerin.qml +++ b/tests/auto/declarative/qdeclarativeanchors/data/centerin.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanchors/data/crash1.qml b/tests/auto/declarative/qdeclarativeanchors/data/crash1.qml index 01b469b35a..3acb293ebc 100644 --- a/tests/auto/declarative/qdeclarativeanchors/data/crash1.qml +++ b/tests/auto/declarative/qdeclarativeanchors/data/crash1.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 Column { diff --git a/tests/auto/declarative/qdeclarativeanchors/data/fill.qml b/tests/auto/declarative/qdeclarativeanchors/data/fill.qml index c594365288..eebd9dbebb 100644 --- a/tests/auto/declarative/qdeclarativeanchors/data/fill.qml +++ b/tests/auto/declarative/qdeclarativeanchors/data/fill.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanchors/data/loop1.qml b/tests/auto/declarative/qdeclarativeanchors/data/loop1.qml index bd7f3de3c3..966264b911 100644 --- a/tests/auto/declarative/qdeclarativeanchors/data/loop1.qml +++ b/tests/auto/declarative/qdeclarativeanchors/data/loop1.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanchors/data/loop2.qml b/tests/auto/declarative/qdeclarativeanchors/data/loop2.qml index e2dfde25b5..c2f9cc38f1 100644 --- a/tests/auto/declarative/qdeclarativeanchors/data/loop2.qml +++ b/tests/auto/declarative/qdeclarativeanchors/data/loop2.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanchors/data/margins.qml b/tests/auto/declarative/qdeclarativeanchors/data/margins.qml index 58bc8a80a2..86e878f03b 100644 --- a/tests/auto/declarative/qdeclarativeanchors/data/margins.qml +++ b/tests/auto/declarative/qdeclarativeanchors/data/margins.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimatedimage/data/colors.qml b/tests/auto/declarative/qdeclarativeanimatedimage/data/colors.qml index 62e5b14dfc..663fc5439c 100644 --- a/tests/auto/declarative/qdeclarativeanimatedimage/data/colors.qml +++ b/tests/auto/declarative/qdeclarativeanimatedimage/data/colors.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 AnimatedImage { diff --git a/tests/auto/declarative/qdeclarativeanimatedimage/data/stickman.qml b/tests/auto/declarative/qdeclarativeanimatedimage/data/stickman.qml index 340078990f..9a038f3f35 100644 --- a/tests/auto/declarative/qdeclarativeanimatedimage/data/stickman.qml +++ b/tests/auto/declarative/qdeclarativeanimatedimage/data/stickman.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 AnimatedImage { diff --git a/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanerror1.qml b/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanerror1.qml index 566f9ea930..f785205b73 100644 --- a/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanerror1.qml +++ b/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanerror1.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 AnimatedImage { diff --git a/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanpause.qml b/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanpause.qml index 92c57b6b03..28fb317de9 100644 --- a/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanpause.qml +++ b/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanpause.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 AnimatedImage { diff --git a/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanscaled.qml b/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanscaled.qml index b8a254f212..930b223620 100644 --- a/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanscaled.qml +++ b/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanscaled.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 AnimatedImage { diff --git a/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanstopped.qml b/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanstopped.qml index 2b6074cae1..c54cbdb19f 100644 --- a/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanstopped.qml +++ b/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanstopped.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 AnimatedImage { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/attached.qml b/tests/auto/declarative/qdeclarativeanimations/data/attached.qml index 78949f903d..93ad80c0e3 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/attached.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/attached.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/badproperty1.qml b/tests/auto/declarative/qdeclarativeanimations/data/badproperty1.qml index 5bb20f694b..773b0981fb 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/badproperty1.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/badproperty1.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/badproperty2.qml b/tests/auto/declarative/qdeclarativeanimations/data/badproperty2.qml index 8dc422cf15..ff8cb092ed 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/badproperty2.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/badproperty2.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/badtype1.qml b/tests/auto/declarative/qdeclarativeanimations/data/badtype1.qml index 89cc424434..92c1083e18 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/badtype1.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/badtype1.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/badtype2.qml b/tests/auto/declarative/qdeclarativeanimations/data/badtype2.qml index f14eaeee31..71d42c4e4a 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/badtype2.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/badtype2.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/badtype3.qml b/tests/auto/declarative/qdeclarativeanimations/data/badtype3.qml index dd0368c648..257b5a7a29 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/badtype3.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/badtype3.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/badtype4.qml b/tests/auto/declarative/qdeclarativeanimations/data/badtype4.qml index 8d3d05e666..ce5e668e6b 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/badtype4.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/badtype4.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/dontAutoStart.qml b/tests/auto/declarative/qdeclarativeanimations/data/dontAutoStart.qml index 09987deddb..5ed182e51c 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/dontAutoStart.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/dontAutoStart.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/dontStart.qml b/tests/auto/declarative/qdeclarativeanimations/data/dontStart.qml index aab9d115af..91070ac14b 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/dontStart.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/dontStart.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/dontStart2.qml b/tests/auto/declarative/qdeclarativeanimations/data/dontStart2.qml index 034531c50c..934da5dfcc 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/dontStart2.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/dontStart2.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/dotproperty.qml b/tests/auto/declarative/qdeclarativeanimations/data/dotproperty.qml index 0e77c48105..af7be3a3c7 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/dotproperty.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/dotproperty.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/mixedtype1.qml b/tests/auto/declarative/qdeclarativeanimations/data/mixedtype1.qml index def350e92b..c77b6194bb 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/mixedtype1.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/mixedtype1.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/mixedtype2.qml b/tests/auto/declarative/qdeclarativeanimations/data/mixedtype2.qml index a95bf2a801..5cc6806b4a 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/mixedtype2.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/mixedtype2.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/properties.qml b/tests/auto/declarative/qdeclarativeanimations/data/properties.qml index 9e4a74e799..80b0d02953 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/properties.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/properties.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/properties2.qml b/tests/auto/declarative/qdeclarativeanimations/data/properties2.qml index 5de813e24e..d270794c0a 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/properties2.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/properties2.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/properties3.qml b/tests/auto/declarative/qdeclarativeanimations/data/properties3.qml index cf1bc3fe44..97a39de2d4 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/properties3.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/properties3.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/properties4.qml b/tests/auto/declarative/qdeclarativeanimations/data/properties4.qml index ce9f632a3c..1430aed07a 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/properties4.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/properties4.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/properties5.qml b/tests/auto/declarative/qdeclarativeanimations/data/properties5.qml index a7f51168d2..f247fab8c0 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/properties5.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/properties5.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition.qml b/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition.qml index d8ef5d6c33..cc32cd2955 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition2.qml b/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition2.qml index b3b827d5f1..c82baaab37 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition2.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition2.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition3.qml b/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition3.qml index e6f773cb71..6d33635747 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition3.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition3.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition4.qml b/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition4.qml index 0ae717a32e..866985bfb5 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition4.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition4.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition5.qml b/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition5.qml index 44cedf0402..4f6ac8f65d 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition5.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition5.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition6.qml b/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition6.qml index 277cc1b167..f84fb9e369 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition6.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition6.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/rotation.qml b/tests/auto/declarative/qdeclarativeanimations/data/rotation.qml index 6e485858be..2af8e7f7e3 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/rotation.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/rotation.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/valuesource.qml b/tests/auto/declarative/qdeclarativeanimations/data/valuesource.qml index bb6b028c1f..830b454a5c 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/valuesource.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/valuesource.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/valuesource2.qml b/tests/auto/declarative/qdeclarativeanimations/data/valuesource2.qml index b844bd81dd..5326db78d3 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/valuesource2.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/valuesource2.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/binding.qml b/tests/auto/declarative/qdeclarativebehaviors/data/binding.qml index 62e6be5e82..9a064f8b09 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/binding.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/binding.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 Rectangle { width: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/color.qml b/tests/auto/declarative/qdeclarativebehaviors/data/color.qml index e075bd0002..f0f5a74207 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/color.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/color.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 Rectangle { width: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/cpptrigger.qml b/tests/auto/declarative/qdeclarativebehaviors/data/cpptrigger.qml index c766f429bc..79df0a91db 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/cpptrigger.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/cpptrigger.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 Rectangle { width: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/disabled.qml b/tests/auto/declarative/qdeclarativebehaviors/data/disabled.qml index e1f4699301..cd73aa2497 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/disabled.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/disabled.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 Rectangle { width: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/dontStart.qml b/tests/auto/declarative/qdeclarativebehaviors/data/dontStart.qml index c0f4eac03c..d52c357e41 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/dontStart.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/dontStart.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/empty.qml b/tests/auto/declarative/qdeclarativebehaviors/data/empty.qml index b58e332c5f..664c327f45 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/empty.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/empty.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 Rectangle { width: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/explicit.qml b/tests/auto/declarative/qdeclarativebehaviors/data/explicit.qml index 0b5d00b02e..850e3eed2f 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/explicit.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/explicit.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 Rectangle { width: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/groupProperty.qml b/tests/auto/declarative/qdeclarativebehaviors/data/groupProperty.qml index 6eb0729ec2..14fb409750 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/groupProperty.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/groupProperty.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 Rectangle { width: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/groupProperty2.qml b/tests/auto/declarative/qdeclarativebehaviors/data/groupProperty2.qml index 42b80a5bcd..c672c8daef 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/groupProperty2.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/groupProperty2.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 Rectangle { width: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/loop.qml b/tests/auto/declarative/qdeclarativebehaviors/data/loop.qml index 9e328d6aa9..beb12c5cd8 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/loop.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/loop.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 Rectangle { width: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/nonSelecting2.qml b/tests/auto/declarative/qdeclarativebehaviors/data/nonSelecting2.qml index 5857c4dbbb..b35157054e 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/nonSelecting2.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/nonSelecting2.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 Rectangle { width: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/parent.qml b/tests/auto/declarative/qdeclarativebehaviors/data/parent.qml index e3fd77da94..df2145e453 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/parent.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/parent.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 Rectangle { width: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/reassignedAnimation.qml b/tests/auto/declarative/qdeclarativebehaviors/data/reassignedAnimation.qml index 4528cce8c9..005b4989ca 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/reassignedAnimation.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/reassignedAnimation.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 Rectangle { width: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/scripttrigger.qml b/tests/auto/declarative/qdeclarativebehaviors/data/scripttrigger.qml index f2f6352c9d..5fbce580a6 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/scripttrigger.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/scripttrigger.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 Rectangle { width: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/simple.qml b/tests/auto/declarative/qdeclarativebehaviors/data/simple.qml index de27f695a4..5619d1e422 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/simple.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/simple.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 Rectangle { width: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/startup.qml b/tests/auto/declarative/qdeclarativebehaviors/data/startup.qml index f3ff620e20..8ff0ec2b58 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/startup.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/startup.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/startup2.qml b/tests/auto/declarative/qdeclarativebehaviors/data/startup2.qml index 1911cc4eb5..20cdb18f00 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/startup2.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/startup2.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativebinding/data/test-binding.qml b/tests/auto/declarative/qdeclarativebinding/data/test-binding.qml index 9c619e613f..13d660e151 100644 --- a/tests/auto/declarative/qdeclarativebinding/data/test-binding.qml +++ b/tests/auto/declarative/qdeclarativebinding/data/test-binding.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativebinding/data/test-binding2.qml b/tests/auto/declarative/qdeclarativebinding/data/test-binding2.qml index e0f18110f9..e160c991fd 100644 --- a/tests/auto/declarative/qdeclarativebinding/data/test-binding2.qml +++ b/tests/auto/declarative/qdeclarativebinding/data/test-binding2.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeconnection/data/connection-targetchange.qml b/tests/auto/declarative/qdeclarativeconnection/data/connection-targetchange.qml index bb9a3bc0e7..464146b82c 100644 --- a/tests/auto/declarative/qdeclarativeconnection/data/connection-targetchange.qml +++ b/tests/auto/declarative/qdeclarativeconnection/data/connection-targetchange.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 Item { diff --git a/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-ignored.qml b/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-ignored.qml index 764d5abc40..f204f1058a 100644 --- a/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-ignored.qml +++ b/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-ignored.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 Item { diff --git a/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-notarget.qml b/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-notarget.qml index 09e78122b7..c776251669 100644 --- a/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-notarget.qml +++ b/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-notarget.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 Item { diff --git a/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-parent.qml b/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-parent.qml index 478503d808..2e35d2a14a 100644 --- a/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-parent.qml +++ b/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-parent.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 Item { diff --git a/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals.qml b/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals.qml index d4e8d7ec72..45d5e0ca20 100644 --- a/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals.qml +++ b/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals.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 Item { diff --git a/tests/auto/declarative/qdeclarativeconnection/data/test-connection.qml b/tests/auto/declarative/qdeclarativeconnection/data/test-connection.qml index 954ca97976..c2e366077c 100644 --- a/tests/auto/declarative/qdeclarativeconnection/data/test-connection.qml +++ b/tests/auto/declarative/qdeclarativeconnection/data/test-connection.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 Item { diff --git a/tests/auto/declarative/qdeclarativeconnection/data/test-connection2.qml b/tests/auto/declarative/qdeclarativeconnection/data/test-connection2.qml index 9e5a99c5d6..0632f0213e 100644 --- a/tests/auto/declarative/qdeclarativeconnection/data/test-connection2.qml +++ b/tests/auto/declarative/qdeclarativeconnection/data/test-connection2.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 Connections { id: connection; target: connection; onTargetChanged: 1 == 1 } diff --git a/tests/auto/declarative/qdeclarativeconnection/data/test-connection3.qml b/tests/auto/declarative/qdeclarativeconnection/data/test-connection3.qml index 51efde690d..2a1b222c8f 100644 --- a/tests/auto/declarative/qdeclarativeconnection/data/test-connection3.qml +++ b/tests/auto/declarative/qdeclarativeconnection/data/test-connection3.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 Connections {} diff --git a/tests/auto/declarative/qdeclarativeconnection/data/trimming.qml b/tests/auto/declarative/qdeclarativeconnection/data/trimming.qml index 361474cf8a..49b53b54e3 100644 --- a/tests/auto/declarative/qdeclarativeconnection/data/trimming.qml +++ b/tests/auto/declarative/qdeclarativeconnection/data/trimming.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 Item { diff --git a/tests/auto/declarative/qdeclarativedom/data/MyComponent.qml b/tests/auto/declarative/qdeclarativedom/data/MyComponent.qml index dd9e9ea193..8424f41fea 100644 --- a/tests/auto/declarative/qdeclarativedom/data/MyComponent.qml +++ b/tests/auto/declarative/qdeclarativedom/data/MyComponent.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 Item { diff --git a/tests/auto/declarative/qdeclarativedom/data/MyItem.qml b/tests/auto/declarative/qdeclarativedom/data/MyItem.qml index dd9e9ea193..8424f41fea 100644 --- a/tests/auto/declarative/qdeclarativedom/data/MyItem.qml +++ b/tests/auto/declarative/qdeclarativedom/data/MyItem.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 Item { diff --git a/tests/auto/declarative/qdeclarativedom/data/import/Bar.qml b/tests/auto/declarative/qdeclarativedom/data/import/Bar.qml index d26b299d61..938af11453 100644 --- a/tests/auto/declarative/qdeclarativedom/data/import/Bar.qml +++ b/tests/auto/declarative/qdeclarativedom/data/import/Bar.qml @@ -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 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 diff --git a/tests/auto/declarative/qdeclarativedom/data/importlib/sublib/Foo.qml b/tests/auto/declarative/qdeclarativedom/data/importlib/sublib/Foo.qml index d26b299d61..938af11453 100644 --- a/tests/auto/declarative/qdeclarativedom/data/importlib/sublib/Foo.qml +++ b/tests/auto/declarative/qdeclarativedom/data/importlib/sublib/Foo.qml @@ -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 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 diff --git a/tests/auto/declarative/qdeclarativedom/data/top.qml b/tests/auto/declarative/qdeclarativedom/data/top.qml index 6405cd2557..769efd18bb 100644 --- a/tests/auto/declarative/qdeclarativedom/data/top.qml +++ b/tests/auto/declarative/qdeclarativedom/data/top.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 MyComponent { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/ConstantsOverrideBindings.qml b/tests/auto/declarative/qdeclarativeecmascript/data/ConstantsOverrideBindings.qml index b4a702bbbe..8283f5ee98 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/ConstantsOverrideBindings.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/ConstantsOverrideBindings.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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/CustomObject.qml b/tests/auto/declarative/qdeclarativeecmascript/data/CustomObject.qml index 170d02701c..d59c65f2eb 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/CustomObject.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/CustomObject.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/MethodsObject.qml b/tests/auto/declarative/qdeclarativeecmascript/data/MethodsObject.qml index e9a41ed59a..460cd44384 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/MethodsObject.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/MethodsObject.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/NestedTypeTransientErrors.qml b/tests/auto/declarative/qdeclarativeecmascript/data/NestedTypeTransientErrors.qml index 6e50b10a63..152861b71c 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/NestedTypeTransientErrors.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/NestedTypeTransientErrors.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/ScopeObject.qml b/tests/auto/declarative/qdeclarativeecmascript/data/ScopeObject.qml index fe0492f366..7056710f02 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/ScopeObject.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/ScopeObject.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 Item { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/SpuriousWarning.qml b/tests/auto/declarative/qdeclarativeecmascript/data/SpuriousWarning.qml index e144de79f3..573ee6513a 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/SpuriousWarning.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/SpuriousWarning.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 Item { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/TypeForDynamicCreation.qml b/tests/auto/declarative/qdeclarativeecmascript/data/TypeForDynamicCreation.qml index 56e06252c4..fddb65211b 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/TypeForDynamicCreation.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/TypeForDynamicCreation.qml @@ -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 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.test 1.0 MyQmlObject{objectName:"objectThree"} diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/aliasPropertyAndBinding.qml b/tests/auto/declarative/qdeclarativeecmascript/data/aliasPropertyAndBinding.qml index 515f80fdfb..42111985bb 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/aliasPropertyAndBinding.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/aliasPropertyAndBinding.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 import Qt.test 1.0 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/assignBasicTypes.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/assignBasicTypes.2.qml index db7f2b51c1..12457f9c9c 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/assignBasicTypes.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/assignBasicTypes.2.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.test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/assignBasicTypes.qml b/tests/auto/declarative/qdeclarativeecmascript/data/assignBasicTypes.qml index 72ae865b9c..dd95a4cfe0 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/assignBasicTypes.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/assignBasicTypes.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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/attachedProperty.qml b/tests/auto/declarative/qdeclarativeecmascript/data/attachedProperty.qml index 061eda0e54..20cdb31982 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/attachedProperty.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/attachedProperty.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.test 1.0 import Qt.test 1.0 as Namespace diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/attachedPropertyScope.qml b/tests/auto/declarative/qdeclarativeecmascript/data/attachedPropertyScope.qml index f31f142803..7c43ff6256 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/attachedPropertyScope.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/attachedPropertyScope.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 import Qt.test 1.0 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/bindingLoop.qml b/tests/auto/declarative/qdeclarativeecmascript/data/bindingLoop.qml index 80545cf72b..2a392dbcef 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/bindingLoop.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/bindingLoop.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.test 1.0 MyQmlContainer { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/boolPropertiesEvaluateAsBool.1.qml b/tests/auto/declarative/qdeclarativeecmascript/data/boolPropertiesEvaluateAsBool.1.qml index 3147f63989..65fb49a495 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/boolPropertiesEvaluateAsBool.1.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/boolPropertiesEvaluateAsBool.1.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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/boolPropertiesEvaluateAsBool.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/boolPropertiesEvaluateAsBool.2.qml index c89bb49b45..35be3ab242 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/boolPropertiesEvaluateAsBool.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/boolPropertiesEvaluateAsBool.2.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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/bug.1.qml b/tests/auto/declarative/qdeclarativeecmascript/data/bug.1.qml index 88740dcc63..e50d1a77d3 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/bug.1.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/bug.1.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/canAssignNullToQObject.1.qml b/tests/auto/declarative/qdeclarativeecmascript/data/canAssignNullToQObject.1.qml index 3fd9131b2f..95c28b42f9 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/canAssignNullToQObject.1.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/canAssignNullToQObject.1.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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/canAssignNullToQObject.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/canAssignNullToQObject.2.qml index 7530396503..0730e70b7a 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/canAssignNullToQObject.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/canAssignNullToQObject.2.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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/compiled.qml b/tests/auto/declarative/qdeclarativeecmascript/data/compiled.qml index 165590585d..f16c5688c0 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/compiled.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/compiled.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/compositePropertyType.qml b/tests/auto/declarative/qdeclarativeecmascript/data/compositePropertyType.qml index 1dc0ada366..62a39df294 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/compositePropertyType.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/compositePropertyType.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/constantsOverrideBindings.1.qml b/tests/auto/declarative/qdeclarativeecmascript/data/constantsOverrideBindings.1.qml index 13c5ae5fff..e6b3ee2795 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/constantsOverrideBindings.1.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/constantsOverrideBindings.1.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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/constantsOverrideBindings.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/constantsOverrideBindings.2.qml index 207a06b700..a2fa72b3ae 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/constantsOverrideBindings.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/constantsOverrideBindings.2.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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/constantsOverrideBindings.3.qml b/tests/auto/declarative/qdeclarativeecmascript/data/constantsOverrideBindings.3.qml index ca9d1d8ab9..021df66725 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/constantsOverrideBindings.3.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/constantsOverrideBindings.3.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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/declarativeToString.qml b/tests/auto/declarative/qdeclarativeecmascript/data/declarativeToString.qml index ac296ce293..96fc4d5ac7 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/declarativeToString.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/declarativeToString.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.test 1.0 MyQmlObject{ diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/deferredProperties.qml b/tests/auto/declarative/qdeclarativeecmascript/data/deferredProperties.qml index e01f708a07..0d1d3b07b3 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/deferredProperties.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/deferredProperties.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.test 1.0 MyDeferredObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/deferredPropertiesErrors.qml b/tests/auto/declarative/qdeclarativeecmascript/data/deferredPropertiesErrors.qml index 9c46c3fcbb..ae9d374dbb 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/deferredPropertiesErrors.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/deferredPropertiesErrors.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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/deletedEngine.qml b/tests/auto/declarative/qdeclarativeecmascript/data/deletedEngine.qml index 6fc12113f0..042c2b9341 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/deletedEngine.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/deletedEngine.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/deletedObject.qml b/tests/auto/declarative/qdeclarativeecmascript/data/deletedObject.qml index 2337e445a8..ed43cbb441 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/deletedObject.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/deletedObject.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 import Qt.test 1.0 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/dynamicCreation.helper.qml b/tests/auto/declarative/qdeclarativeecmascript/data/dynamicCreation.helper.qml index d790d634e9..5032cdbb98 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/dynamicCreation.helper.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/dynamicCreation.helper.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.test 1.0 MyQmlObject{ diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/dynamicCreation.qml b/tests/auto/declarative/qdeclarativeecmascript/data/dynamicCreation.qml index 7b132e1edf..9090abf1a2 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/dynamicCreation.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/dynamicCreation.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.test 1.0 MyQmlObject{ diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/dynamicDeletion.qml b/tests/auto/declarative/qdeclarativeecmascript/data/dynamicDeletion.qml index f41e5262fd..82f4b810d4 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/dynamicDeletion.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/dynamicDeletion.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.test 1.0 MyQmlObject{ diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/enums.1.qml b/tests/auto/declarative/qdeclarativeecmascript/data/enums.1.qml index 6351823230..641bd373c8 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/enums.1.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/enums.1.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.test 1.0 import Qt.test 1.0 as Namespace diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/enums.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/enums.2.qml index bdc672fadc..9c4170affe 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/enums.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/enums.2.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.test 1.0 import Qt.test 1.0 as Namespace diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/eval.qml b/tests/auto/declarative/qdeclarativeecmascript/data/eval.qml index bc2df98964..53ea6595a2 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/eval.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/eval.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/exceptionClearsOnReeval.qml b/tests/auto/declarative/qdeclarativeecmascript/data/exceptionClearsOnReeval.qml index a2f0d1a8b7..5581840e91 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/exceptionClearsOnReeval.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/exceptionClearsOnReeval.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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/exceptionProducesWarning.qml b/tests/auto/declarative/qdeclarativeecmascript/data/exceptionProducesWarning.qml index 14046f03bb..c148dce57a 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/exceptionProducesWarning.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/exceptionProducesWarning.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 import Qt.test 1.0 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/exceptionProducesWarning2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/exceptionProducesWarning2.qml index 146f6f1455..997cd490a3 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/exceptionProducesWarning2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/exceptionProducesWarning2.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 import Qt.test 1.0 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/extendedObjectPropertyLookup.qml b/tests/auto/declarative/qdeclarativeecmascript/data/extendedObjectPropertyLookup.qml index dc78cd8d00..95d9770e63 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/extendedObjectPropertyLookup.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/extendedObjectPropertyLookup.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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/extensionObjects.qml b/tests/auto/declarative/qdeclarativeecmascript/data/extensionObjects.qml index c57e5f81c4..dc4cd242ef 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/extensionObjects.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/extensionObjects.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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/extensionObjectsPropertyOverride.qml b/tests/auto/declarative/qdeclarativeecmascript/data/extensionObjectsPropertyOverride.qml index 3c443cb975..30ac7ad9e1 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/extensionObjectsPropertyOverride.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/extensionObjectsPropertyOverride.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.test 1.0 OverrideDefaultPropertyObject diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/function.qml b/tests/auto/declarative/qdeclarativeecmascript/data/function.qml index b435f5812e..3ef61d505a 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/function.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/function.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/functionAssignment.1.qml b/tests/auto/declarative/qdeclarativeecmascript/data/functionAssignment.1.qml index 09540f1f6e..c695c3020d 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/functionAssignment.1.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/functionAssignment.1.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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/functionAssignment.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/functionAssignment.2.qml index 948b39c147..69c9056cc1 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/functionAssignment.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/functionAssignment.2.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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/functionErrors.qml b/tests/auto/declarative/qdeclarativeecmascript/data/functionErrors.qml index a893fb0f6d..fc81ff9c82 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/functionErrors.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/functionErrors.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/idShortcutInvalidates.1.qml b/tests/auto/declarative/qdeclarativeecmascript/data/idShortcutInvalidates.1.qml index e3b29aea00..fbcc700c73 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/idShortcutInvalidates.1.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/idShortcutInvalidates.1.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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/idShortcutInvalidates.qml b/tests/auto/declarative/qdeclarativeecmascript/data/idShortcutInvalidates.qml index 4746f3f803..e0bbd18c24 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/idShortcutInvalidates.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/idShortcutInvalidates.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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include.qml b/tests/auto/declarative/qdeclarativeecmascript/data/include.qml index 18543b2dee..2d690a5599 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/include.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include.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 import "include.js" as IncludeTest diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include_callback.qml b/tests/auto/declarative/qdeclarativeecmascript/data/include_callback.qml index a39e821ca7..06bbba2c47 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/include_callback.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include_callback.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 import "include_callback.js" as IncludeTest diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include_pragma.qml b/tests/auto/declarative/qdeclarativeecmascript/data/include_pragma.qml index 67b8cfd85b..7b48744b95 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/include_pragma.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include_pragma.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 import "include_pragma_outer.js" as Script diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include_remote.qml b/tests/auto/declarative/qdeclarativeecmascript/data/include_remote.qml index 06bd17476d..89e431a1b1 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/include_remote.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include_remote.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 import "include_remote.js" as IncludeTest diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include_remote_missing.qml b/tests/auto/declarative/qdeclarativeecmascript/data/include_remote_missing.qml index 8e486b20e9..daf26942b5 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/include_remote_missing.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include_remote_missing.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 import "include_remote_missing.js" as IncludeTest diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include_shared.qml b/tests/auto/declarative/qdeclarativeecmascript/data/include_shared.qml index e957018908..1dfcbadb76 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/include_shared.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include_shared.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 import "include_shared.js" as IncludeTest diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/jsObject.qml b/tests/auto/declarative/qdeclarativeecmascript/data/jsObject.qml index fb4fa4d60f..3ee734b942 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/jsObject.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/jsObject.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/libraryScriptAssert.qml b/tests/auto/declarative/qdeclarativeecmascript/data/libraryScriptAssert.qml index a945a160b3..d42c0209f5 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/libraryScriptAssert.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/libraryScriptAssert.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 import "libraryScriptAssert.js" as Test diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/listProperties.qml b/tests/auto/declarative/qdeclarativeecmascript/data/listProperties.qml index 3ba4183fc7..4c6092ef0f 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/listProperties.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/listProperties.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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/listToVariant.qml b/tests/auto/declarative/qdeclarativeecmascript/data/listToVariant.qml index 697530f0a9..21a7d45d66 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/listToVariant.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/listToVariant.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/methods.1.qml b/tests/auto/declarative/qdeclarativeecmascript/data/methods.1.qml index 0bbee16df8..21b15b1ad4 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/methods.1.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/methods.1.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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/methods.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/methods.2.qml index 9f0c6b15fe..cfc9152e42 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/methods.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/methods.2.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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/methods.3.qml b/tests/auto/declarative/qdeclarativeecmascript/data/methods.3.qml index 269bd83a5e..aec236723b 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/methods.3.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/methods.3.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/methods.4.qml b/tests/auto/declarative/qdeclarativeecmascript/data/methods.4.qml index 2ea9cdb420..ce0432d823 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/methods.4.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/methods.4.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 MethodsObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/methods.5.qml b/tests/auto/declarative/qdeclarativeecmascript/data/methods.5.qml index 0065adda48..71318431ec 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/methods.5.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/methods.5.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 Item { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/multiEngineObject.qml b/tests/auto/declarative/qdeclarativeecmascript/data/multiEngineObject.qml index a8cb50e6d5..8865295d99 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/multiEngineObject.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/multiEngineObject.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/noSpuriousWarningsAtShutdown.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/noSpuriousWarningsAtShutdown.2.qml index 8be2d5bb25..83db057e41 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/noSpuriousWarningsAtShutdown.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/noSpuriousWarningsAtShutdown.2.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 Item { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/noSpuriousWarningsAtShutdown.qml b/tests/auto/declarative/qdeclarativeecmascript/data/noSpuriousWarningsAtShutdown.qml index daa9b0b6ef..74f6b620b3 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/noSpuriousWarningsAtShutdown.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/noSpuriousWarningsAtShutdown.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 Item { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/nonExistantAttachedObject.qml b/tests/auto/declarative/qdeclarativeecmascript/data/nonExistantAttachedObject.qml index f9585db009..1b25a98f87 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/nonExistantAttachedObject.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/nonExistantAttachedObject.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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/nullObjectBinding.qml b/tests/auto/declarative/qdeclarativeecmascript/data/nullObjectBinding.qml index 11472a0e93..dd7fdbdfa4 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/nullObjectBinding.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/nullObjectBinding.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/numberAssignment.qml b/tests/auto/declarative/qdeclarativeecmascript/data/numberAssignment.qml index 30a77e8aed..122db3b940 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/numberAssignment.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/numberAssignment.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.test 1.0 NumberAssignment { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/objectsCompareAsEqual.qml b/tests/auto/declarative/qdeclarativeecmascript/data/objectsCompareAsEqual.qml index 4b511095f3..e3ddae725c 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/objectsCompareAsEqual.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/objectsCompareAsEqual.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 Item { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/outerBindingOverridesInnerBinding.qml b/tests/auto/declarative/qdeclarativeecmascript/data/outerBindingOverridesInnerBinding.qml index 0a933e86f2..e38c88a63b 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/outerBindingOverridesInnerBinding.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/outerBindingOverridesInnerBinding.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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/ownership.qml b/tests/auto/declarative/qdeclarativeecmascript/data/ownership.qml index 231c9e57a9..c71e1d54e7 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/ownership.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/ownership.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/propertyAssignmentErrors.qml b/tests/auto/declarative/qdeclarativeecmascript/data/propertyAssignmentErrors.qml index bef40fd44b..a45d3d7249 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/propertyAssignmentErrors.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/propertyAssignmentErrors.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/qlistqobjectMethods.qml b/tests/auto/declarative/qdeclarativeecmascript/data/qlistqobjectMethods.qml index 22c4f0b77e..fa9855f724 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/qlistqobjectMethods.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/qlistqobjectMethods.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_10696.qml b/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_10696.qml index cb5c4c9189..7d6c44df36 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_10696.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_10696.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_9792.qml b/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_9792.qml index 9ac44308c6..15927d9690 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_9792.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_9792.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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/qtcreatorbug_1289.qml b/tests/auto/declarative/qdeclarativeecmascript/data/qtcreatorbug_1289.qml index b6d31d579c..addc1e29cc 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/qtcreatorbug_1289.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/qtcreatorbug_1289.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/regExp.qml b/tests/auto/declarative/qdeclarativeecmascript/data/regExp.qml index 0dc404b5db..e42c0a6651 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/regExp.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/regExp.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.test 1.0 MyQmlObject{ diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scope.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scope.2.qml index d4d7eb270c..b7eb7ad4fb 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scope.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scope.2.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 Item { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scope.3.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scope.3.qml index 4395ba3306..5a349f9425 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scope.3.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scope.3.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 Item { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scope.4.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scope.4.qml index d65b6e7c7c..9d2ad01652 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scope.4.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scope.4.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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scope.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scope.qml index 7f895ff049..5d031109eb 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scope.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scope.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 Item { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.1.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.1.qml index 5d8e29e096..1238fa3893 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.1.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.1.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.test 1.0 import Qt 4.7 import "scriptConnect.1.js" as Script diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.2.qml index 56819075b4..b3b01935a6 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.2.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.test 1.0 import Qt 4.7 import "scriptConnect.2.js" as Script diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.3.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.3.qml index 40d8079ba2..4f2c170e8f 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.3.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.3.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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.4.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.4.qml index 0356650fa9..6be1bfd62a 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.4.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.4.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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.5.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.5.qml index 661f28e1c6..1008bec753 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.5.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.5.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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.6.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.6.qml index 36655ee7de..37ea249760 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.6.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.6.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.test 1.0 import Qt 4.7 import "scriptConnect.6.js" as Script diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.1.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.1.qml index 0cb4d79e39..41b90ce375 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.1.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.1.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.test 1.0 import Qt 4.7 import "scriptDisconnect.1.js" as Script diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.2.qml index 05ca7a47a6..7db3f89424 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.2.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.test 1.0 import Qt 4.7 import "scriptDisconnect.1.js" as Script diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.3.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.3.qml index 2a66bed337..660f10cbea 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.3.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.3.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.test 1.0 import Qt 4.7 import "scriptDisconnect.1.js" as Script diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.4.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.4.qml index 7beb84e879..46275ada07 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.4.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.4.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.test 1.0 import Qt 4.7 import "scriptDisconnect.1.js" as Script diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scriptErrors.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scriptErrors.qml index e8f7b6262b..bcfbf333ff 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scriptErrors.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scriptErrors.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.test 1.0 import "scriptErrors.js" as Script diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/selfDeletingBinding.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/selfDeletingBinding.2.qml index 58cf8051f0..1371c98003 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/selfDeletingBinding.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/selfDeletingBinding.2.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.test 1.0 MyQmlContainer { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/selfDeletingBinding.qml b/tests/auto/declarative/qdeclarativeecmascript/data/selfDeletingBinding.qml index 074851a67b..39c8ce064e 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/selfDeletingBinding.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/selfDeletingBinding.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.test 1.0 MyQmlContainer { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/shutdownErrors.qml b/tests/auto/declarative/qdeclarativeecmascript/data/shutdownErrors.qml index 823096be22..4e7b49b760 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/shutdownErrors.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/shutdownErrors.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 Item { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/signalAssignment.1.qml b/tests/auto/declarative/qdeclarativeecmascript/data/signalAssignment.1.qml index fbd09142f7..fa512d7da9 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/signalAssignment.1.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/signalAssignment.1.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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/signalAssignment.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/signalAssignment.2.qml index 8addcb9125..99d01cef9a 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/signalAssignment.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/signalAssignment.2.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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/signalParameterTypes.qml b/tests/auto/declarative/qdeclarativeecmascript/data/signalParameterTypes.qml index ffbe317690..6aab02ec39 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/signalParameterTypes.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/signalParameterTypes.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.test 1.0 MyQmlObject diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/signalTriggeredBindings.qml b/tests/auto/declarative/qdeclarativeecmascript/data/signalTriggeredBindings.qml index a2fb4d001e..bad3c45010 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/signalTriggeredBindings.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/signalTriggeredBindings.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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/strictlyEquals.qml b/tests/auto/declarative/qdeclarativeecmascript/data/strictlyEquals.qml index ec49a9592a..88cce9ba0a 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/strictlyEquals.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/strictlyEquals.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.2.qml index a36b4c0849..6264ff0ca2 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.2.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.qml b/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.qml index 26d959677b..c8b4b44488 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/undefinedResetsProperty.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/undefinedResetsProperty.2.qml index e73d38e2ce..7445047720 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/undefinedResetsProperty.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/undefinedResetsProperty.2.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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/undefinedResetsProperty.qml b/tests/auto/declarative/qdeclarativeecmascript/data/undefinedResetsProperty.qml index eceff60aa1..356c095a9a 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/undefinedResetsProperty.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/undefinedResetsProperty.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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/valueTypeFunctions.qml b/tests/auto/declarative/qdeclarativeecmascript/data/valueTypeFunctions.qml index 33b4a68c40..456d5ad901 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/valueTypeFunctions.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/valueTypeFunctions.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.test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/variantsAssignedUndefined.qml b/tests/auto/declarative/qdeclarativeecmascript/data/variantsAssignedUndefined.qml index 46e18e5b31..ac7734c3eb 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/variantsAssignedUndefined.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/variantsAssignedUndefined.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeflickable/data/flickable01.qml b/tests/auto/declarative/qdeclarativeflickable/data/flickable01.qml index 45272e3536..fbcc08eb7d 100644 --- a/tests/auto/declarative/qdeclarativeflickable/data/flickable01.qml +++ b/tests/auto/declarative/qdeclarativeflickable/data/flickable01.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 Flickable { diff --git a/tests/auto/declarative/qdeclarativeflickable/data/flickable02.qml b/tests/auto/declarative/qdeclarativeflickable/data/flickable02.qml index 2550fccd45..3840a94c6e 100644 --- a/tests/auto/declarative/qdeclarativeflickable/data/flickable02.qml +++ b/tests/auto/declarative/qdeclarativeflickable/data/flickable02.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 Flickable { diff --git a/tests/auto/declarative/qdeclarativeflickable/data/flickable03.qml b/tests/auto/declarative/qdeclarativeflickable/data/flickable03.qml index 27fe653a80..2153527f5d 100644 --- a/tests/auto/declarative/qdeclarativeflickable/data/flickable03.qml +++ b/tests/auto/declarative/qdeclarativeflickable/data/flickable03.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 Flickable { diff --git a/tests/auto/declarative/qdeclarativeflickable/data/flickable04.qml b/tests/auto/declarative/qdeclarativeflickable/data/flickable04.qml index aa156edcdf..559ef4e28f 100644 --- a/tests/auto/declarative/qdeclarativeflickable/data/flickable04.qml +++ b/tests/auto/declarative/qdeclarativeflickable/data/flickable04.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 Flickable { diff --git a/tests/auto/declarative/qdeclarativeflipable/data/crash.qml b/tests/auto/declarative/qdeclarativeflipable/data/crash.qml index fb369a62fd..42825b20b8 100644 --- a/tests/auto/declarative/qdeclarativeflipable/data/crash.qml +++ b/tests/auto/declarative/qdeclarativeflipable/data/crash.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 Flipable { diff --git a/tests/auto/declarative/qdeclarativeflipable/data/flipable-abort.qml b/tests/auto/declarative/qdeclarativeflipable/data/flipable-abort.qml index 41463feadb..21f8873083 100644 --- a/tests/auto/declarative/qdeclarativeflipable/data/flipable-abort.qml +++ b/tests/auto/declarative/qdeclarativeflipable/data/flipable-abort.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeflipable/data/test-flipable.qml b/tests/auto/declarative/qdeclarativeflipable/data/test-flipable.qml index 5ddf09df64..a46fa3959b 100644 --- a/tests/auto/declarative/qdeclarativeflipable/data/test-flipable.qml +++ b/tests/auto/declarative/qdeclarativeflipable/data/test-flipable.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 Flipable { diff --git a/tests/auto/declarative/qdeclarativefocusscope/data/forcefocus.qml b/tests/auto/declarative/qdeclarativefocusscope/data/forcefocus.qml index 5904fd65a0..60124ab483 100644 --- a/tests/auto/declarative/qdeclarativefocusscope/data/forcefocus.qml +++ b/tests/auto/declarative/qdeclarativefocusscope/data/forcefocus.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativefocusscope/data/test.qml b/tests/auto/declarative/qdeclarativefocusscope/data/test.qml index 6b09c29d92..ba5f94a9b4 100644 --- a/tests/auto/declarative/qdeclarativefocusscope/data/test.qml +++ b/tests/auto/declarative/qdeclarativefocusscope/data/test.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativefocusscope/data/test2.qml b/tests/auto/declarative/qdeclarativefocusscope/data/test2.qml index 216277e7ea..4b0ac77d86 100644 --- a/tests/auto/declarative/qdeclarativefocusscope/data/test2.qml +++ b/tests/auto/declarative/qdeclarativefocusscope/data/test2.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativefocusscope/data/test3.qml b/tests/auto/declarative/qdeclarativefocusscope/data/test3.qml index 2ac0d18be9..51968d0d12 100644 --- a/tests/auto/declarative/qdeclarativefocusscope/data/test3.qml +++ b/tests/auto/declarative/qdeclarativefocusscope/data/test3.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativefocusscope/data/test4.qml b/tests/auto/declarative/qdeclarativefocusscope/data/test4.qml index 8862b3947a..4816830b46 100644 --- a/tests/auto/declarative/qdeclarativefocusscope/data/test4.qml +++ b/tests/auto/declarative/qdeclarativefocusscope/data/test4.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativefocusscope/data/test5.qml b/tests/auto/declarative/qdeclarativefocusscope/data/test5.qml index d67ec57534..12624a3bfd 100644 --- a/tests/auto/declarative/qdeclarativefocusscope/data/test5.qml +++ b/tests/auto/declarative/qdeclarativefocusscope/data/test5.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativefolderlistmodel/data/basic.qml b/tests/auto/declarative/qdeclarativefolderlistmodel/data/basic.qml index 2c4977d08b..a9b7962d0a 100644 --- a/tests/auto/declarative/qdeclarativefolderlistmodel/data/basic.qml +++ b/tests/auto/declarative/qdeclarativefolderlistmodel/data/basic.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.labs.folderlistmodel 1.0 FolderListModel { diff --git a/tests/auto/declarative/qdeclarativefolderlistmodel/data/dummy.qml b/tests/auto/declarative/qdeclarativefolderlistmodel/data/dummy.qml index 609638bec6..0cf2bb1433 100644 --- a/tests/auto/declarative/qdeclarativefolderlistmodel/data/dummy.qml +++ b/tests/auto/declarative/qdeclarativefolderlistmodel/data/dummy.qml @@ -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 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$ +** +****************************************************************************/ + // This file is not used, it is just content for QDirModel diff --git a/tests/auto/declarative/qdeclarativegridview/data/displaygrid.qml b/tests/auto/declarative/qdeclarativegridview/data/displaygrid.qml index 9c3c8475c4..23059fc128 100644 --- a/tests/auto/declarative/qdeclarativegridview/data/displaygrid.qml +++ b/tests/auto/declarative/qdeclarativegridview/data/displaygrid.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativegridview/data/gridview-enforcerange.qml b/tests/auto/declarative/qdeclarativegridview/data/gridview-enforcerange.qml index 2fe173fc83..d8e2b6f789 100644 --- a/tests/auto/declarative/qdeclarativegridview/data/gridview-enforcerange.qml +++ b/tests/auto/declarative/qdeclarativegridview/data/gridview-enforcerange.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativegridview/data/gridview-initCurrent.qml b/tests/auto/declarative/qdeclarativegridview/data/gridview-initCurrent.qml index 93312433e6..0849e98c37 100644 --- a/tests/auto/declarative/qdeclarativegridview/data/gridview-initCurrent.qml +++ b/tests/auto/declarative/qdeclarativegridview/data/gridview-initCurrent.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativegridview/data/gridview1.qml b/tests/auto/declarative/qdeclarativegridview/data/gridview1.qml index 3d826dd406..0d748b9393 100644 --- a/tests/auto/declarative/qdeclarativegridview/data/gridview1.qml +++ b/tests/auto/declarative/qdeclarativegridview/data/gridview1.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativegridview/data/gridview2.qml b/tests/auto/declarative/qdeclarativegridview/data/gridview2.qml index 772255da45..a633a5c7f5 100644 --- a/tests/auto/declarative/qdeclarativegridview/data/gridview2.qml +++ b/tests/auto/declarative/qdeclarativegridview/data/gridview2.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 GridView { diff --git a/tests/auto/declarative/qdeclarativegridview/data/gridview3.qml b/tests/auto/declarative/qdeclarativegridview/data/gridview3.qml index f108e3ddd7..0a12c71ec3 100644 --- a/tests/auto/declarative/qdeclarativegridview/data/gridview3.qml +++ b/tests/auto/declarative/qdeclarativegridview/data/gridview3.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 GridView { diff --git a/tests/auto/declarative/qdeclarativegridview/data/manual-highlight.qml b/tests/auto/declarative/qdeclarativegridview/data/manual-highlight.qml index 510fcc542b..b8c0b054e4 100644 --- a/tests/auto/declarative/qdeclarativegridview/data/manual-highlight.qml +++ b/tests/auto/declarative/qdeclarativegridview/data/manual-highlight.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 Item { diff --git a/tests/auto/declarative/qdeclarativegridview/data/propertychangestest.qml b/tests/auto/declarative/qdeclarativegridview/data/propertychangestest.qml index 8e4e1783ce..50a3fa04bd 100644 --- a/tests/auto/declarative/qdeclarativegridview/data/propertychangestest.qml +++ b/tests/auto/declarative/qdeclarativegridview/data/propertychangestest.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativegridview/data/setindex.qml b/tests/auto/declarative/qdeclarativegridview/data/setindex.qml index 93ef69ba18..a89564e35c 100644 --- a/tests/auto/declarative/qdeclarativegridview/data/setindex.qml +++ b/tests/auto/declarative/qdeclarativegridview/data/setindex.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeimage/data/aspectratio.qml b/tests/auto/declarative/qdeclarativeimage/data/aspectratio.qml index 402d33e2f5..81be71043d 100644 --- a/tests/auto/declarative/qdeclarativeimage/data/aspectratio.qml +++ b/tests/auto/declarative/qdeclarativeimage/data/aspectratio.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 Image { diff --git a/tests/auto/declarative/qdeclarativeimage/data/tiling.qml b/tests/auto/declarative/qdeclarativeimage/data/tiling.qml index 32839bbbf1..f93db0611b 100644 --- a/tests/auto/declarative/qdeclarativeimage/data/tiling.qml +++ b/tests/auto/declarative/qdeclarativeimage/data/tiling.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeinfo/data/NestedObject.qml b/tests/auto/declarative/qdeclarativeinfo/data/NestedObject.qml index 30e82742dd..50d396ca9e 100644 --- a/tests/auto/declarative/qdeclarativeinfo/data/NestedObject.qml +++ b/tests/auto/declarative/qdeclarativeinfo/data/NestedObject.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeinfo/data/nestedQmlObject.qml b/tests/auto/declarative/qdeclarativeinfo/data/nestedQmlObject.qml index 9bd8571963..062dde90ad 100644 --- a/tests/auto/declarative/qdeclarativeinfo/data/nestedQmlObject.qml +++ b/tests/auto/declarative/qdeclarativeinfo/data/nestedQmlObject.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeinfo/data/qmlObject.qml b/tests/auto/declarative/qdeclarativeinfo/data/qmlObject.qml index 9bb6be712d..38b7c54a27 100644 --- a/tests/auto/declarative/qdeclarativeinfo/data/qmlObject.qml +++ b/tests/auto/declarative/qdeclarativeinfo/data/qmlObject.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeitem/data/childrenProperty.qml b/tests/auto/declarative/qdeclarativeitem/data/childrenProperty.qml index 595800412d..598a027c94 100644 --- a/tests/auto/declarative/qdeclarativeitem/data/childrenProperty.qml +++ b/tests/auto/declarative/qdeclarativeitem/data/childrenProperty.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 Item { diff --git a/tests/auto/declarative/qdeclarativeitem/data/childrenRect.qml b/tests/auto/declarative/qdeclarativeitem/data/childrenRect.qml index f351b53dbb..1fd8833add 100644 --- a/tests/auto/declarative/qdeclarativeitem/data/childrenRect.qml +++ b/tests/auto/declarative/qdeclarativeitem/data/childrenRect.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeitem/data/keynavigationtest.qml b/tests/auto/declarative/qdeclarativeitem/data/keynavigationtest.qml index 87e64c5acd..bfbf4ca673 100644 --- a/tests/auto/declarative/qdeclarativeitem/data/keynavigationtest.qml +++ b/tests/auto/declarative/qdeclarativeitem/data/keynavigationtest.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 Grid { diff --git a/tests/auto/declarative/qdeclarativeitem/data/keyspriority.qml b/tests/auto/declarative/qdeclarativeitem/data/keyspriority.qml index 171536b9d8..b86d22692b 100644 --- a/tests/auto/declarative/qdeclarativeitem/data/keyspriority.qml +++ b/tests/auto/declarative/qdeclarativeitem/data/keyspriority.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 import Test 1.0 diff --git a/tests/auto/declarative/qdeclarativeitem/data/keystest.qml b/tests/auto/declarative/qdeclarativeitem/data/keystest.qml index 8ff3e87b8b..961a440ddf 100644 --- a/tests/auto/declarative/qdeclarativeitem/data/keystest.qml +++ b/tests/auto/declarative/qdeclarativeitem/data/keystest.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 Item { diff --git a/tests/auto/declarative/qdeclarativeitem/data/mapCoordinates.qml b/tests/auto/declarative/qdeclarativeitem/data/mapCoordinates.qml index 4a92e9d301..20b61fd930 100644 --- a/tests/auto/declarative/qdeclarativeitem/data/mapCoordinates.qml +++ b/tests/auto/declarative/qdeclarativeitem/data/mapCoordinates.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 Item { diff --git a/tests/auto/declarative/qdeclarativeitem/data/mouseFocus.qml b/tests/auto/declarative/qdeclarativeitem/data/mouseFocus.qml index a562b8b0ea..f8ff606f65 100644 --- a/tests/auto/declarative/qdeclarativeitem/data/mouseFocus.qml +++ b/tests/auto/declarative/qdeclarativeitem/data/mouseFocus.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 QGraphicsWidget { diff --git a/tests/auto/declarative/qdeclarativeitem/data/propertychanges.qml b/tests/auto/declarative/qdeclarativeitem/data/propertychanges.qml index dd8645375d..0a386989e9 100644 --- a/tests/auto/declarative/qdeclarativeitem/data/propertychanges.qml +++ b/tests/auto/declarative/qdeclarativeitem/data/propertychanges.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 Item { diff --git a/tests/auto/declarative/qdeclarativeitem/data/resourcesProperty.qml b/tests/auto/declarative/qdeclarativeitem/data/resourcesProperty.qml index 852f24216f..31952019e2 100644 --- a/tests/auto/declarative/qdeclarativeitem/data/resourcesProperty.qml +++ b/tests/auto/declarative/qdeclarativeitem/data/resourcesProperty.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 Item { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/Alias.qml b/tests/auto/declarative/qdeclarativelanguage/data/Alias.qml index deb84a8eaf..edf72fbf38 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/Alias.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/Alias.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/Alias2.qml b/tests/auto/declarative/qdeclarativelanguage/data/Alias2.qml index db205f112e..7fc838a61e 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/Alias2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/Alias2.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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/Alias3.qml b/tests/auto/declarative/qdeclarativelanguage/data/Alias3.qml index 04f5ba37d7..c047193f42 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/Alias3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/Alias3.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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/Alias4.qml b/tests/auto/declarative/qdeclarativelanguage/data/Alias4.qml index 80414acbe7..74d9c89a47 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/Alias4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/Alias4.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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/ComponentComposite.qml b/tests/auto/declarative/qdeclarativelanguage/data/ComponentComposite.qml index 4c78cd774c..0ffed90f3a 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/ComponentComposite.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/ComponentComposite.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 Component { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/CompositeType.qml b/tests/auto/declarative/qdeclarativelanguage/data/CompositeType.qml index 61e6146d9c..bc6b152768 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/CompositeType.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/CompositeType.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/CompositeType2.qml b/tests/auto/declarative/qdeclarativelanguage/data/CompositeType2.qml index 86210e9072..e8a37678f1 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/CompositeType2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/CompositeType2.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 Test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/CompositeType3.qml b/tests/auto/declarative/qdeclarativelanguage/data/CompositeType3.qml index 0275e214e3..a22ba254c0 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/CompositeType3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/CompositeType3.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/CompositeType4.qml b/tests/auto/declarative/qdeclarativelanguage/data/CompositeType4.qml index a6a8168d8f..71f5b68aa5 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/CompositeType4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/CompositeType4.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 Test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/DynamicPropertiesNestedType.qml b/tests/auto/declarative/qdeclarativelanguage/data/DynamicPropertiesNestedType.qml index 9746ab0607..81b629ce79 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/DynamicPropertiesNestedType.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/DynamicPropertiesNestedType.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/HelperAlias.qml b/tests/auto/declarative/qdeclarativelanguage/data/HelperAlias.qml index 23d6ed9aeb..18ab9b5344 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/HelperAlias.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/HelperAlias.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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/I18n.qml b/tests/auto/declarative/qdeclarativelanguage/data/I18n.qml index 558c836e52..78cd7f3f8b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/I18n.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/I18n.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/I18nType30.qml b/tests/auto/declarative/qdeclarativelanguage/data/I18nType30.qml index 42dbc69044..73297bc252 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/I18nType30.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/I18nType30.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/LocalLast.qml b/tests/auto/declarative/qdeclarativelanguage/data/LocalLast.qml index 8c953cbc4b..af5647ed52 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/LocalLast.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/LocalLast.qml @@ -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 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 Text {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/MyComponent.qml b/tests/auto/declarative/qdeclarativelanguage/data/MyComponent.qml index 1a23277ff8..a33772ace8 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/MyComponent.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/MyComponent.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 Test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/MyCompositeValueSource.qml b/tests/auto/declarative/qdeclarativelanguage/data/MyCompositeValueSource.qml index e620e26490..13722bc137 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/MyCompositeValueSource.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/MyCompositeValueSource.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 Test 1.0 MyPropertyValueSource { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/MyContainerComponent.qml b/tests/auto/declarative/qdeclarativelanguage/data/MyContainerComponent.qml index 61f54c5eb8..6a7572cffd 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/MyContainerComponent.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/MyContainerComponent.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 Test 1.0 MyContainer { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/NestedAlias.qml b/tests/auto/declarative/qdeclarativelanguage/data/NestedAlias.qml index fdf480012b..6f1c823c65 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/NestedAlias.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/NestedAlias.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/NestedErrorsType.qml b/tests/auto/declarative/qdeclarativelanguage/data/NestedErrorsType.qml index ee023357d5..ea02329c30 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/NestedErrorsType.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/NestedErrorsType.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 Item { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/OnCompletedType.qml b/tests/auto/declarative/qdeclarativelanguage/data/OnCompletedType.qml index 537395916a..2192adba0d 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/OnCompletedType.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/OnCompletedType.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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/OnDestructionType.qml b/tests/auto/declarative/qdeclarativelanguage/data/OnDestructionType.qml index d5c6979b92..63a6c0051f 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/OnDestructionType.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/OnDestructionType.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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/alias.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/alias.1.qml index 291d47a496..962f1fbc7b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/alias.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/alias.1.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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/alias.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/alias.2.qml index 5c922709fe..8cc12b9176 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/alias.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/alias.2.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 Test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/alias.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/alias.3.qml index 787eb77a86..97418c897e 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/alias.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/alias.3.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/alias.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/alias.4.qml index bd6a769367..882d87ea07 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/alias.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/alias.4.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 Test 1.0 Alias2 { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/alias.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/alias.5.qml index bbd190110d..30261b8a0e 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/alias.5.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/alias.5.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 import Test 1.0 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/alias.6.qml b/tests/auto/declarative/qdeclarativelanguage/data/alias.6.qml index 2d99b64eeb..7ff038dd2e 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/alias.6.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/alias.6.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/alias.7.qml b/tests/auto/declarative/qdeclarativelanguage/data/alias.7.qml index 4ceff3d869..6f1c7ff3c3 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/alias.7.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/alias.7.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/alias.8.qml b/tests/auto/declarative/qdeclarativelanguage/data/alias.8.qml index 5bf8702bdd..c72362509b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/alias.8.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/alias.8.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/alias.9.qml b/tests/auto/declarative/qdeclarativelanguage/data/alias.9.qml index b8c71e1854..a67e64ded5 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/alias.9.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/alias.9.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignBasicTypes.qml b/tests/auto/declarative/qdeclarativelanguage/data/assignBasicTypes.qml index 9fe0ded459..c83824a977 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/assignBasicTypes.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignBasicTypes.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 Test 1.0 MyTypeObject { flagProperty: "FlagVal1 | FlagVal3" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignCompositeToType.qml b/tests/auto/declarative/qdeclarativelanguage/data/assignCompositeToType.qml index 1009df72ae..50ac116c3e 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/assignCompositeToType.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignCompositeToType.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 import Test 1.0 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignLiteralSignalProperty.qml b/tests/auto/declarative/qdeclarativelanguage/data/assignLiteralSignalProperty.qml index 399fcea04d..37e8e6412c 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/assignLiteralSignalProperty.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignLiteralSignalProperty.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 Test 1.0 MyQmlObject { onLiteralSignal: 10 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignLiteralToVariant.qml b/tests/auto/declarative/qdeclarativelanguage/data/assignLiteralToVariant.qml index bac704e698..8a181fcdc5 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/assignLiteralToVariant.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignLiteralToVariant.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignObjectToSignal.qml b/tests/auto/declarative/qdeclarativelanguage/data/assignObjectToSignal.qml index 789cc66215..f7af847ca5 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/assignObjectToSignal.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignObjectToSignal.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 Test 1.0 MyQmlObject { onBasicSignal: MyQmlObject {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignObjectToVariant.qml b/tests/auto/declarative/qdeclarativelanguage/data/assignObjectToVariant.qml index 2b1ef7614d..320f00043c 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/assignObjectToVariant.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignObjectToVariant.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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignQmlComponent.qml b/tests/auto/declarative/qdeclarativelanguage/data/assignQmlComponent.qml index 20bdc559c1..dc16d3d494 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/assignQmlComponent.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignQmlComponent.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 Test 1.0 MyContainer { MyComponent { x: 10; y: 11; } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignSignal.qml b/tests/auto/declarative/qdeclarativelanguage/data/assignSignal.qml index 2a48df8fcf..1c0386ae0e 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/assignSignal.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignSignal.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 Test 1.0 MyQmlObject { onBasicSignal: basicSlot() diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignToNamespace.qml b/tests/auto/declarative/qdeclarativelanguage/data/assignToNamespace.qml index 2f494180cd..915e52fdcf 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/assignToNamespace.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignToNamespace.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 as Qt47 Qt47.QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignTypeExtremes.qml b/tests/auto/declarative/qdeclarativelanguage/data/assignTypeExtremes.qml index 60ede525e4..e81e0477a7 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/assignTypeExtremes.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignTypeExtremes.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 Test 1.0 MyTypeObject { uintProperty: 4000000000 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignValueToSignal.qml b/tests/auto/declarative/qdeclarativelanguage/data/assignValueToSignal.qml index 6fa1259f39..195cc4d2d1 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/assignValueToSignal.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignValueToSignal.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 Test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/attachedProperties.qml b/tests/auto/declarative/qdeclarativelanguage/data/attachedProperties.qml index 3a78170e1a..d1373f644f 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/attachedProperties.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/attachedProperties.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 Test 1.0 import Test 1.0 as Namespace import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/autoComponentCreation.qml b/tests/auto/declarative/qdeclarativelanguage/data/autoComponentCreation.qml index 5d00144eaf..22c8027779 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/autoComponentCreation.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/autoComponentCreation.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 Test 1.0 MyTypeObject { componentProperty : MyTypeObject { realProperty: 9 } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/autoNotifyConnection.qml b/tests/auto/declarative/qdeclarativelanguage/data/autoNotifyConnection.qml index 640fb54f99..ddee8a0fc5 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/autoNotifyConnection.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/autoNotifyConnection.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 Test 1.0 MyQmlObject { property bool receivedNotify : false diff --git a/tests/auto/declarative/qdeclarativelanguage/data/component.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/component.1.qml index 730fffdcbd..df66f7df8b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/component.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/component.1.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 Component { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/component.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/component.2.qml index 7e7dd0f03d..786ba9f89b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/component.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/component.2.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 Item { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/component.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/component.3.qml index f0d5f7172d..3527b46dbb 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/component.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/component.3.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 Item { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/component.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/component.4.qml index 521adbca34..933d4a6e60 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/component.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/component.4.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 Component { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/component.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/component.5.qml index 9c3938b2fd..2ea85cf398 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/component.5.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/component.5.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 Component { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/component.6.qml b/tests/auto/declarative/qdeclarativelanguage/data/component.6.qml index 9208722cd9..9a457dc241 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/component.6.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/component.6.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 Component { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/component.7.qml b/tests/auto/declarative/qdeclarativelanguage/data/component.7.qml index b81e0c392b..91c238b27c 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/component.7.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/component.7.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 Component { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/component.8.qml b/tests/auto/declarative/qdeclarativelanguage/data/component.8.qml index 0b00890fdb..3750e49cdd 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/component.8.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/component.8.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 Component { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/component.9.qml b/tests/auto/declarative/qdeclarativelanguage/data/component.9.qml index c5f93c9406..c71a1bdff3 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/component.9.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/component.9.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 Component { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/componentCompositeType.qml b/tests/auto/declarative/qdeclarativelanguage/data/componentCompositeType.qml index 725069eb6c..db2682f470 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/componentCompositeType.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/componentCompositeType.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/cppnamespace.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/cppnamespace.2.qml index e3b32ca5d8..aa88b0e838 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/cppnamespace.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/cppnamespace.2.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 Test 1.0 MySecondNamespacedType { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/cppnamespace.qml b/tests/auto/declarative/qdeclarativelanguage/data/cppnamespace.qml index e1daf3b78f..15f41894e6 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/cppnamespace.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/cppnamespace.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 Test 1.0 MyNamespacedType { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/crash2.qml b/tests/auto/declarative/qdeclarativelanguage/data/crash2.qml index f11abd9ab9..af9cfe916a 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/crash2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/crash2.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/customOnProperty.qml b/tests/auto/declarative/qdeclarativelanguage/data/customOnProperty.qml index 438e8e9209..a4d5869217 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/customOnProperty.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/customOnProperty.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/customParserIdNotAllowed.qml b/tests/auto/declarative/qdeclarativelanguage/data/customParserIdNotAllowed.qml index 902b59807a..450b6ac282 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/customParserIdNotAllowed.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/customParserIdNotAllowed.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 ListModel { ListElement { a: 10 } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/customParserTypes.qml b/tests/auto/declarative/qdeclarativelanguage/data/customParserTypes.qml index 3230e49122..fef23cc925 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/customParserTypes.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/customParserTypes.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 ListModel { ListElement { a: 10 } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/customVariantTypes.qml b/tests/auto/declarative/qdeclarativelanguage/data/customVariantTypes.qml index 0263ed20f2..cd3fdd97f1 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/customVariantTypes.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/customVariantTypes.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 Test 1.0 MyQmlObject { customType: "10" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/declaredPropertyValues.qml b/tests/auto/declarative/qdeclarativelanguage/data/declaredPropertyValues.qml index c2418610d2..ce61996a11 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/declaredPropertyValues.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/declaredPropertyValues.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/defaultGrouped.qml b/tests/auto/declarative/qdeclarativelanguage/data/defaultGrouped.qml index 0cd033874e..ce3b17bcc9 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/defaultGrouped.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/defaultGrouped.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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/defaultPropertyListOrder.qml b/tests/auto/declarative/qdeclarativelanguage/data/defaultPropertyListOrder.qml index b4203b5a52..3791e8f002 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/defaultPropertyListOrder.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/defaultPropertyListOrder.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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/destroyedSignal.qml b/tests/auto/declarative/qdeclarativelanguage/data/destroyedSignal.qml index 54d080a714..00390d857b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/destroyedSignal.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/destroyedSignal.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/doubleSignal.qml b/tests/auto/declarative/qdeclarativelanguage/data/doubleSignal.qml index fb07b9f659..415dc7e159 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/doubleSignal.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/doubleSignal.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 Test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/duplicateIDs.qml b/tests/auto/declarative/qdeclarativelanguage/data/duplicateIDs.qml index a993abdd37..0c0784493e 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/duplicateIDs.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/duplicateIDs.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 Test 1.0 MyContainer { MyQmlObject { id: myID } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.1.qml index c0ed52cb84..fa4ab036fc 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.1.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.2.qml index 1f46b96131..05167dbb52 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.2.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.3.qml index cf49062645..ef6fac2aef 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.3.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.4.qml index a14ec4c56e..a649738f4a 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.4.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.5.qml index ea77cfde83..e265bd79a5 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.5.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.5.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/dynamicObject.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/dynamicObject.1.qml index a1be43a046..4872df8176 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/dynamicObject.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/dynamicObject.1.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 Test 1.0 import Qt 4.7 MyCustomParserType { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/dynamicObjectProperties.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/dynamicObjectProperties.2.qml index df3de207ea..6bfd3350b1 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/dynamicObjectProperties.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/dynamicObjectProperties.2.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 import Qt 4.7 as Qt47 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/dynamicObjectProperties.qml b/tests/auto/declarative/qdeclarativelanguage/data/dynamicObjectProperties.qml index c9973563d0..e0c247a7fd 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/dynamicObjectProperties.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/dynamicObjectProperties.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 Test 1.0 import Qt 4.7 import Qt 4.7 as Qt47 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/dynamicProperties.qml b/tests/auto/declarative/qdeclarativelanguage/data/dynamicProperties.qml index 6bcae0fbfa..cf4f4016d1 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/dynamicProperties.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/dynamicProperties.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 Test 1.0 import Qt 4.7 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/dynamicPropertiesNested.qml b/tests/auto/declarative/qdeclarativelanguage/data/dynamicPropertiesNested.qml index cceb44bfd1..07368f249e 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/dynamicPropertiesNested.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/dynamicPropertiesNested.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 DynamicPropertiesNestedType { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/dynamicSignalsAndSlots.qml b/tests/auto/declarative/qdeclarativelanguage/data/dynamicSignalsAndSlots.qml index 9aa5e86c4d..9905ddbee9 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/dynamicSignalsAndSlots.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/dynamicSignalsAndSlots.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 QtObject { signal signal1 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/empty.qml b/tests/auto/declarative/qdeclarativelanguage/data/empty.qml index e69de29bb2..ec36c4267e 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/empty.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/empty.qml @@ -0,0 +1,41 @@ +/**************************************************************************** +** +** 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$ +** +****************************************************************************/ + diff --git a/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.qml b/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.qml index c84fea3fe6..30d9ede847 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.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 Test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/enumTypes.qml b/tests/auto/declarative/qdeclarativelanguage/data/enumTypes.qml index 6b5b451456..22fa98cc9b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/enumTypes.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/enumTypes.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 Font { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/failingComponentTest.qml b/tests/auto/declarative/qdeclarativelanguage/data/failingComponentTest.qml index 74a6acfc49..084b41b18b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/failingComponentTest.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/failingComponentTest.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 Test 1.0 MyContainer { FailingComponent {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/fakeDotProperty.qml b/tests/auto/declarative/qdeclarativelanguage/data/fakeDotProperty.qml index d971eee4d0..92fd63a12d 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/fakeDotProperty.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/fakeDotProperty.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 Test 1.0 MyQmlObject { value.something: "hello" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/finalOverride.qml b/tests/auto/declarative/qdeclarativelanguage/data/finalOverride.qml index a84393af94..bf4dac27ce 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/finalOverride.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/finalOverride.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 Test 1.0 MyQmlObject { property int value: 10 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/i18nDeclaredPropertyNames.qml b/tests/auto/declarative/qdeclarativelanguage/data/i18nDeclaredPropertyNames.qml index 558c836e52..78cd7f3f8b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/i18nDeclaredPropertyNames.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/i18nDeclaredPropertyNames.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/i18nDeclaredPropertyUse.qml b/tests/auto/declarative/qdeclarativelanguage/data/i18nDeclaredPropertyUse.qml index 74918e2764..b1725220eb 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/i18nDeclaredPropertyUse.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/i18nDeclaredPropertyUse.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$ +** +****************************************************************************/ + I18n { áâãäå: 15 } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/i18nNameSpace.qml b/tests/auto/declarative/qdeclarativelanguage/data/i18nNameSpace.qml index c0b2f94857..9066fd86ce 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/i18nNameSpace.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/i18nNameSpace.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 Test 1.0 as Áâãäå Áâãäå.MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/i18nScript.qml b/tests/auto/declarative/qdeclarativelanguage/data/i18nScript.qml index e77cb52074..30648617a6 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/i18nScript.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/i18nScript.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/i18nStrings.qml b/tests/auto/declarative/qdeclarativelanguage/data/i18nStrings.qml index 764c92639a..6afe2de03f 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/i18nStrings.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/i18nStrings.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/i18nType.qml b/tests/auto/declarative/qdeclarativelanguage/data/i18nType.qml index d7954ef718..780d8e17e3 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/i18nType.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/i18nType.qml @@ -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 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$ +** +****************************************************************************/ + I18nTypeÁâãäå { } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/idProperty.qml b/tests/auto/declarative/qdeclarativelanguage/data/idProperty.qml index bf048ea60a..320f9822f6 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/idProperty.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/idProperty.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 Test 1.0 MyContainer { property variant object : myObjectId diff --git a/tests/auto/declarative/qdeclarativelanguage/data/importNamespaceConflict.qml b/tests/auto/declarative/qdeclarativelanguage/data/importNamespaceConflict.qml index 3b80f0b9f0..4cc43b9660 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/importNamespaceConflict.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/importNamespaceConflict.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 Test 1.0 as Rectangle import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/importNewerVersion.qml b/tests/auto/declarative/qdeclarativelanguage/data/importNewerVersion.qml index c4a0d386a4..e5539ff1bd 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/importNewerVersion.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/importNewerVersion.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 Test 2.0 MyTypeObject { } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/importNonExist.qml b/tests/auto/declarative/qdeclarativelanguage/data/importNonExist.qml index 483cfec40d..565ed299b8 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/importNonExist.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/importNonExist.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$ +** +****************************************************************************/ + // imports... import "will-not-be-found" import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/importNonExistOlder.qml b/tests/auto/declarative/qdeclarativelanguage/data/importNonExistOlder.qml index 18514b1efa..a413025127 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/importNonExistOlder.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/importNonExistOlder.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 Test 0.1 MyTypeObject { } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/importVersionMissingBuiltIn.qml b/tests/auto/declarative/qdeclarativelanguage/data/importVersionMissingBuiltIn.qml index 23ed566e15..b985a8b58f 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/importVersionMissingBuiltIn.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/importVersionMissingBuiltIn.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 Test as S S.MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/importVersionMissingInstalled.qml b/tests/auto/declarative/qdeclarativelanguage/data/importVersionMissingInstalled.qml index 97ec22280f..bf4e4dc822 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/importVersionMissingInstalled.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/importVersionMissingInstalled.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 com.nokia.installedtest as T T.InstalledTest {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/importscript.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/importscript.1.qml index 2b2ab6ba0d..177d4288aa 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/importscript.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/importscript.1.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 "test.js" Item { } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/inlineQmlComponents.qml b/tests/auto/declarative/qdeclarativelanguage/data/inlineQmlComponents.qml index 1ebec1b086..3e7346205a 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/inlineQmlComponents.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/inlineQmlComponents.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 Test 1.0 import Qt 4.7 MyContainer { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/interfaceProperty.qml b/tests/auto/declarative/qdeclarativelanguage/data/interfaceProperty.qml index 6a47536459..6185b4b3e0 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/interfaceProperty.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/interfaceProperty.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 Test 1.0 import Qt 4.7 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/interfaceQList.qml b/tests/auto/declarative/qdeclarativelanguage/data/interfaceQList.qml index c87dfae785..74e57ebc27 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/interfaceQList.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/interfaceQList.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 Test 1.0 MyContainer { qlistInterfaces: [ diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.1.qml index 985fb94c4c..58c6e665b7 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.1.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.2.qml index a2ac91c134..fe52f1fd31 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.2.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.3.qml index cc717530bc..7ba86825cc 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.3.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.4.qml index cfdfca0590..0e64bdff5d 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.4.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.5.qml index 0c1d5d7ef1..b65dcf2102 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.5.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.5.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.6.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.6.qml index edfdb24bcc..ae45824904 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.6.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.6.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.1.qml index 84d39df9c8..a2215fcc0c 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.1.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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.10.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.10.qml index 40e39263d6..21eed7f5ab 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.10.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.10.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 Test 1.0 as Namespace import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.11.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.11.qml index 28f8220992..468cfac514 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.11.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.11.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 Test 1.0 as Namespace import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.12.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.12.qml index 7de503e766..f8c7a7a756 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.12.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.12.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.13.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.13.qml index 986ab855c5..8a49e78c7a 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.13.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.13.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.2.qml index f45f88f823..499c2108c6 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.2.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 Test 1.0 as Namespace import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.3.qml index 64bc8bd404..1be9c5503d 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.3.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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.4.qml index ee3dedbef4..1d3b64c23e 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.4.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 Test 1.0 as Namespace import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.5.qml index 66cad2d6a4..7052008c83 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.5.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.5.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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.6.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.6.qml index 90d80bc136..d670d1e1e2 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.6.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.6.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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.7.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.7.qml index 5293d55c7b..cbcc47a45b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.7.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.7.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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.8.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.8.qml index 6f319c1223..2d61beb590 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.8.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.8.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 Test 1.0 as Namespace import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.9.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.9.qml index b7e13026be..65c62e72f6 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.9.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.9.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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.1.qml index 671f5aba31..0b8284f66a 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.1.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.10.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.10.qml index 41aa3e2923..3fb99f929a 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.10.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.10.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.2.qml index f897cc8497..8245f7bfe5 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.2.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.3.qml index 0bbfc4f529..13ec3f9ab7 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.3.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 Test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.4.qml index 134fef9b0a..4672edad02 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.4.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 Test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.5.qml index 55cefe66b9..5318392536 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.5.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.5.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.6.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.6.qml index 9ec33abe7b..2f8f089e72 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.6.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.6.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.7.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.7.qml index 977539a357..8c623468cf 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.7.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.7.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.8.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.8.qml index 56fca9b990..aa68c71468 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.8.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.8.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.9.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.9.qml index 982ab26051..1442f2a994 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.9.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.9.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.2.qml index 4fb3b298dd..623e003d3c 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.2.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 Test 1.0 MyQmlObject { id: "" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.3.qml index 668417286b..4662b0c3d4 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.3.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 Test 1.0 MyQmlObject { id.other: 10 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.4.qml index 86010bf792..64f0cb4ab2 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.4.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 Test 1.0 MyQmlObject { id: hello diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.5.qml index 5b92a1a0eb..c4bb24ff61 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.5.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.5.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 Test 1.0 import Test 1.0 as hello MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.6.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.6.qml index 62187d9473..31e3dd69b2 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.6.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.6.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 Test 1.0 MyQmlObject { id: StartsWithUpperCase diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.7.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.7.qml index d4bc539650..8a0025dffc 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.7.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.7.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 Test 1.0 MyQmlObject { id: gc diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.8.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.8.qml index 1ea615c32e..829d7a1e80 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.8.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.8.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 Test 1.0 MyQmlObject { id: hello.world diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.9.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.9.qml index 57474b7212..3bf23ad21e 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.9.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.9.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 Test 1.0 MyQmlObject { id: "3hello" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.qml index 04db3eb67c..dd889ad552 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.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 Test 1.0 MyQmlObject { id: 1 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidImportID.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidImportID.qml index 00fc81b67e..fc56bda3e9 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidImportID.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidImportID.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 import Qt 4.7 as qt diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidOn.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidOn.qml index d748bf4755..5d416ac241 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidOn.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidOn.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 Test 1.0 MyQmlObject { MyQmlObject on value {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidRoot.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidRoot.qml index 427827ca89..1abce5679d 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidRoot.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidRoot.qml @@ -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 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$ +** +****************************************************************************/ + foo { } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/InstalledTest.qml b/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/InstalledTest.qml index 303b5a56cc..4b7bdb7c06 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/InstalledTest.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/InstalledTest.qml @@ -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 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 as Qt47 Qt47.Rectangle {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/InstalledTest2.qml b/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/InstalledTest2.qml index 8c953cbc4b..af5647ed52 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/InstalledTest2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/InstalledTest2.qml @@ -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 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 Text {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/LocalLast.qml b/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/LocalLast.qml index d09dea7fe4..f26367701c 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/LocalLast.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/LocalLast.qml @@ -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 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 {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/PrivateType.qml b/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/PrivateType.qml index 62e41a9f8a..b8304c93e4 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/PrivateType.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/PrivateType.qml @@ -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 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 Image {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/listAssignment.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/listAssignment.1.qml index 6c628e4cae..c7036e1734 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/listAssignment.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/listAssignment.1.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 Test 1.0 import Qt 4.7 MyContainer { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/listAssignment.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/listAssignment.2.qml index e3baadb46c..05121839e9 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/listAssignment.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/listAssignment.2.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 Test 1.0 MyContainer { children: 2 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/listAssignment.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/listAssignment.3.qml index 00c4c6b543..9b2c067934 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/listAssignment.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/listAssignment.3.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 Test 1.0 MyContainer { children: childBinding.expression diff --git a/tests/auto/declarative/qdeclarativelanguage/data/listItemDeleteSelf.qml b/tests/auto/declarative/qdeclarativelanguage/data/listItemDeleteSelf.qml index 0393382e67..14f2fc7b3f 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/listItemDeleteSelf.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/listItemDeleteSelf.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 Item { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/listProperties.qml b/tests/auto/declarative/qdeclarativelanguage/data/listProperties.qml index 30277227ad..a609cdb8c8 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/listProperties.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/listProperties.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/method.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/method.1.qml index a2d8799d04..9a12169ed1 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/method.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/method.1.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/missingObject.qml b/tests/auto/declarative/qdeclarativelanguage/data/missingObject.qml index 2f17045869..e45177317c 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/missingObject.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/missingObject.qml @@ -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 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$ +** +****************************************************************************/ + something: 24 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/missingSignal.qml b/tests/auto/declarative/qdeclarativelanguage/data/missingSignal.qml index 1a417a918b..8320127763 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/missingSignal.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/missingSignal.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 Test 1.0 import Qt 4.7 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/missingValueTypeProperty.qml b/tests/auto/declarative/qdeclarativelanguage/data/missingValueTypeProperty.qml index 9a0fa6a26b..0ca75ba67b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/missingValueTypeProperty.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/missingValueTypeProperty.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.1.qml index 649c49ee3a..ebc246a299 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.1.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.10.qml b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.10.qml index bc21db98f8..7eb8ea1f71 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.10.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.10.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.11.qml b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.11.qml index 7d03139056..493adc71b4 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.11.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.11.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.2.qml index abcd216744..4be0e62ed0 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.2.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.3.qml index 77eaba0b32..aa47788868 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.3.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.4.qml index c16d04fea6..557d81c4ec 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.4.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.5.qml index 2980c5b28c..f62310ca40 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.5.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.5.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 Test 1.0 MyContainer { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.6.qml b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.6.qml index 492c720edc..2b881a7153 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.6.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.6.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 Test 1.0 MyContainer { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.7.qml b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.7.qml index 2a9c1d0de8..9573dbff5c 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.7.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.7.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 Test 1.0 MyContainer { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.8.qml b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.8.qml index 052437ea18..2e8d23671f 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.8.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.8.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.9.qml b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.9.qml index e2e954f778..a83c92e67e 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.9.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.9.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/nestedErrors.qml b/tests/auto/declarative/qdeclarativelanguage/data/nestedErrors.qml index 0aa3405c2f..d257d81964 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/nestedErrors.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/nestedErrors.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 Item { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/noCreation.qml b/tests/auto/declarative/qdeclarativelanguage/data/noCreation.qml index 077abe1822..bef2ad89b1 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/noCreation.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/noCreation.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 Keys { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.1.qml index df7406ce98..9cf1141c5d 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.1.qml @@ -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 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 Test 1.0 MyQmlObject { something: 24 } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.2.qml index 06ccd37905..758a21ad44 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.2.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 Test 1.0 MyQmlObject { something: 24 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.3.qml index 5b08608862..b9bc751276 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.3.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 Test 1.0 MyQmlObject { something: 1 + 1 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.4.qml index 65791919ba..efaf0daa5e 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.4.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 Test 1.0 MyQmlObject { something: ; diff --git a/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.5.qml index 37af05731e..c23ac571ac 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.5.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.5.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 Test 1.0 MyQmlObject { 24 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.6.qml b/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.6.qml index 5cd55d0856..59cda3f4af 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.6.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.6.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 Test 1.0 MyQmlObject { MyQmlObject {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/nullDotProperty.qml b/tests/auto/declarative/qdeclarativelanguage/data/nullDotProperty.qml index 4e36779b5c..495d696218 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/nullDotProperty.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/nullDotProperty.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 Test 1.0 MyDotPropertyObject { obj.value: 1 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/objectValueTypeProperty.qml b/tests/auto/declarative/qdeclarativelanguage/data/objectValueTypeProperty.qml index 99247735dd..248066044f 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/objectValueTypeProperty.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/objectValueTypeProperty.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/onCompleted.qml b/tests/auto/declarative/qdeclarativelanguage/data/onCompleted.qml index 71a7d26d7a..5f0c29006b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/onCompleted.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/onCompleted.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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/onDestruction.qml b/tests/auto/declarative/qdeclarativelanguage/data/onDestruction.qml index 1b1eef9ea3..6473bb5090 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/onDestruction.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/onDestruction.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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/property.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/property.1.qml index b3384d45a0..d38d1608f7 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/property.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/property.1.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/property.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/property.2.qml index 1ba9b1738f..f29d23dd66 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/property.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/property.2.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/property.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/property.3.qml index 261e7e3287..de1e02ca85 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/property.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/property.3.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/property.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/property.4.qml index 0a0f969aed..683f59ef63 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/property.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/property.4.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/property.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/property.5.qml index 0340f798d4..d3e11b307d 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/property.5.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/property.5.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/property.6.qml b/tests/auto/declarative/qdeclarativelanguage/data/property.6.qml index aad9e0784e..daee2180fa 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/property.6.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/property.6.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/property.7.qml b/tests/auto/declarative/qdeclarativelanguage/data/property.7.qml index 0246b2f053..1d8179d5a8 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/property.7.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/property.7.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/propertyValueSource.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/propertyValueSource.2.qml index e48526abec..5f17ad6657 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/propertyValueSource.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/propertyValueSource.2.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 Test 1.0 MyTypeObject { MyCompositeValueSource on intProperty {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/propertyValueSource.qml b/tests/auto/declarative/qdeclarativelanguage/data/propertyValueSource.qml index 22aa68250e..2f26102d32 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/propertyValueSource.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/propertyValueSource.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 Test 1.0 MyTypeObject { MyPropertyValueSource on intProperty {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/qmlAttachedPropertiesObjectMethod.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/qmlAttachedPropertiesObjectMethod.1.qml index d038ba3a10..96b39a9c6b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/qmlAttachedPropertiesObjectMethod.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/qmlAttachedPropertiesObjectMethod.1.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 Test 1.0 import Qt 4.7 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/qmlAttachedPropertiesObjectMethod.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/qmlAttachedPropertiesObjectMethod.2.qml index 1eab9f6a31..e0a14b3ea6 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/qmlAttachedPropertiesObjectMethod.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/qmlAttachedPropertiesObjectMethod.2.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 Test 1.0 import Qt 4.7 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/readOnly.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/readOnly.1.qml index 60757bd005..10c70cf619 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/readOnly.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/readOnly.1.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 Test 1.0 MyQmlObject { readOnlyString: "Hello World" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/readOnly.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/readOnly.2.qml index 8f1633cc11..21ae07559a 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/readOnly.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/readOnly.2.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 Test 1.0 MyQmlObject { readOnlyString: "Hello" + "World" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/readOnly.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/readOnly.3.qml index cfe255a84b..e0674a202f 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/readOnly.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/readOnly.3.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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/readOnly.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/readOnly.4.qml index 5338ac77bc..daa3b64bd5 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/readOnly.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/readOnly.4.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 Test 1.0 MyQmlObject { MyPropertyValueSource on readOnlyString {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/readOnly.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/readOnly.5.qml index 422d13d8d0..5242363f8d 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/readOnly.5.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/readOnly.5.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 Test 1.0 MyTypeObject { readOnlyEnumProperty: MyTypeObject.EnumValue1 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/rootAsQmlComponent.qml b/tests/auto/declarative/qdeclarativelanguage/data/rootAsQmlComponent.qml index 8d72cd3844..3606a253f8 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/rootAsQmlComponent.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/rootAsQmlComponent.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 Test 1.0 MyContainerComponent { x: 11 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/scriptString.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/scriptString.1.qml index f07d2231fe..4a57d0844a 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/scriptString.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/scriptString.1.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/scriptString.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/scriptString.2.qml index dc825c7511..19a2c6dee6 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/scriptString.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/scriptString.2.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/scriptString.qml b/tests/auto/declarative/qdeclarativelanguage/data/scriptString.qml index 40a3bbeede..5987c2bbd8 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/scriptString.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/scriptString.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/scriptString2.qml b/tests/auto/declarative/qdeclarativelanguage/data/scriptString2.qml index c42da2b9e1..e98c19972b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/scriptString2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/scriptString2.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/scriptString3.qml b/tests/auto/declarative/qdeclarativelanguage/data/scriptString3.qml index 0cd82ff58f..79af6fe749 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/scriptString3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/scriptString3.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/scriptString4.qml b/tests/auto/declarative/qdeclarativelanguage/data/scriptString4.qml index 3e2f9a49f1..f2bd1ecf28 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/scriptString4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/scriptString4.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/signal.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/signal.1.qml index 63fd74f234..90169c6b14 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/signal.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/signal.1.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/signal.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/signal.2.qml index c11ce177ee..5de0e270db 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/signal.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/signal.2.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/signal.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/signal.3.qml index 771ea5039b..1852cea768 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/signal.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/signal.3.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/signal.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/signal.4.qml index 37c938aa58..fcb7e8349a 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/signal.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/signal.4.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/simpleBindings.qml b/tests/auto/declarative/qdeclarativelanguage/data/simpleBindings.qml index 2fcd1a5a4f..428a43891d 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/simpleBindings.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/simpleBindings.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 Test 1.0 MyTypeObject { id: me diff --git a/tests/auto/declarative/qdeclarativelanguage/data/simpleContainer.qml b/tests/auto/declarative/qdeclarativelanguage/data/simpleContainer.qml index c3a795f536..7a2f35f0f1 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/simpleContainer.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/simpleContainer.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 Test 1.0 MyContainer { MyQmlObject {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/simpleObject.qml b/tests/auto/declarative/qdeclarativelanguage/data/simpleObject.qml index 30c78237de..755651dbd9 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/simpleObject.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/simpleObject.qml @@ -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 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 Test 1.0 MyQmlObject {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/subdir/Test.qml b/tests/auto/declarative/qdeclarativelanguage/data/subdir/Test.qml index 142136191f..09c69f42fa 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/subdir/Test.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/subdir/Test.qml @@ -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 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 { } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/subdir/subsubdir/SubTest.qml b/tests/auto/declarative/qdeclarativelanguage/data/subdir/subsubdir/SubTest.qml index 142136191f..09c69f42fa 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/subdir/subsubdir/SubTest.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/subdir/subsubdir/SubTest.qml @@ -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 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 { } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/unregisteredObject.qml b/tests/auto/declarative/qdeclarativelanguage/data/unregisteredObject.qml index 4969f62ad5..9098f8400a 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/unregisteredObject.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/unregisteredObject.qml @@ -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 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 Test 1.0 UnregisteredObjectType {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/unsupportedProperty.qml b/tests/auto/declarative/qdeclarativelanguage/data/unsupportedProperty.qml index 9f19680368..4d6e8e62de 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/unsupportedProperty.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/unsupportedProperty.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 Test 1.0 MyQmlObject { matrix: "1,0,0,0,1,0,0,0,1" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/valueTypes.qml b/tests/auto/declarative/qdeclarativelanguage/data/valueTypes.qml index bf325a74ee..bfca2e69be 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/valueTypes.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/valueTypes.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 Test 1.0 MyTypeObject { rectProperty.x: 10 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.1.qml index 289d37f050..04538d2314 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.1.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 Test 1.0 MyQmlObject { value: "hello" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.10.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.10.qml index 2cf0e50277..d01939bba0 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.10.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.10.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 Test 1.0 MyTypeObject { dateTimeProperty: 12 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.11.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.11.qml index ae77ba1fe8..f01d5cc5b9 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.11.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.11.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 Test 1.0 MyTypeObject { pointProperty: "apples" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.12.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.12.qml index b7a366f567..42e45313d7 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.12.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.12.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 Test 1.0 MyTypeObject { sizeProperty: "red" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.13.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.13.qml index 477aff1dbe..a2b484efa7 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.13.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.13.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 Test 1.0 MyQmlObject { value: "12" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.14.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.14.qml index 672d693c72..a95b29a2aa 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.14.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.14.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 Test 1.0 MyTypeObject { stringProperty: 10 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.15.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.15.qml index 633a5ba2ba..b81266003c 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.15.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.15.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 Test 1.0 MyTypeObject { urlProperty: 12 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.16.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.16.qml index 1ddccc0ca2..8c00707f8e 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.16.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.16.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 Test 1.0 import Qt 4.7 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.2.qml index 34b74f7e01..cc63cbe38a 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.2.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 Test 1.0 MyQmlObject { enabled: 5 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.3.qml index 384181a17f..802f252a80 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.3.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 Test 1.0 MyQmlObject { rect: "5,5x10" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.4.qml index 0787bf5fda..3aa27a5771 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.4.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 Test 1.0 MyTypeObject { enumProperty: "InvalidEnumName" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.5.qml index c50ae9a26d..7e8dd1232f 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.5.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.5.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 Test 1.0 MyTypeObject { uintProperty: -13 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.6.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.6.qml index da10b7895f..30c29fc305 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.6.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.6.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 Test 1.0 MyTypeObject { realProperty: "Hello" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.7.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.7.qml index ddc3835199..48dd62e2c2 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.7.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.7.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 Test 1.0 MyTypeObject { colorProperty: 12 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.8.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.8.qml index a5f6756399..b0d05367e4 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.8.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.8.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 Test 1.0 MyTypeObject { dateProperty: 12 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.9.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.9.qml index a3db732692..f22b638b8a 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.9.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.9.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 Test 1.0 MyTypeObject { timeProperty: 12 diff --git a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/LocalInternal.qml b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/LocalInternal.qml index d5a61ae1c1..2b56c1bdca 100644 --- a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/LocalInternal.qml +++ b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/LocalInternal.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 Image { source: "pics/blue.png" } diff --git a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/Test.qml b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/Test.qml index 142136191f..09c69f42fa 100644 --- a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/Test.qml +++ b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/Test.qml @@ -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 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 { } diff --git a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/TestLocal.qml b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/TestLocal.qml index 11443ca6d5..3bc82fcc7e 100644 --- a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/TestLocal.qml +++ b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/TestLocal.qml @@ -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 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$ +** +****************************************************************************/ + LocalInternal {} diff --git a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/TestNamed.qml b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/TestNamed.qml index 672cb8f201..b1828158f2 100644 --- a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/TestNamed.qml +++ b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/TestNamed.qml @@ -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 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$ +** +****************************************************************************/ + NamedLocal { } diff --git a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/TestSubDir.qml b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/TestSubDir.qml index 0dfede4093..2e9d1cc394 100644 --- a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/TestSubDir.qml +++ b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/TestSubDir.qml @@ -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 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 "subdir" SubTest { } diff --git a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/UndeclaredLocal.qml b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/UndeclaredLocal.qml index d5a61ae1c1..2b56c1bdca 100644 --- a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/UndeclaredLocal.qml +++ b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/UndeclaredLocal.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 Image { source: "pics/blue.png" } diff --git a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/WrongTestLocal.qml b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/WrongTestLocal.qml index 8dcb7be231..06cd728ab7 100644 --- a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/WrongTestLocal.qml +++ b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/WrongTestLocal.qml @@ -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 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$ +** +****************************************************************************/ + UndeclaredInternal {} diff --git a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/subdir/SubTest.qml b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/subdir/SubTest.qml index 43aeb7469c..822bf048f2 100644 --- a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/subdir/SubTest.qml +++ b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/subdir/SubTest.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 Text {} diff --git a/tests/auto/declarative/qdeclarativelayoutitem/data/layoutItem.qml b/tests/auto/declarative/qdeclarativelayoutitem/data/layoutItem.qml index ee881a2ddf..c09ebe0eb0 100644 --- a/tests/auto/declarative/qdeclarativelayoutitem/data/layoutItem.qml +++ b/tests/auto/declarative/qdeclarativelayoutitem/data/layoutItem.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 LayoutItem {//Sized by the layout diff --git a/tests/auto/declarative/qdeclarativelistmodel/data/enumerate.qml b/tests/auto/declarative/qdeclarativelistmodel/data/enumerate.qml index 296cb9c202..bb0934db16 100644 --- a/tests/auto/declarative/qdeclarativelistmodel/data/enumerate.qml +++ b/tests/auto/declarative/qdeclarativelistmodel/data/enumerate.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 Item { diff --git a/tests/auto/declarative/qdeclarativelistmodel/data/model.qml b/tests/auto/declarative/qdeclarativelistmodel/data/model.qml index f8a9175749..5a5961f016 100644 --- a/tests/auto/declarative/qdeclarativelistmodel/data/model.qml +++ b/tests/auto/declarative/qdeclarativelistmodel/data/model.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 Item { diff --git a/tests/auto/declarative/qdeclarativelistreference/data/MyType.qml b/tests/auto/declarative/qdeclarativelistreference/data/MyType.qml index 0275e214e3..a22ba254c0 100644 --- a/tests/auto/declarative/qdeclarativelistreference/data/MyType.qml +++ b/tests/auto/declarative/qdeclarativelistreference/data/MyType.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelistreference/data/engineTypes.qml b/tests/auto/declarative/qdeclarativelistreference/data/engineTypes.qml index 1ab5692022..6463a79c5d 100644 --- a/tests/auto/declarative/qdeclarativelistreference/data/engineTypes.qml +++ b/tests/auto/declarative/qdeclarativelistreference/data/engineTypes.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelistreference/data/variantToList.qml b/tests/auto/declarative/qdeclarativelistreference/data/variantToList.qml index 13de975782..4bda103155 100644 --- a/tests/auto/declarative/qdeclarativelistreference/data/variantToList.qml +++ b/tests/auto/declarative/qdeclarativelistreference/data/variantToList.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelistview/data/displaylist.qml b/tests/auto/declarative/qdeclarativelistview/data/displaylist.qml index defd13e557..5d0749431e 100644 --- a/tests/auto/declarative/qdeclarativelistview/data/displaylist.qml +++ b/tests/auto/declarative/qdeclarativelistview/data/displaylist.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativelistview/data/itemlist.qml b/tests/auto/declarative/qdeclarativelistview/data/itemlist.qml index 66728d6876..ecfce048d7 100644 --- a/tests/auto/declarative/qdeclarativelistview/data/itemlist.qml +++ b/tests/auto/declarative/qdeclarativelistview/data/itemlist.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$ +** +****************************************************************************/ + // This example demonstrates placing items in a view using // a VisualItemModel diff --git a/tests/auto/declarative/qdeclarativelistview/data/listview-enforcerange.qml b/tests/auto/declarative/qdeclarativelistview/data/listview-enforcerange.qml index 939a4d585f..5727951ac7 100644 --- a/tests/auto/declarative/qdeclarativelistview/data/listview-enforcerange.qml +++ b/tests/auto/declarative/qdeclarativelistview/data/listview-enforcerange.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativelistview/data/listview-initCurrent.qml b/tests/auto/declarative/qdeclarativelistview/data/listview-initCurrent.qml index 0599dddf6c..8b40dc4e81 100644 --- a/tests/auto/declarative/qdeclarativelistview/data/listview-initCurrent.qml +++ b/tests/auto/declarative/qdeclarativelistview/data/listview-initCurrent.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativelistview/data/listview-sections.qml b/tests/auto/declarative/qdeclarativelistview/data/listview-sections.qml index a6f3ab8dd2..0ea4f483b1 100644 --- a/tests/auto/declarative/qdeclarativelistview/data/listview-sections.qml +++ b/tests/auto/declarative/qdeclarativelistview/data/listview-sections.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativelistview/data/listviewtest.qml b/tests/auto/declarative/qdeclarativelistview/data/listviewtest.qml index 3b2db5e05a..2bc264076d 100644 --- a/tests/auto/declarative/qdeclarativelistview/data/listviewtest.qml +++ b/tests/auto/declarative/qdeclarativelistview/data/listviewtest.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativelistview/data/manual-highlight.qml b/tests/auto/declarative/qdeclarativelistview/data/manual-highlight.qml index 4913ebe97d..decb729854 100644 --- a/tests/auto/declarative/qdeclarativelistview/data/manual-highlight.qml +++ b/tests/auto/declarative/qdeclarativelistview/data/manual-highlight.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 Item { diff --git a/tests/auto/declarative/qdeclarativelistview/data/propertychangestest.qml b/tests/auto/declarative/qdeclarativelistview/data/propertychangestest.qml index 300fcb5eb8..c654f4575a 100644 --- a/tests/auto/declarative/qdeclarativelistview/data/propertychangestest.qml +++ b/tests/auto/declarative/qdeclarativelistview/data/propertychangestest.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativelistview/data/strictlyenforcerange.qml b/tests/auto/declarative/qdeclarativelistview/data/strictlyenforcerange.qml index 6fc41fa17a..1f5bb00654 100644 --- a/tests/auto/declarative/qdeclarativelistview/data/strictlyenforcerange.qml +++ b/tests/auto/declarative/qdeclarativelistview/data/strictlyenforcerange.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 ListView { diff --git a/tests/auto/declarative/qdeclarativeloader/data/AnchoredLoader.qml b/tests/auto/declarative/qdeclarativeloader/data/AnchoredLoader.qml index 5d02dae78d..81086f51b4 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/AnchoredLoader.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/AnchoredLoader.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeloader/data/BlueRect.qml b/tests/auto/declarative/qdeclarativeloader/data/BlueRect.qml index f202fc825b..08a1d41819 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/BlueRect.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/BlueRect.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeloader/data/GraphicsWidget250x250.qml b/tests/auto/declarative/qdeclarativeloader/data/GraphicsWidget250x250.qml index 3b851c1338..dd9cd1d6fc 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/GraphicsWidget250x250.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/GraphicsWidget250x250.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 QGraphicsWidget { diff --git a/tests/auto/declarative/qdeclarativeloader/data/GreenRect.qml b/tests/auto/declarative/qdeclarativeloader/data/GreenRect.qml index 9b8f770a48..d9d020d1c7 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/GreenRect.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/GreenRect.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeloader/data/NoResize.qml b/tests/auto/declarative/qdeclarativeloader/data/NoResize.qml index 72cd3b9f0e..c2215e688c 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/NoResize.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/NoResize.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 Item { diff --git a/tests/auto/declarative/qdeclarativeloader/data/NoResizeGraphicsWidget.qml b/tests/auto/declarative/qdeclarativeloader/data/NoResizeGraphicsWidget.qml index 0cff50643b..065001a0db 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/NoResizeGraphicsWidget.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/NoResizeGraphicsWidget.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 Item { diff --git a/tests/auto/declarative/qdeclarativeloader/data/Rect120x60.qml b/tests/auto/declarative/qdeclarativeloader/data/Rect120x60.qml index d808c518b5..44b7ecb64f 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/Rect120x60.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/Rect120x60.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeloader/data/SetSourceComponent.qml b/tests/auto/declarative/qdeclarativeloader/data/SetSourceComponent.qml index d99dd01f35..32c2d6b18e 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/SetSourceComponent.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/SetSourceComponent.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 Item { diff --git a/tests/auto/declarative/qdeclarativeloader/data/SizeGraphicsWidgetToLoader.qml b/tests/auto/declarative/qdeclarativeloader/data/SizeGraphicsWidgetToLoader.qml index 81610ad3c7..2907697921 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/SizeGraphicsWidgetToLoader.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/SizeGraphicsWidgetToLoader.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 Loader { diff --git a/tests/auto/declarative/qdeclarativeloader/data/SizeLoaderToGraphicsWidget.qml b/tests/auto/declarative/qdeclarativeloader/data/SizeLoaderToGraphicsWidget.qml index a801a42d03..00a4fbeeb8 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/SizeLoaderToGraphicsWidget.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/SizeLoaderToGraphicsWidget.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 Loader { diff --git a/tests/auto/declarative/qdeclarativeloader/data/SizeToItem.qml b/tests/auto/declarative/qdeclarativeloader/data/SizeToItem.qml index 77aa8d9f78..2f9fbc5462 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/SizeToItem.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/SizeToItem.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 Loader { diff --git a/tests/auto/declarative/qdeclarativeloader/data/SizeToLoader.qml b/tests/auto/declarative/qdeclarativeloader/data/SizeToLoader.qml index 0098927736..397b5e7ecf 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/SizeToLoader.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/SizeToLoader.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 Loader { diff --git a/tests/auto/declarative/qdeclarativeloader/data/VmeError.qml b/tests/auto/declarative/qdeclarativeloader/data/VmeError.qml index 633f03d182..be4185e518 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/VmeError.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/VmeError.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeloader/data/crash.qml b/tests/auto/declarative/qdeclarativeloader/data/crash.qml index db9abca6cc..d7df51daec 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/crash.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/crash.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeloader/data/differentorigin.qml b/tests/auto/declarative/qdeclarativeloader/data/differentorigin.qml index b32558b0e6..922f841ad5 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/differentorigin.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/differentorigin.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 Loader { source: "http://evil.place/evil.qml" } diff --git a/tests/auto/declarative/qdeclarativeloader/data/nonItem.qml b/tests/auto/declarative/qdeclarativeloader/data/nonItem.qml index 5ce003d45e..aaccfbfd6f 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/nonItem.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/nonItem.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 Loader { diff --git a/tests/auto/declarative/qdeclarativeloader/data/sameorigin-load.qml b/tests/auto/declarative/qdeclarativeloader/data/sameorigin-load.qml index 812c1be5e8..4ad29f0b03 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/sameorigin-load.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/sameorigin-load.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 Item { } diff --git a/tests/auto/declarative/qdeclarativeloader/data/sameorigin.qml b/tests/auto/declarative/qdeclarativeloader/data/sameorigin.qml index 91732a1a6c..8a087a216e 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/sameorigin.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/sameorigin.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 Loader { source: "sameorigin-load.qml" } diff --git a/tests/auto/declarative/qdeclarativeloader/data/vmeErrors.qml b/tests/auto/declarative/qdeclarativeloader/data/vmeErrors.qml index ae33e00ba4..708277cab5 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/vmeErrors.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/vmeErrors.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 Loader { diff --git a/tests/auto/declarative/qdeclarativemoduleplugin/data/works.qml b/tests/auto/declarative/qdeclarativemoduleplugin/data/works.qml index f29ae24ea2..27f0d74be1 100644 --- a/tests/auto/declarative/qdeclarativemoduleplugin/data/works.qml +++ b/tests/auto/declarative/qdeclarativemoduleplugin/data/works.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 com.nokia.AutoTestQmlPluginType 1.0 MyPluginType { value: 123 } diff --git a/tests/auto/declarative/qdeclarativemousearea/data/clickandhold.qml b/tests/auto/declarative/qdeclarativemousearea/data/clickandhold.qml index f926daa64f..c77cdb4abc 100644 --- a/tests/auto/declarative/qdeclarativemousearea/data/clickandhold.qml +++ b/tests/auto/declarative/qdeclarativemousearea/data/clickandhold.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 Item { diff --git a/tests/auto/declarative/qdeclarativemousearea/data/dragging.qml b/tests/auto/declarative/qdeclarativemousearea/data/dragging.qml index a28f04943d..c35eb87ff1 100644 --- a/tests/auto/declarative/qdeclarativemousearea/data/dragging.qml +++ b/tests/auto/declarative/qdeclarativemousearea/data/dragging.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 Rectangle { id: whiteRect diff --git a/tests/auto/declarative/qdeclarativemousearea/data/dragproperties.qml b/tests/auto/declarative/qdeclarativemousearea/data/dragproperties.qml index ba15250bb0..f4489268e7 100644 --- a/tests/auto/declarative/qdeclarativemousearea/data/dragproperties.qml +++ b/tests/auto/declarative/qdeclarativemousearea/data/dragproperties.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 Rectangle { id: whiteRect diff --git a/tests/auto/declarative/qdeclarativemousearea/data/dragreset.qml b/tests/auto/declarative/qdeclarativemousearea/data/dragreset.qml index 789125b5dc..163d1c2854 100644 --- a/tests/auto/declarative/qdeclarativemousearea/data/dragreset.qml +++ b/tests/auto/declarative/qdeclarativemousearea/data/dragreset.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 Rectangle { id: whiteRect diff --git a/tests/auto/declarative/qdeclarativemousearea/data/rejectEvent.qml b/tests/auto/declarative/qdeclarativemousearea/data/rejectEvent.qml index c01e9383ca..adbfc0822b 100644 --- a/tests/auto/declarative/qdeclarativemousearea/data/rejectEvent.qml +++ b/tests/auto/declarative/qdeclarativemousearea/data/rejectEvent.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativemousearea/data/updateMousePosOnClick.qml b/tests/auto/declarative/qdeclarativemousearea/data/updateMousePosOnClick.qml index 600849975d..759f57eda7 100644 --- a/tests/auto/declarative/qdeclarativemousearea/data/updateMousePosOnClick.qml +++ b/tests/auto/declarative/qdeclarativemousearea/data/updateMousePosOnClick.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativemousearea/data/updateMousePosOnResize.qml b/tests/auto/declarative/qdeclarativemousearea/data/updateMousePosOnResize.qml index 2a2b905b4c..1506bf3f2c 100644 --- a/tests/auto/declarative/qdeclarativemousearea/data/updateMousePosOnResize.qml +++ b/tests/auto/declarative/qdeclarativemousearea/data/updateMousePosOnResize.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativeparticles/data/particlemotiontest.qml b/tests/auto/declarative/qdeclarativeparticles/data/particlemotiontest.qml index ec8f4524d7..8714909a7b 100644 --- a/tests/auto/declarative/qdeclarativeparticles/data/particlemotiontest.qml +++ b/tests/auto/declarative/qdeclarativeparticles/data/particlemotiontest.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 import Qt.labs.particles 1.0 diff --git a/tests/auto/declarative/qdeclarativeparticles/data/particlestest.qml b/tests/auto/declarative/qdeclarativeparticles/data/particlestest.qml index af15665b2b..7da6518b6b 100644 --- a/tests/auto/declarative/qdeclarativeparticles/data/particlestest.qml +++ b/tests/auto/declarative/qdeclarativeparticles/data/particlestest.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 import Qt.labs.particles 1.0 diff --git a/tests/auto/declarative/qdeclarativepathview/data/datamodel.qml b/tests/auto/declarative/qdeclarativepathview/data/datamodel.qml index a5c3772efa..c94e7e8e91 100644 --- a/tests/auto/declarative/qdeclarativepathview/data/datamodel.qml +++ b/tests/auto/declarative/qdeclarativepathview/data/datamodel.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 PathView { diff --git a/tests/auto/declarative/qdeclarativepathview/data/displaypath.qml b/tests/auto/declarative/qdeclarativepathview/data/displaypath.qml index c82914f4b9..dfabbc3a7c 100644 --- a/tests/auto/declarative/qdeclarativepathview/data/displaypath.qml +++ b/tests/auto/declarative/qdeclarativepathview/data/displaypath.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativepathview/data/pathUpdateOnStartChanged.qml b/tests/auto/declarative/qdeclarativepathview/data/pathUpdateOnStartChanged.qml index ce0f0c9aca..9586ee9eb4 100644 --- a/tests/auto/declarative/qdeclarativepathview/data/pathUpdateOnStartChanged.qml +++ b/tests/auto/declarative/qdeclarativepathview/data/pathUpdateOnStartChanged.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativepathview/data/pathtest.qml b/tests/auto/declarative/qdeclarativepathview/data/pathtest.qml index caa1586be4..870e9dec8e 100644 --- a/tests/auto/declarative/qdeclarativepathview/data/pathtest.qml +++ b/tests/auto/declarative/qdeclarativepathview/data/pathtest.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 Path { diff --git a/tests/auto/declarative/qdeclarativepathview/data/pathview0.qml b/tests/auto/declarative/qdeclarativepathview/data/pathview0.qml index a3afd38dc9..ab1a60bf49 100644 --- a/tests/auto/declarative/qdeclarativepathview/data/pathview0.qml +++ b/tests/auto/declarative/qdeclarativepathview/data/pathview0.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativepathview/data/pathview1.qml b/tests/auto/declarative/qdeclarativepathview/data/pathview1.qml index c3d2f914db..c8ae7d87f0 100644 --- a/tests/auto/declarative/qdeclarativepathview/data/pathview1.qml +++ b/tests/auto/declarative/qdeclarativepathview/data/pathview1.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 PathView { diff --git a/tests/auto/declarative/qdeclarativepathview/data/pathview2.qml b/tests/auto/declarative/qdeclarativepathview/data/pathview2.qml index 2ce66a2385..1991f6ea40 100644 --- a/tests/auto/declarative/qdeclarativepathview/data/pathview2.qml +++ b/tests/auto/declarative/qdeclarativepathview/data/pathview2.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 PathView { diff --git a/tests/auto/declarative/qdeclarativepathview/data/pathview3.qml b/tests/auto/declarative/qdeclarativepathview/data/pathview3.qml index 066c5317f0..8c42e87851 100644 --- a/tests/auto/declarative/qdeclarativepathview/data/pathview3.qml +++ b/tests/auto/declarative/qdeclarativepathview/data/pathview3.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 PathView { diff --git a/tests/auto/declarative/qdeclarativepathview/data/pathview_package.qml b/tests/auto/declarative/qdeclarativepathview/data/pathview_package.qml index 082da13ad6..3a68aacbc0 100644 --- a/tests/auto/declarative/qdeclarativepathview/data/pathview_package.qml +++ b/tests/auto/declarative/qdeclarativepathview/data/pathview_package.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 Item { diff --git a/tests/auto/declarative/qdeclarativepathview/data/propertychanges.qml b/tests/auto/declarative/qdeclarativepathview/data/propertychanges.qml index 6cc9d2a82c..33b85a5a6e 100644 --- a/tests/auto/declarative/qdeclarativepathview/data/propertychanges.qml +++ b/tests/auto/declarative/qdeclarativepathview/data/propertychanges.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/flowtest.qml b/tests/auto/declarative/qdeclarativepositioners/data/flowtest.qml index 3ba015dde1..8ed8d6a475 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/flowtest.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/flowtest.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 Item { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/grid-animated.qml b/tests/auto/declarative/qdeclarativepositioners/data/grid-animated.qml index 3a56be60d7..c6518925cf 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/grid-animated.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/grid-animated.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 Item { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/grid-spacing.qml b/tests/auto/declarative/qdeclarativepositioners/data/grid-spacing.qml index e098812580..1add47da52 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/grid-spacing.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/grid-spacing.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 Item { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/grid-toptobottom.qml b/tests/auto/declarative/qdeclarativepositioners/data/grid-toptobottom.qml index 8799366d4e..3ac60c08f5 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/grid-toptobottom.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/grid-toptobottom.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 Item { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/gridtest.qml b/tests/auto/declarative/qdeclarativepositioners/data/gridtest.qml index ab7238a647..e67d27e586 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/gridtest.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/gridtest.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 Item { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/gridzerocolumns.qml b/tests/auto/declarative/qdeclarativepositioners/data/gridzerocolumns.qml index 8e11f4e0dd..001d99a802 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/gridzerocolumns.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/gridzerocolumns.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 Item { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/horizontal-animated.qml b/tests/auto/declarative/qdeclarativepositioners/data/horizontal-animated.qml index 20a6258af3..e3f3951f94 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/horizontal-animated.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/horizontal-animated.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 Item { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/horizontal-spacing.qml b/tests/auto/declarative/qdeclarativepositioners/data/horizontal-spacing.qml index 0e368c1368..af3ca2fb6a 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/horizontal-spacing.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/horizontal-spacing.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 Item { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/horizontal.qml b/tests/auto/declarative/qdeclarativepositioners/data/horizontal.qml index 71ad6ecceb..0a4cb9e48e 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/horizontal.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/horizontal.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 Item { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/propertychangestest.qml b/tests/auto/declarative/qdeclarativepositioners/data/propertychangestest.qml index a53ff824e2..0d57b2c85b 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/propertychangestest.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/propertychangestest.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 Grid { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/repeatertest.qml b/tests/auto/declarative/qdeclarativepositioners/data/repeatertest.qml index 531d716534..a46ad75c33 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/repeatertest.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/repeatertest.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 Item { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/vertical-animated.qml b/tests/auto/declarative/qdeclarativepositioners/data/vertical-animated.qml index 1499c1e9c7..3f23724152 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/vertical-animated.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/vertical-animated.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 Item { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/vertical-spacing.qml b/tests/auto/declarative/qdeclarativepositioners/data/vertical-spacing.qml index f7e853a538..7446048b57 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/vertical-spacing.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/vertical-spacing.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 Item { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/vertical.qml b/tests/auto/declarative/qdeclarativepositioners/data/vertical.qml index 9e3d6abbeb..856930a83e 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/vertical.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/vertical.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 Item { diff --git a/tests/auto/declarative/qdeclarativeproperty/data/TestType.qml b/tests/auto/declarative/qdeclarativeproperty/data/TestType.qml index 2177ae204d..24ca1ca319 100644 --- a/tests/auto/declarative/qdeclarativeproperty/data/TestType.qml +++ b/tests/auto/declarative/qdeclarativeproperty/data/TestType.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeproperty/data/readSynthesizedObject.qml b/tests/auto/declarative/qdeclarativeproperty/data/readSynthesizedObject.qml index 0918e86d5e..fd1d3796d1 100644 --- a/tests/auto/declarative/qdeclarativeproperty/data/readSynthesizedObject.qml +++ b/tests/auto/declarative/qdeclarativeproperty/data/readSynthesizedObject.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/atob.qml b/tests/auto/declarative/qdeclarativeqt/data/atob.qml index 8355fa5785..5ba011baa3 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/atob.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/atob.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/btoa.qml b/tests/auto/declarative/qdeclarativeqt/data/btoa.qml index c2993ffc2b..bacebd0609 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/btoa.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/btoa.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/consoleLog.qml b/tests/auto/declarative/qdeclarativeqt/data/consoleLog.qml index aa9e92a60d..eca5e9de86 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/consoleLog.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/consoleLog.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/createComponent.qml b/tests/auto/declarative/qdeclarativeqt/data/createComponent.qml index f966931762..64ab2abccf 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/createComponent.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/createComponent.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/createComponentData.qml b/tests/auto/declarative/qdeclarativeqt/data/createComponentData.qml index dc3e0d300f..729acf7038 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/createComponentData.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/createComponentData.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/createQmlObject.qml b/tests/auto/declarative/qdeclarativeqt/data/createQmlObject.qml index ca3ff22b0b..b25b0c5761 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/createQmlObject.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/createQmlObject.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 Item { diff --git a/tests/auto/declarative/qdeclarativeqt/data/darker.qml b/tests/auto/declarative/qdeclarativeqt/data/darker.qml index 738095de79..6846a9f62f 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/darker.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/darker.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/enums.qml b/tests/auto/declarative/qdeclarativeqt/data/enums.qml index a0190ccc90..b65553a53b 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/enums.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/enums.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/fontFamilies.qml b/tests/auto/declarative/qdeclarativeqt/data/fontFamilies.qml index e66c7be081..ff80bc8d9e 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/fontFamilies.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/fontFamilies.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/formatting.qml b/tests/auto/declarative/qdeclarativeqt/data/formatting.qml index 7f48639a23..e3a8080b69 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/formatting.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/formatting.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/hsla.qml b/tests/auto/declarative/qdeclarativeqt/data/hsla.qml index 4ca67a3f69..b8b01fdcfc 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/hsla.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/hsla.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/isQtObject.qml b/tests/auto/declarative/qdeclarativeqt/data/isQtObject.qml index 0f573c403f..ae9c34f731 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/isQtObject.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/isQtObject.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/lighter.qml b/tests/auto/declarative/qdeclarativeqt/data/lighter.qml index ddaf78db29..e4fb9f9ddf 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/lighter.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/lighter.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/md5.qml b/tests/auto/declarative/qdeclarativeqt/data/md5.qml index 07f719b49a..f86f45cf17 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/md5.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/md5.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/openUrlExternally.qml b/tests/auto/declarative/qdeclarativeqt/data/openUrlExternally.qml index 3ceb05d4b6..b88f3a07a1 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/openUrlExternally.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/openUrlExternally.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/point.qml b/tests/auto/declarative/qdeclarativeqt/data/point.qml index 0ada2d543e..debba49813 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/point.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/point.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/rect.qml b/tests/auto/declarative/qdeclarativeqt/data/rect.qml index fd3862898c..6de1723bbf 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/rect.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/rect.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/rgba.qml b/tests/auto/declarative/qdeclarativeqt/data/rgba.qml index 16606cd25d..48cbd68fdd 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/rgba.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/rgba.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/size.qml b/tests/auto/declarative/qdeclarativeqt/data/size.qml index afcfb62939..c2c1625682 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/size.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/size.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/tint.qml b/tests/auto/declarative/qdeclarativeqt/data/tint.qml index 25e7051215..34d9eb9400 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/tint.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/tint.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/vector.qml b/tests/auto/declarative/qdeclarativeqt/data/vector.qml index b7708f5b89..da7c611fd8 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/vector.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/vector.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativerepeater/data/intmodel.qml b/tests/auto/declarative/qdeclarativerepeater/data/intmodel.qml index 9cd03c472e..2c68138fb1 100644 --- a/tests/auto/declarative/qdeclarativerepeater/data/intmodel.qml +++ b/tests/auto/declarative/qdeclarativerepeater/data/intmodel.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativerepeater/data/itemlist.qml b/tests/auto/declarative/qdeclarativerepeater/data/itemlist.qml index e8dd8cce18..d8dc0c8954 100644 --- a/tests/auto/declarative/qdeclarativerepeater/data/itemlist.qml +++ b/tests/auto/declarative/qdeclarativerepeater/data/itemlist.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$ +** +****************************************************************************/ + // This example demonstrates placing items in a view using // a VisualItemModel diff --git a/tests/auto/declarative/qdeclarativerepeater/data/objlist.qml b/tests/auto/declarative/qdeclarativerepeater/data/objlist.qml index e1bd2e2d89..38e60d5cfa 100644 --- a/tests/auto/declarative/qdeclarativerepeater/data/objlist.qml +++ b/tests/auto/declarative/qdeclarativerepeater/data/objlist.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativerepeater/data/properties.qml b/tests/auto/declarative/qdeclarativerepeater/data/properties.qml index 34bbde04c3..f3ee621ea0 100644 --- a/tests/auto/declarative/qdeclarativerepeater/data/properties.qml +++ b/tests/auto/declarative/qdeclarativerepeater/data/properties.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 Row { diff --git a/tests/auto/declarative/qdeclarativerepeater/data/repeater1.qml b/tests/auto/declarative/qdeclarativerepeater/data/repeater1.qml index 3047435aa7..61d659531d 100644 --- a/tests/auto/declarative/qdeclarativerepeater/data/repeater1.qml +++ b/tests/auto/declarative/qdeclarativerepeater/data/repeater1.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativerepeater/data/repeater2.qml b/tests/auto/declarative/qdeclarativerepeater/data/repeater2.qml index c8b863c08e..59a190a3fb 100644 --- a/tests/auto/declarative/qdeclarativerepeater/data/repeater2.qml +++ b/tests/auto/declarative/qdeclarativerepeater/data/repeater2.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimation1.qml b/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimation1.qml index 1de5f16abe..66c69b95da 100644 --- a/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimation1.qml +++ b/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimation1.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 SmoothedAnimation {} diff --git a/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimation2.qml b/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimation2.qml index 544e7e9584..f3e3819871 100644 --- a/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimation2.qml +++ b/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimation2.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 SmoothedAnimation { diff --git a/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimation3.qml b/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimation3.qml index c1f3af0478..8e7503dc69 100644 --- a/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimation3.qml +++ b/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimation3.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 SmoothedAnimation { diff --git a/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimationBehavior.qml b/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimationBehavior.qml index 3afeb7b2a5..3de504f096 100644 --- a/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimationBehavior.qml +++ b/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimationBehavior.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimationValueSource.qml b/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimationValueSource.qml index 53429e2685..cbaff36d72 100644 --- a/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimationValueSource.qml +++ b/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimationValueSource.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollow1.qml b/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollow1.qml index 8c9d8ad256..eb027b6a5e 100644 --- a/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollow1.qml +++ b/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollow1.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 SmoothedFollow {} diff --git a/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollow2.qml b/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollow2.qml index a634302056..18be6edbf8 100644 --- a/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollow2.qml +++ b/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollow2.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 SmoothedFollow { diff --git a/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollow3.qml b/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollow3.qml index c60da7f49f..4832f9b7e2 100644 --- a/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollow3.qml +++ b/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollow3.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 SmoothedFollow { diff --git a/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollowDisabled.qml b/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollowDisabled.qml index 486bdee693..c8872120e9 100644 --- a/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollowDisabled.qml +++ b/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollowDisabled.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollowValueSource.qml b/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollowValueSource.qml index 2e01d74be7..58a41f469f 100644 --- a/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollowValueSource.qml +++ b/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollowValueSource.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativespringfollow/data/springfollow1.qml b/tests/auto/declarative/qdeclarativespringfollow/data/springfollow1.qml index 8528cfa840..515542998a 100644 --- a/tests/auto/declarative/qdeclarativespringfollow/data/springfollow1.qml +++ b/tests/auto/declarative/qdeclarativespringfollow/data/springfollow1.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 SpringFollow { diff --git a/tests/auto/declarative/qdeclarativespringfollow/data/springfollow2.qml b/tests/auto/declarative/qdeclarativespringfollow/data/springfollow2.qml index 31a740affb..aeed81955f 100644 --- a/tests/auto/declarative/qdeclarativespringfollow/data/springfollow2.qml +++ b/tests/auto/declarative/qdeclarativespringfollow/data/springfollow2.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 SpringFollow { diff --git a/tests/auto/declarative/qdeclarativespringfollow/data/springfollow3.qml b/tests/auto/declarative/qdeclarativespringfollow/data/springfollow3.qml index 0fa4aa9cf0..d0d8696d2e 100644 --- a/tests/auto/declarative/qdeclarativespringfollow/data/springfollow3.qml +++ b/tests/auto/declarative/qdeclarativespringfollow/data/springfollow3.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 SpringFollow { diff --git a/tests/auto/declarative/qdeclarativestates/data/ExtendedRectangle.qml b/tests/auto/declarative/qdeclarativestates/data/ExtendedRectangle.qml index 28e083ce6f..5f80d657a3 100644 --- a/tests/auto/declarative/qdeclarativestates/data/ExtendedRectangle.qml +++ b/tests/auto/declarative/qdeclarativestates/data/ExtendedRectangle.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 Rectangle { id: extendedRect diff --git a/tests/auto/declarative/qdeclarativestates/data/Implementation/MyType.qml b/tests/auto/declarative/qdeclarativestates/data/Implementation/MyType.qml index 1872de87a2..2dbaafae02 100644 --- a/tests/auto/declarative/qdeclarativestates/data/Implementation/MyType.qml +++ b/tests/auto/declarative/qdeclarativestates/data/Implementation/MyType.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 Item { diff --git a/tests/auto/declarative/qdeclarativestates/data/anchorChanges1.qml b/tests/auto/declarative/qdeclarativestates/data/anchorChanges1.qml index e9c9d67a67..edc3a9e175 100644 --- a/tests/auto/declarative/qdeclarativestates/data/anchorChanges1.qml +++ b/tests/auto/declarative/qdeclarativestates/data/anchorChanges1.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativestates/data/anchorChanges2.qml b/tests/auto/declarative/qdeclarativestates/data/anchorChanges2.qml index cee2ce55d3..a74964fd5e 100644 --- a/tests/auto/declarative/qdeclarativestates/data/anchorChanges2.qml +++ b/tests/auto/declarative/qdeclarativestates/data/anchorChanges2.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativestates/data/anchorChanges3.qml b/tests/auto/declarative/qdeclarativestates/data/anchorChanges3.qml index 54dc34b545..fe2813185c 100644 --- a/tests/auto/declarative/qdeclarativestates/data/anchorChanges3.qml +++ b/tests/auto/declarative/qdeclarativestates/data/anchorChanges3.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativestates/data/anchorChanges4.qml b/tests/auto/declarative/qdeclarativestates/data/anchorChanges4.qml index 885c3ceb25..ae0cd0fe1e 100644 --- a/tests/auto/declarative/qdeclarativestates/data/anchorChanges4.qml +++ b/tests/auto/declarative/qdeclarativestates/data/anchorChanges4.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativestates/data/anchorChanges5.qml b/tests/auto/declarative/qdeclarativestates/data/anchorChanges5.qml index c3db72e718..be6bb8b796 100644 --- a/tests/auto/declarative/qdeclarativestates/data/anchorChanges5.qml +++ b/tests/auto/declarative/qdeclarativestates/data/anchorChanges5.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativestates/data/anchorChangesCrash.qml b/tests/auto/declarative/qdeclarativestates/data/anchorChangesCrash.qml index 861ef8f22d..cf0cbef4ed 100644 --- a/tests/auto/declarative/qdeclarativestates/data/anchorChangesCrash.qml +++ b/tests/auto/declarative/qdeclarativestates/data/anchorChangesCrash.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativestates/data/autoStateAtStartupRestoreBug.qml b/tests/auto/declarative/qdeclarativestates/data/autoStateAtStartupRestoreBug.qml index 37e1e5a72f..3dd22e463e 100644 --- a/tests/auto/declarative/qdeclarativestates/data/autoStateAtStartupRestoreBug.qml +++ b/tests/auto/declarative/qdeclarativestates/data/autoStateAtStartupRestoreBug.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 Item { diff --git a/tests/auto/declarative/qdeclarativestates/data/basicBinding.qml b/tests/auto/declarative/qdeclarativestates/data/basicBinding.qml index d559691cbd..f1853bb820 100644 --- a/tests/auto/declarative/qdeclarativestates/data/basicBinding.qml +++ b/tests/auto/declarative/qdeclarativestates/data/basicBinding.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 Rectangle { id: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/basicBinding2.qml b/tests/auto/declarative/qdeclarativestates/data/basicBinding2.qml index a429b2475e..297b6bc08e 100644 --- a/tests/auto/declarative/qdeclarativestates/data/basicBinding2.qml +++ b/tests/auto/declarative/qdeclarativestates/data/basicBinding2.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 Rectangle { id: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/basicBinding3.qml b/tests/auto/declarative/qdeclarativestates/data/basicBinding3.qml index 26405d9979..e010e7ec36 100644 --- a/tests/auto/declarative/qdeclarativestates/data/basicBinding3.qml +++ b/tests/auto/declarative/qdeclarativestates/data/basicBinding3.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 Rectangle { id: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/basicBinding4.qml b/tests/auto/declarative/qdeclarativestates/data/basicBinding4.qml index 153a2c1687..ad986ef576 100644 --- a/tests/auto/declarative/qdeclarativestates/data/basicBinding4.qml +++ b/tests/auto/declarative/qdeclarativestates/data/basicBinding4.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 Rectangle { id: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/basicChanges.qml b/tests/auto/declarative/qdeclarativestates/data/basicChanges.qml index fca791676e..9a5217eae6 100644 --- a/tests/auto/declarative/qdeclarativestates/data/basicChanges.qml +++ b/tests/auto/declarative/qdeclarativestates/data/basicChanges.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 Rectangle { id: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/basicChanges2.qml b/tests/auto/declarative/qdeclarativestates/data/basicChanges2.qml index 72bd23e400..4890fdfdd1 100644 --- a/tests/auto/declarative/qdeclarativestates/data/basicChanges2.qml +++ b/tests/auto/declarative/qdeclarativestates/data/basicChanges2.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 Rectangle { id: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/basicChanges3.qml b/tests/auto/declarative/qdeclarativestates/data/basicChanges3.qml index 4fb1274e40..0c3cf6df1f 100644 --- a/tests/auto/declarative/qdeclarativestates/data/basicChanges3.qml +++ b/tests/auto/declarative/qdeclarativestates/data/basicChanges3.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 Rectangle { id: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/basicChanges4.qml b/tests/auto/declarative/qdeclarativestates/data/basicChanges4.qml index b2f02c91fa..4455824de8 100644 --- a/tests/auto/declarative/qdeclarativestates/data/basicChanges4.qml +++ b/tests/auto/declarative/qdeclarativestates/data/basicChanges4.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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativestates/data/basicExtension.qml b/tests/auto/declarative/qdeclarativestates/data/basicExtension.qml index abfe71a9c6..e5093a53f7 100644 --- a/tests/auto/declarative/qdeclarativestates/data/basicExtension.qml +++ b/tests/auto/declarative/qdeclarativestates/data/basicExtension.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 Rectangle { id: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/deleting.qml b/tests/auto/declarative/qdeclarativestates/data/deleting.qml index a8a66cb858..15745f62f4 100644 --- a/tests/auto/declarative/qdeclarativestates/data/deleting.qml +++ b/tests/auto/declarative/qdeclarativestates/data/deleting.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 Rectangle { id: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/deletingState.qml b/tests/auto/declarative/qdeclarativestates/data/deletingState.qml index fadb7d922c..4ca3b379ec 100644 --- a/tests/auto/declarative/qdeclarativestates/data/deletingState.qml +++ b/tests/auto/declarative/qdeclarativestates/data/deletingState.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 Rectangle { id: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/explicit.qml b/tests/auto/declarative/qdeclarativestates/data/explicit.qml index 718b16987c..eff5e835d7 100644 --- a/tests/auto/declarative/qdeclarativestates/data/explicit.qml +++ b/tests/auto/declarative/qdeclarativestates/data/explicit.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 Rectangle { id: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/fakeExtension.qml b/tests/auto/declarative/qdeclarativestates/data/fakeExtension.qml index 44397b543c..422cb3df3d 100644 --- a/tests/auto/declarative/qdeclarativestates/data/fakeExtension.qml +++ b/tests/auto/declarative/qdeclarativestates/data/fakeExtension.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 Rectangle { id: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/illegalObj.qml b/tests/auto/declarative/qdeclarativestates/data/illegalObj.qml index 26d0f502c2..55d3e5eb12 100644 --- a/tests/auto/declarative/qdeclarativestates/data/illegalObj.qml +++ b/tests/auto/declarative/qdeclarativestates/data/illegalObj.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativestates/data/illegalTempState.qml b/tests/auto/declarative/qdeclarativestates/data/illegalTempState.qml index 13cab18637..d60cf1560c 100644 --- a/tests/auto/declarative/qdeclarativestates/data/illegalTempState.qml +++ b/tests/auto/declarative/qdeclarativestates/data/illegalTempState.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativestates/data/legalTempState.qml b/tests/auto/declarative/qdeclarativestates/data/legalTempState.qml index f757da095b..7e3c427bec 100644 --- a/tests/auto/declarative/qdeclarativestates/data/legalTempState.qml +++ b/tests/auto/declarative/qdeclarativestates/data/legalTempState.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativestates/data/nonExistantProp.qml b/tests/auto/declarative/qdeclarativestates/data/nonExistantProp.qml index db9b017fe7..ab8ba48510 100644 --- a/tests/auto/declarative/qdeclarativestates/data/nonExistantProp.qml +++ b/tests/auto/declarative/qdeclarativestates/data/nonExistantProp.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 Rectangle { id: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/parentChange1.qml b/tests/auto/declarative/qdeclarativestates/data/parentChange1.qml index 8b0e3bf18c..ef8f67f21e 100644 --- a/tests/auto/declarative/qdeclarativestates/data/parentChange1.qml +++ b/tests/auto/declarative/qdeclarativestates/data/parentChange1.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativestates/data/parentChange2.qml b/tests/auto/declarative/qdeclarativestates/data/parentChange2.qml index 3a14dbe76a..3b03e0f830 100644 --- a/tests/auto/declarative/qdeclarativestates/data/parentChange2.qml +++ b/tests/auto/declarative/qdeclarativestates/data/parentChange2.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativestates/data/parentChange3.qml b/tests/auto/declarative/qdeclarativestates/data/parentChange3.qml index 17c07e8413..a1915a6cb2 100644 --- a/tests/auto/declarative/qdeclarativestates/data/parentChange3.qml +++ b/tests/auto/declarative/qdeclarativestates/data/parentChange3.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativestates/data/parentChange4.qml b/tests/auto/declarative/qdeclarativestates/data/parentChange4.qml index 11d0831a4f..5f7e1fbd2f 100644 --- a/tests/auto/declarative/qdeclarativestates/data/parentChange4.qml +++ b/tests/auto/declarative/qdeclarativestates/data/parentChange4.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativestates/data/parentChange5.qml b/tests/auto/declarative/qdeclarativestates/data/parentChange5.qml index 329d2777cd..145df1d7f3 100644 --- a/tests/auto/declarative/qdeclarativestates/data/parentChange5.qml +++ b/tests/auto/declarative/qdeclarativestates/data/parentChange5.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativestates/data/propertyErrors.qml b/tests/auto/declarative/qdeclarativestates/data/propertyErrors.qml index 807eec9f5a..9b0f5d471d 100644 --- a/tests/auto/declarative/qdeclarativestates/data/propertyErrors.qml +++ b/tests/auto/declarative/qdeclarativestates/data/propertyErrors.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 Rectangle { id: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/reset.qml b/tests/auto/declarative/qdeclarativestates/data/reset.qml index 5725320be5..968619fa02 100644 --- a/tests/auto/declarative/qdeclarativestates/data/reset.qml +++ b/tests/auto/declarative/qdeclarativestates/data/reset.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativestates/data/restoreEntryValues.qml b/tests/auto/declarative/qdeclarativestates/data/restoreEntryValues.qml index 621adf033b..07463a24ae 100644 --- a/tests/auto/declarative/qdeclarativestates/data/restoreEntryValues.qml +++ b/tests/auto/declarative/qdeclarativestates/data/restoreEntryValues.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 Rectangle { id: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/script.qml b/tests/auto/declarative/qdeclarativestates/data/script.qml index cdb6be1a49..c16f3e6406 100644 --- a/tests/auto/declarative/qdeclarativestates/data/script.qml +++ b/tests/auto/declarative/qdeclarativestates/data/script.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 Rectangle { id: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/signalOverride.qml b/tests/auto/declarative/qdeclarativestates/data/signalOverride.qml index c4ab96cf18..a94b5d1256 100644 --- a/tests/auto/declarative/qdeclarativestates/data/signalOverride.qml +++ b/tests/auto/declarative/qdeclarativestates/data/signalOverride.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 import Qt.test 1.0 diff --git a/tests/auto/declarative/qdeclarativestates/data/signalOverride2.qml b/tests/auto/declarative/qdeclarativestates/data/signalOverride2.qml index 65a8cea840..d14c11e32c 100644 --- a/tests/auto/declarative/qdeclarativestates/data/signalOverride2.qml +++ b/tests/auto/declarative/qdeclarativestates/data/signalOverride2.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 import Qt.test 1.0 diff --git a/tests/auto/declarative/qdeclarativestates/data/signalOverrideCrash.qml b/tests/auto/declarative/qdeclarativestates/data/signalOverrideCrash.qml index 8a0b51a4fe..297c97fa92 100644 --- a/tests/auto/declarative/qdeclarativestates/data/signalOverrideCrash.qml +++ b/tests/auto/declarative/qdeclarativestates/data/signalOverrideCrash.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 import Qt.test 1.0 diff --git a/tests/auto/declarative/qdeclarativestates/data/signalOverrideCrash2.qml b/tests/auto/declarative/qdeclarativestates/data/signalOverrideCrash2.qml index 2215ee4ced..b65bd77d89 100644 --- a/tests/auto/declarative/qdeclarativestates/data/signalOverrideCrash2.qml +++ b/tests/auto/declarative/qdeclarativestates/data/signalOverrideCrash2.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativestates/data/unnamedWhen.qml b/tests/auto/declarative/qdeclarativestates/data/unnamedWhen.qml index a70840c86e..fecec9b983 100644 --- a/tests/auto/declarative/qdeclarativestates/data/unnamedWhen.qml +++ b/tests/auto/declarative/qdeclarativestates/data/unnamedWhen.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativestates/data/urlResolution.qml b/tests/auto/declarative/qdeclarativestates/data/urlResolution.qml index 8995b5654f..4dabcf264f 100644 --- a/tests/auto/declarative/qdeclarativestates/data/urlResolution.qml +++ b/tests/auto/declarative/qdeclarativestates/data/urlResolution.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 import "Implementation" diff --git a/tests/auto/declarative/qdeclarativestates/data/whenOrdering.qml b/tests/auto/declarative/qdeclarativestates/data/whenOrdering.qml index 08d0795d66..f752eecec9 100644 --- a/tests/auto/declarative/qdeclarativestates/data/whenOrdering.qml +++ b/tests/auto/declarative/qdeclarativestates/data/whenOrdering.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativetext/data/embeddedImagesLocal.qml b/tests/auto/declarative/qdeclarativetext/data/embeddedImagesLocal.qml index 877222fa61..95028a10ad 100644 --- a/tests/auto/declarative/qdeclarativetext/data/embeddedImagesLocal.qml +++ b/tests/auto/declarative/qdeclarativetext/data/embeddedImagesLocal.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 Text { diff --git a/tests/auto/declarative/qdeclarativetext/data/embeddedImagesLocalError.qml b/tests/auto/declarative/qdeclarativetext/data/embeddedImagesLocalError.qml index abc707711d..d119deb1ed 100644 --- a/tests/auto/declarative/qdeclarativetext/data/embeddedImagesLocalError.qml +++ b/tests/auto/declarative/qdeclarativetext/data/embeddedImagesLocalError.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 Text { diff --git a/tests/auto/declarative/qdeclarativetext/data/embeddedImagesRemote.qml b/tests/auto/declarative/qdeclarativetext/data/embeddedImagesRemote.qml index b6ca3e360c..ed32651d28 100644 --- a/tests/auto/declarative/qdeclarativetext/data/embeddedImagesRemote.qml +++ b/tests/auto/declarative/qdeclarativetext/data/embeddedImagesRemote.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 Text { diff --git a/tests/auto/declarative/qdeclarativetext/data/embeddedImagesRemoteError.qml b/tests/auto/declarative/qdeclarativetext/data/embeddedImagesRemoteError.qml index fbfce9ad0c..85fc2ebb2c 100644 --- a/tests/auto/declarative/qdeclarativetext/data/embeddedImagesRemoteError.qml +++ b/tests/auto/declarative/qdeclarativetext/data/embeddedImagesRemoteError.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 Text { diff --git a/tests/auto/declarative/qdeclarativetextedit/data/cursorTest.qml b/tests/auto/declarative/qdeclarativetextedit/data/cursorTest.qml index 586e606952..7aa66c03b4 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/cursorTest.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/cursorTest.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 Rectangle { width: 300; height: 300; color: "white" diff --git a/tests/auto/declarative/qdeclarativetextedit/data/geometrySignals.qml b/tests/auto/declarative/qdeclarativetextedit/data/geometrySignals.qml index b39ba5b8a4..cb7d0cc98f 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/geometrySignals.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/geometrySignals.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 Item { diff --git a/tests/auto/declarative/qdeclarativetextedit/data/http/ErrItem.qml b/tests/auto/declarative/qdeclarativetextedit/data/http/ErrItem.qml index b5c807e011..5456c0d94c 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/http/ErrItem.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/http/ErrItem.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 Item{ diff --git a/tests/auto/declarative/qdeclarativetextedit/data/http/NormItem.qml b/tests/auto/declarative/qdeclarativetextedit/data/http/NormItem.qml index df843d8013..8d8d61ad24 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/http/NormItem.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/http/NormItem.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 Item { diff --git a/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTest.qml b/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTest.qml index 1b41f8f8b3..221ea05773 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTest.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTest.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 Rectangle { width: 300; height: 300; color: "white" diff --git a/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTestFail1.qml b/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTestFail1.qml index 51be3cfdbe..5becfb1f40 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTestFail1.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTestFail1.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 Rectangle { width: 300; height: 300; color: "white" diff --git a/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTestFail2.qml b/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTestFail2.qml index 30c3fbd73b..9eb49800a4 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTestFail2.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTestFail2.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 Rectangle { width: 300; height: 300; color: "white" diff --git a/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTestPass.qml b/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTestPass.qml index a1ca58ab6d..1cf77c38fa 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTestPass.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTestPass.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 Rectangle { width: 300; height: 300; color: "white" diff --git a/tests/auto/declarative/qdeclarativetextedit/data/httpfail/FailItem.qml b/tests/auto/declarative/qdeclarativetextedit/data/httpfail/FailItem.qml index 8dfac482c9..8c624a96bd 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/httpfail/FailItem.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/httpfail/FailItem.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 Item { diff --git a/tests/auto/declarative/qdeclarativetextedit/data/httpslow/WaitItem.qml b/tests/auto/declarative/qdeclarativetextedit/data/httpslow/WaitItem.qml index 8dfac482c9..8c624a96bd 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/httpslow/WaitItem.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/httpslow/WaitItem.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 Item { diff --git a/tests/auto/declarative/qdeclarativetextedit/data/inputmethodhints.qml b/tests/auto/declarative/qdeclarativetextedit/data/inputmethodhints.qml index 8067edb225..1bed6ed943 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/inputmethodhints.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/inputmethodhints.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 TextEdit { diff --git a/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_default.qml b/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_default.qml index f1cf86cd4e..152614a729 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_default.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_default.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 TextEdit { diff --git a/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_false.qml b/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_false.qml index f1cf86cd4e..152614a729 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_false.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_false.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 TextEdit { diff --git a/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_true.qml b/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_true.qml index 90383b9418..e862ee79d6 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_true.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_true.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 TextEdit { diff --git a/tests/auto/declarative/qdeclarativetextedit/data/navigation.qml b/tests/auto/declarative/qdeclarativetextedit/data/navigation.qml index 7772687708..de8f6f0f58 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/navigation.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/navigation.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativetextedit/data/readOnly.qml b/tests/auto/declarative/qdeclarativetextedit/data/readOnly.qml index a68e4b4c9c..e2478ae2f1 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/readOnly.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/readOnly.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativetextinput/data/cursorTest.qml b/tests/auto/declarative/qdeclarativetextinput/data/cursorTest.qml index f0d1be5300..5bf68c68b4 100644 --- a/tests/auto/declarative/qdeclarativetextinput/data/cursorTest.qml +++ b/tests/auto/declarative/qdeclarativetextinput/data/cursorTest.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 Rectangle { width: 300; height: 300; color: "white" diff --git a/tests/auto/declarative/qdeclarativetextinput/data/echoMode.qml b/tests/auto/declarative/qdeclarativetextinput/data/echoMode.qml index 66a2017510..b6e9943e76 100644 --- a/tests/auto/declarative/qdeclarativetextinput/data/echoMode.qml +++ b/tests/auto/declarative/qdeclarativetextinput/data/echoMode.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativetextinput/data/geometrySignals.qml b/tests/auto/declarative/qdeclarativetextinput/data/geometrySignals.qml index a9b50feae2..0fd4226b58 100644 --- a/tests/auto/declarative/qdeclarativetextinput/data/geometrySignals.qml +++ b/tests/auto/declarative/qdeclarativetextinput/data/geometrySignals.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 Item { diff --git a/tests/auto/declarative/qdeclarativetextinput/data/inputmethodhints.qml b/tests/auto/declarative/qdeclarativetextinput/data/inputmethodhints.qml index da6b81f60e..fe083d1342 100644 --- a/tests/auto/declarative/qdeclarativetextinput/data/inputmethodhints.qml +++ b/tests/auto/declarative/qdeclarativetextinput/data/inputmethodhints.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 TextInput { diff --git a/tests/auto/declarative/qdeclarativetextinput/data/masks.qml b/tests/auto/declarative/qdeclarativetextinput/data/masks.qml index 141c243668..8b19afa672 100644 --- a/tests/auto/declarative/qdeclarativetextinput/data/masks.qml +++ b/tests/auto/declarative/qdeclarativetextinput/data/masks.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 TextInput{ diff --git a/tests/auto/declarative/qdeclarativetextinput/data/maxLength.qml b/tests/auto/declarative/qdeclarativetextinput/data/maxLength.qml index c3d59941ad..ca156882c3 100644 --- a/tests/auto/declarative/qdeclarativetextinput/data/maxLength.qml +++ b/tests/auto/declarative/qdeclarativetextinput/data/maxLength.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 TextInput{ diff --git a/tests/auto/declarative/qdeclarativetextinput/data/navigation.qml b/tests/auto/declarative/qdeclarativetextinput/data/navigation.qml index 58866b73f8..7f50841b03 100644 --- a/tests/auto/declarative/qdeclarativetextinput/data/navigation.qml +++ b/tests/auto/declarative/qdeclarativetextinput/data/navigation.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativetextinput/data/readOnly.qml b/tests/auto/declarative/qdeclarativetextinput/data/readOnly.qml index b10ea8155c..424b95d006 100644 --- a/tests/auto/declarative/qdeclarativetextinput/data/readOnly.qml +++ b/tests/auto/declarative/qdeclarativetextinput/data/readOnly.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativetextinput/data/validators.qml b/tests/auto/declarative/qdeclarativetextinput/data/validators.qml index 4b1ba270ef..6482d64c74 100644 --- a/tests/auto/declarative/qdeclarativetextinput/data/validators.qml +++ b/tests/auto/declarative/qdeclarativetextinput/data/validators.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 Item { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/autoBindingRemoval.2.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/autoBindingRemoval.2.qml index ce2e82d0f8..4cec4bc882 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/autoBindingRemoval.2.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/autoBindingRemoval.2.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/autoBindingRemoval.3.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/autoBindingRemoval.3.qml index d431b4ae08..02ad992082 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/autoBindingRemoval.3.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/autoBindingRemoval.3.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/autoBindingRemoval.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/autoBindingRemoval.qml index a8a72f515b..b292889bbc 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/autoBindingRemoval.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/autoBindingRemoval.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/bindingAssignment.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/bindingAssignment.qml index a65218669b..200379c8f0 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/bindingAssignment.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/bindingAssignment.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/bindingConflict.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/bindingConflict.qml index fd25c9f0a7..72d63cd161 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/bindingConflict.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/bindingConflict.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/bindingRead.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/bindingRead.qml index 538d776fba..3bc79b824d 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/bindingRead.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/bindingRead.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/bindingVariantCopy.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/bindingVariantCopy.qml index 3a48c8bdb1..fda8d5091e 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/bindingVariantCopy.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/bindingVariantCopy.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/conflicting.1.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/conflicting.1.qml index 52591b1b30..6ab2f4e58f 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/conflicting.1.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/conflicting.1.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/conflicting.2.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/conflicting.2.qml index 35005fea11..8f10397c9f 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/conflicting.2.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/conflicting.2.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/conflicting.3.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/conflicting.3.qml index 4ae45a49d0..200d062799 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/conflicting.3.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/conflicting.3.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 Rectangle { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/deletedObject.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/deletedObject.qml index 69b5bfd65d..a8b300c5ee 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/deletedObject.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/deletedObject.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 Test 1.0 import Qt 4.7 import "deletedObject.js" as JS diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/enums.1.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/enums.1.qml index cb01a80669..cc9b72d71d 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/enums.1.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/enums.1.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/enums.2.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/enums.2.qml index 93f1ed59bc..e000376e0c 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/enums.2.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/enums.2.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/enums.3.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/enums.3.qml index b6767b0581..b27c3f280c 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/enums.3.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/enums.3.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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/enums.4.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/enums.4.qml index 4227ebf8c2..b73cf05fb3 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/enums.4.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/enums.4.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 Test 1.0 import Qt 4.7 as MyQt diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/enums.5.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/enums.5.qml index a66e9d6689..78dbf2aadf 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/enums.5.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/enums.5.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 Test 1.0 import Qt 4.7 as MyQt diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/font_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/font_read.qml index d73bb132d3..fbd4024cee 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/font_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/font_read.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.2.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.2.qml index b559389efb..97494ca39a 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.2.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.2.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.3.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.3.qml index 913ac50738..7d13f5d936 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.3.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.3.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.4.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.4.qml index 2ec69d7281..3f9718a8e8 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.4.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.4.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.5.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.5.qml index cc51c31c5a..c1d6a30e7e 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.5.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.5.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 import Test 1.0 diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.qml index ff4d0a1004..3636100d92 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/matrix4x4_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/matrix4x4_read.qml index 6c4a68258c..510190e231 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/matrix4x4_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/matrix4x4_read.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/matrix4x4_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/matrix4x4_write.qml index 2a9f154d6f..e3ac187111 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/matrix4x4_write.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/matrix4x4_write.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/point_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/point_read.qml index 4bb6c5384c..f7f6bd57ba 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/point_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/point_read.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/point_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/point_write.qml index 063525a6f0..05a38812d9 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/point_write.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/point_write.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/pointf_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/pointf_read.qml index 0eab6daabe..202ef26270 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/pointf_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/pointf_read.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/pointf_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/pointf_write.qml index 9ee3fc1bda..5f1086bbea 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/pointf_write.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/pointf_write.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/quaternion_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/quaternion_read.qml index d1a21dc926..2f99b5dc7e 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/quaternion_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/quaternion_read.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/quaternion_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/quaternion_write.qml index 0c3e5afd98..c233a8b64d 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/quaternion_write.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/quaternion_write.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/rect_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/rect_read.qml index c3b37a7099..5a3840fc7b 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/rect_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/rect_read.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/rect_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/rect_write.qml index 8add45305c..a5521bf93d 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/rect_write.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/rect_write.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/rectf_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/rectf_read.qml index 6ff3ce30bf..27e18b295c 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/rectf_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/rectf_read.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/rectf_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/rectf_write.qml index 1e6ff4ff90..7dc5fdbeb2 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/rectf_write.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/rectf_write.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/returnValues.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/returnValues.qml index 0615300693..b6212cd864 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/returnValues.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/returnValues.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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/scriptAccess.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/scriptAccess.qml index e962ab09a9..4e58ff8335 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/scriptAccess.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/scriptAccess.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 import Test 1.0 diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/scriptVariantCopy.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/scriptVariantCopy.qml index 42fccfac5a..490946cd24 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/scriptVariantCopy.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/scriptVariantCopy.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/size_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/size_read.qml index a49fd9f760..3e90a86c62 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/size_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/size_read.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/size_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/size_write.qml index 2f9d10e45f..51569c69a2 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/size_write.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/size_write.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/sizef_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/sizef_read.qml index 96cd425f17..f724f6329d 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/sizef_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/sizef_read.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/sizef_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/sizef_write.qml index f16f0bdf93..5216dbad5b 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/sizef_write.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/sizef_write.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_read.qml index 7f708a0899..51994fe865 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_read.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror.qml index 3254557014..15917c91f6 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror2.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror2.qml index 656d718b05..79fc33b1da 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror2.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror2.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror3.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror3.qml index b8e3f0d41b..2a4e8b25fb 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror3.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror3.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror4.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror4.qml index 045fc5149f..14e7a75f9a 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror4.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror4.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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/staticAssignment.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/staticAssignment.qml index b687f89eef..6edaa351ea 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/staticAssignment.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/staticAssignment.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/valueInterceptors.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/valueInterceptors.qml index 0897847d2d..ba56fb7c78 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/valueInterceptors.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/valueInterceptors.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/valueSources.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/valueSources.qml index 717f3502c0..564e670abf 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/valueSources.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/valueSources.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/varAssignment.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/varAssignment.qml index e4715aba4a..c9ff511dab 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/varAssignment.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/varAssignment.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/vector2d_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/vector2d_read.qml index fc315f7abf..e8d2ee5e3c 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/vector2d_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/vector2d_read.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/vector2d_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/vector2d_write.qml index f0e35ff200..ca6760aa2f 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/vector2d_write.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/vector2d_write.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/vector3d_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/vector3d_read.qml index f1e876dbb9..20e3a46153 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/vector3d_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/vector3d_read.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/vector3d_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/vector3d_write.qml index 9c1bf7620a..77b7ebf2c1 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/vector3d_write.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/vector3d_write.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/vector4d_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/vector4d_read.qml index f9d5d6053e..4e636f2cf5 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/vector4d_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/vector4d_read.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/vector4d_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/vector4d_write.qml index 548698126d..66639a56d5 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/vector4d_write.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/vector4d_write.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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativeview/data/resizemodedeclarativeitem.qml b/tests/auto/declarative/qdeclarativeview/data/resizemodedeclarativeitem.qml index 27c8454ae1..09435b8d39 100644 --- a/tests/auto/declarative/qdeclarativeview/data/resizemodedeclarativeitem.qml +++ b/tests/auto/declarative/qdeclarativeview/data/resizemodedeclarativeitem.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 Item { width: 200 diff --git a/tests/auto/declarative/qdeclarativeview/data/resizemodegraphicswidget.qml b/tests/auto/declarative/qdeclarativeview/data/resizemodegraphicswidget.qml index 964810c895..92f15b7c2b 100644 --- a/tests/auto/declarative/qdeclarativeview/data/resizemodegraphicswidget.qml +++ b/tests/auto/declarative/qdeclarativeview/data/resizemodegraphicswidget.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 QGraphicsWidget { width: 200 diff --git a/tests/auto/declarative/qdeclarativeviewer/data/orientation.qml b/tests/auto/declarative/qdeclarativeviewer/data/orientation.qml index 687fac64fa..70c046d31c 100644 --- a/tests/auto/declarative/qdeclarativeviewer/data/orientation.qml +++ b/tests/auto/declarative/qdeclarativeviewer/data/orientation.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 Rectangle { color: "black" diff --git a/tests/auto/declarative/qdeclarativevisualdatamodel/data/objectlist.qml b/tests/auto/declarative/qdeclarativevisualdatamodel/data/objectlist.qml index f5198c90d2..f91f5ab440 100644 --- a/tests/auto/declarative/qdeclarativevisualdatamodel/data/objectlist.qml +++ b/tests/auto/declarative/qdeclarativevisualdatamodel/data/objectlist.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 ListView { diff --git a/tests/auto/declarative/qdeclarativevisualdatamodel/data/visualdatamodel.qml b/tests/auto/declarative/qdeclarativevisualdatamodel/data/visualdatamodel.qml index d70f82b93b..e2f0a84fe5 100644 --- a/tests/auto/declarative/qdeclarativevisualdatamodel/data/visualdatamodel.qml +++ b/tests/auto/declarative/qdeclarativevisualdatamodel/data/visualdatamodel.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 VisualDataModel { diff --git a/tests/auto/declarative/qdeclarativewebview/data/basic.qml b/tests/auto/declarative/qdeclarativewebview/data/basic.qml index a5a8d34381..1f6a07d7ad 100644 --- a/tests/auto/declarative/qdeclarativewebview/data/basic.qml +++ b/tests/auto/declarative/qdeclarativewebview/data/basic.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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qdeclarativewebview/data/elements.qml b/tests/auto/declarative/qdeclarativewebview/data/elements.qml index 5af76ed322..33900e9730 100644 --- a/tests/auto/declarative/qdeclarativewebview/data/elements.qml +++ b/tests/auto/declarative/qdeclarativewebview/data/elements.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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qdeclarativewebview/data/javaScript.qml b/tests/auto/declarative/qdeclarativewebview/data/javaScript.qml index 4141166a48..0326910852 100644 --- a/tests/auto/declarative/qdeclarativewebview/data/javaScript.qml +++ b/tests/auto/declarative/qdeclarativewebview/data/javaScript.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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qdeclarativewebview/data/loadError.qml b/tests/auto/declarative/qdeclarativewebview/data/loadError.qml index 2061b5f938..ec51d97c00 100644 --- a/tests/auto/declarative/qdeclarativewebview/data/loadError.qml +++ b/tests/auto/declarative/qdeclarativewebview/data/loadError.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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qdeclarativewebview/data/newwindows.qml b/tests/auto/declarative/qdeclarativewebview/data/newwindows.qml index d066c07a23..5b9275fe94 100644 --- a/tests/auto/declarative/qdeclarativewebview/data/newwindows.qml +++ b/tests/auto/declarative/qdeclarativewebview/data/newwindows.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$ +** +****************************************************************************/ + // Demonstrates opening new WebViews from HTML import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativewebview/data/pixelCache.qml b/tests/auto/declarative/qdeclarativewebview/data/pixelCache.qml index 08e4d65719..c3f9865e70 100644 --- a/tests/auto/declarative/qdeclarativewebview/data/pixelCache.qml +++ b/tests/auto/declarative/qdeclarativewebview/data/pixelCache.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 Test 1.0 MyWebView { diff --git a/tests/auto/declarative/qdeclarativewebview/data/propertychanges.qml b/tests/auto/declarative/qdeclarativewebview/data/propertychanges.qml index 45684ff88e..a259b2f14f 100644 --- a/tests/auto/declarative/qdeclarativewebview/data/propertychanges.qml +++ b/tests/auto/declarative/qdeclarativewebview/data/propertychanges.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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qdeclarativewebview/data/sethtml.qml b/tests/auto/declarative/qdeclarativewebview/data/sethtml.qml index b14bcf9a9d..e31aceb84b 100644 --- a/tests/auto/declarative/qdeclarativewebview/data/sethtml.qml +++ b/tests/auto/declarative/qdeclarativewebview/data/sethtml.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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qdeclarativeworkerscript/data/worker.qml b/tests/auto/declarative/qdeclarativeworkerscript/data/worker.qml index 5c7a5ff26e..605e88e0e9 100644 --- a/tests/auto/declarative/qdeclarativeworkerscript/data/worker.qml +++ b/tests/auto/declarative/qdeclarativeworkerscript/data/worker.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 WorkerScript { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/abort.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/abort.qml index 24e4071a60..162ebd741d 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/abort.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/abort.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/abort_opened.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/abort_opened.qml index e78ce637a8..2e10633df2 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/abort_opened.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/abort_opened.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/abort_unsent.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/abort_unsent.qml index 79d1355aec..f744407201 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/abort_unsent.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/abort_unsent.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/attr.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/attr.qml index 81d8e1d8e2..499ce9d82b 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/attr.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/attr.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/callbackException.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/callbackException.qml index cee07d6de6..fe297ac606 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/callbackException.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/callbackException.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/cdata.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/cdata.qml index 49bfebd1d6..3402f2a3f4 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/cdata.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/cdata.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/constructor.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/constructor.qml index ab033a5c75..66b3700861 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/constructor.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/constructor.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/defaultState.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/defaultState.qml index d66f28302f..e8ba391530 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/defaultState.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/defaultState.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/document.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/document.qml index 1df43ef11d..0de74c985e 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/document.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/document.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/domExceptionCodes.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/domExceptionCodes.qml index 827ff3fbc1..2f523e1591 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/domExceptionCodes.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/domExceptionCodes.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/element.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/element.qml index e7a3fb46eb..324a9f6530 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/element.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/element.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders.qml index 157ae81bd1..540d7c3bd3 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders_args.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders_args.qml index 700822460c..5cfad3d774 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders_args.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders_args.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders_sent.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders_sent.qml index ff587104db..6ce816afc9 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders_sent.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders_sent.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders_unsent.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders_unsent.qml index d6256ed75f..0a59125b3d 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders_unsent.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders_unsent.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader.qml index 0f3cdef509..ae5fc18d42 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader_args.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader_args.qml index a7a8bba0b9..5d7ee7c2e8 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader_args.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader_args.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader_sent.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader_sent.qml index fc0f7573cd..0a303ba145 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader_sent.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader_sent.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader_unsent.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader_unsent.qml index c5507a80b0..c58a966c29 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader_unsent.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader_unsent.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/instanceStateValues.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/instanceStateValues.qml index d3cc8451a5..28ca698555 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/instanceStateValues.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/instanceStateValues.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/invalidMethodUsage.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/invalidMethodUsage.qml index 8c603a40da..6a4bd22884 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/invalidMethodUsage.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/invalidMethodUsage.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open.qml index 24bde60658..4a6b9aeca6 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_arg_count.1.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_arg_count.1.qml index 86a6ac9517..c42da32add 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_arg_count.1.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_arg_count.1.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_arg_count.2.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_arg_count.2.qml index 198219c7f6..90be5b9b1a 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_arg_count.2.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_arg_count.2.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_invalid_method.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_invalid_method.qml index dacc484d5e..8c335a0874 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_invalid_method.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_invalid_method.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_sync.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_sync.qml index d38380b130..8ac0d07d17 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_sync.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_sync.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_user.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_user.qml index 2c072e4cf3..fd6bfe4c79 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_user.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_user.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_username.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_username.qml index 825ad60d6f..fe9c124e58 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_username.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_username.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/redirectError.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/redirectError.qml index cb8f86916d..9808367db8 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/redirectError.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/redirectError.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/redirectRecur.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/redirectRecur.qml index f895a8c26d..5eef86ddc3 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/redirectRecur.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/redirectRecur.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/redirects.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/redirects.qml index 268966e9c9..7c8a5f06ed 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/redirects.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/redirects.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/responseText.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/responseText.qml index 22a9b96d10..3539b983d7 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/responseText.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/responseText.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/responseXML_invalid.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/responseXML_invalid.qml index d754921179..0ec5598b81 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/responseXML_invalid.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/responseXML_invalid.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_alreadySent.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_alreadySent.qml index 8f69a94487..30a61f4223 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_alreadySent.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_alreadySent.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.1.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.1.qml index 7ab53d39a1..de83dc4baa 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.1.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.1.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.2.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.2.qml index 3a48e288c7..481cd9d9ae 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.2.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.2.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.3.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.3.qml index c68b821018..e31f321199 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.3.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.3.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.4.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.4.qml index 8fee2cd050..d920c4e15d 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.4.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.4.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.5.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.5.qml index ea214fa148..220d8347e6 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.5.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.5.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.6.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.6.qml index 524622ca74..b6cfc982fb 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.6.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.6.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.7.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.7.qml index a4828cd677..a74544d447 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.7.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.7.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_ignoreData.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_ignoreData.qml index a1f46e2ada..400b0b8dcb 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_ignoreData.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_ignoreData.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_unsent.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_unsent.qml index 0efa40a5c5..76d86f4933 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_unsent.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_unsent.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader.qml index b252f4a3a1..681ee8e974 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_args.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_args.qml index e83cb72ce6..85498dc527 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_args.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_args.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_illegalName.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_illegalName.qml index 3f9041c1b0..a95e68eb22 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_illegalName.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_illegalName.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_sent.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_sent.qml index b15b4045cb..9af90d9cb7 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_sent.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_sent.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_unsent.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_unsent.qml index aadc580b0a..9d638e75df 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_unsent.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_unsent.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/staticStateValues.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/staticStateValues.qml index 97d42ac515..a41efce11b 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/staticStateValues.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/staticStateValues.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/status.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/status.qml index e28add2af3..dd54328b9b 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/status.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/status.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/statusText.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/statusText.qml index a44c6bab7a..012c6a810d 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/statusText.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/statusText.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/text.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/text.qml index 63bfb083c0..75f94f756b 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/text.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/text.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/utf16.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/utf16.qml index a54ef4a9af..f2fa80d3ca 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/utf16.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/utf16.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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmllistmodel/data/model.qml b/tests/auto/declarative/qdeclarativexmllistmodel/data/model.qml index 83541938ad..64ab9f0f50 100644 --- a/tests/auto/declarative/qdeclarativexmllistmodel/data/model.qml +++ b/tests/auto/declarative/qdeclarativexmllistmodel/data/model.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 XmlListModel { diff --git a/tests/auto/declarative/qdeclarativexmllistmodel/data/model2.qml b/tests/auto/declarative/qdeclarativexmllistmodel/data/model2.qml index 09077b6b58..f247839ab0 100644 --- a/tests/auto/declarative/qdeclarativexmllistmodel/data/model2.qml +++ b/tests/auto/declarative/qdeclarativexmllistmodel/data/model2.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 XmlListModel { diff --git a/tests/auto/declarative/qdeclarativexmllistmodel/data/propertychanges.qml b/tests/auto/declarative/qdeclarativexmllistmodel/data/propertychanges.qml index b014aa3ec4..7fc4565722 100644 --- a/tests/auto/declarative/qdeclarativexmllistmodel/data/propertychanges.qml +++ b/tests/auto/declarative/qdeclarativexmllistmodel/data/propertychanges.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 XmlListModel { diff --git a/tests/auto/declarative/qdeclarativexmllistmodel/data/recipes.qml b/tests/auto/declarative/qdeclarativexmllistmodel/data/recipes.qml index 59b8ddc002..eb2da9f790 100644 --- a/tests/auto/declarative/qdeclarativexmllistmodel/data/recipes.qml +++ b/tests/auto/declarative/qdeclarativexmllistmodel/data/recipes.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 XmlListModel { diff --git a/tests/auto/declarative/qdeclarativexmllistmodel/data/roleErrors.qml b/tests/auto/declarative/qdeclarativexmllistmodel/data/roleErrors.qml index a9059635f1..c043d73575 100644 --- a/tests/auto/declarative/qdeclarativexmllistmodel/data/roleErrors.qml +++ b/tests/auto/declarative/qdeclarativexmllistmodel/data/roleErrors.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 XmlListModel { diff --git a/tests/auto/declarative/qdeclarativexmllistmodel/data/roleKeys.qml b/tests/auto/declarative/qdeclarativexmllistmodel/data/roleKeys.qml index eaf5f0a675..4a37a778d9 100644 --- a/tests/auto/declarative/qdeclarativexmllistmodel/data/roleKeys.qml +++ b/tests/auto/declarative/qdeclarativexmllistmodel/data/roleKeys.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 XmlListModel { diff --git a/tests/auto/declarative/qdeclarativexmllistmodel/data/unique.qml b/tests/auto/declarative/qdeclarativexmllistmodel/data/unique.qml index 3aa7b1f368..ad75ba491a 100644 --- a/tests/auto/declarative/qdeclarativexmllistmodel/data/unique.qml +++ b/tests/auto/declarative/qdeclarativexmllistmodel/data/unique.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 XmlListModel { diff --git a/tests/auto/declarative/qmlvisual/ListView/basic1.qml b/tests/auto/declarative/qmlvisual/ListView/basic1.qml index c67aaaaa37..7828738c47 100644 --- a/tests/auto/declarative/qmlvisual/ListView/basic1.qml +++ b/tests/auto/declarative/qmlvisual/ListView/basic1.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/ListView/basic2.qml b/tests/auto/declarative/qmlvisual/ListView/basic2.qml index 73c1b9a9cb..8b794704ef 100644 --- a/tests/auto/declarative/qmlvisual/ListView/basic2.qml +++ b/tests/auto/declarative/qmlvisual/ListView/basic2.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/ListView/basic3.qml b/tests/auto/declarative/qmlvisual/ListView/basic3.qml index 44f74a540d..2c8796fc05 100644 --- a/tests/auto/declarative/qmlvisual/ListView/basic3.qml +++ b/tests/auto/declarative/qmlvisual/ListView/basic3.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/ListView/basic4.qml b/tests/auto/declarative/qmlvisual/ListView/basic4.qml index e5d097bfdd..8f1da97bde 100644 --- a/tests/auto/declarative/qmlvisual/ListView/basic4.qml +++ b/tests/auto/declarative/qmlvisual/ListView/basic4.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic1.qml b/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic1.qml index 3373247c7c..eccc0976f1 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic1.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic1.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic2.qml b/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic2.qml index 20b889d5fe..2e6a649352 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic2.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic2.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic3.qml b/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic3.qml index f49de2f03d..f2e25d8584 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic3.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic3.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic4.qml b/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic4.qml index 1ea5547e26..5cf0795c92 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic4.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic4.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.qml b/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.qml index 829fbb3e1b..9b911929ce 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.qml b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.qml index f47179d977..995c5bcb45 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data-X11/basic1.qml b/tests/auto/declarative/qmlvisual/ListView/data-X11/basic1.qml index b291ea4766..f5064034b7 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data-X11/basic1.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data-X11/basic1.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data-X11/basic2.qml b/tests/auto/declarative/qmlvisual/ListView/data-X11/basic2.qml index e32e9e691c..e071297029 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data-X11/basic2.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data-X11/basic2.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data-X11/basic3.qml b/tests/auto/declarative/qmlvisual/ListView/data-X11/basic3.qml index ed0c53bc70..0fd7c0bdeb 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data-X11/basic3.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data-X11/basic3.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data-X11/basic4.qml b/tests/auto/declarative/qmlvisual/ListView/data-X11/basic4.qml index a70b741c03..14d5deef32 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data-X11/basic4.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data-X11/basic4.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic1.qml b/tests/auto/declarative/qmlvisual/ListView/data/basic1.qml index 7aadf36853..e74a3348de 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data/basic1.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data/basic1.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic2.qml b/tests/auto/declarative/qmlvisual/ListView/data/basic2.qml index 5624d6b6af..af8650897e 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data/basic2.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data/basic2.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic3.qml b/tests/auto/declarative/qmlvisual/ListView/data/basic3.qml index 16a8329822..38d41d44ec 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data/basic3.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data/basic3.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic4.qml b/tests/auto/declarative/qmlvisual/ListView/data/basic4.qml index 23cc2555b2..cbc0b8dc3b 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data/basic4.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data/basic4.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.qml b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.qml index 829fbb3e1b..9b911929ce 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.qml b/tests/auto/declarative/qmlvisual/ListView/data/listview.qml index bf640297eb..f48a956179 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data/listview.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data/listview.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/itemlist.qml b/tests/auto/declarative/qmlvisual/ListView/itemlist.qml index 2a0039727a..9f18e96dcb 100644 --- a/tests/auto/declarative/qmlvisual/ListView/itemlist.qml +++ b/tests/auto/declarative/qmlvisual/ListView/itemlist.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$ +** +****************************************************************************/ + // This example demonstrates placing items in a view using // a VisualItemModel diff --git a/tests/auto/declarative/qmlvisual/ListView/listview.qml b/tests/auto/declarative/qmlvisual/ListView/listview.qml index 6e0b47a78c..3f962c8037 100644 --- a/tests/auto/declarative/qmlvisual/ListView/listview.qml +++ b/tests/auto/declarative/qmlvisual/ListView/listview.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.qml b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.qml index 08cb46bcc7..7a4fedbf12 100644 --- a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.qml +++ b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/Package_Views/packageviews.qml b/tests/auto/declarative/qmlvisual/Package_Views/packageviews.qml index 9db0f0df0e..471d56eaae 100644 --- a/tests/auto/declarative/qmlvisual/Package_Views/packageviews.qml +++ b/tests/auto/declarative/qmlvisual/Package_Views/packageviews.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/animation/bindinganimation/bindinganimation.qml b/tests/auto/declarative/qmlvisual/animation/bindinganimation/bindinganimation.qml index 406e10b74f..30b1b8fad9 100644 --- a/tests/auto/declarative/qmlvisual/animation/bindinganimation/bindinganimation.qml +++ b/tests/auto/declarative/qmlvisual/animation/bindinganimation/bindinganimation.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.qml b/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.qml index dbe02761d2..d18b3e9048 100644 --- a/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.qml +++ b/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/animation/colorAnimation/colorAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/colorAnimation/colorAnimation-visual.qml index 49730fc426..ed0296d7de 100644 --- a/tests/auto/declarative/qmlvisual/animation/colorAnimation/colorAnimation-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/colorAnimation/colorAnimation-visual.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data/colorAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/colorAnimation/data/colorAnimation-visual.qml index 9611d279de..2d09d56dcf 100644 --- a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data/colorAnimation-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/colorAnimation/data/colorAnimation-visual.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/animation/easing/data/easing.qml b/tests/auto/declarative/qmlvisual/animation/easing/data/easing.qml index 5923222df9..7be45b2b91 100644 --- a/tests/auto/declarative/qmlvisual/animation/easing/data/easing.qml +++ b/tests/auto/declarative/qmlvisual/animation/easing/data/easing.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/animation/easing/easing.qml b/tests/auto/declarative/qmlvisual/animation/easing/easing.qml index d42f0698c5..e5224e3ac1 100644 --- a/tests/auto/declarative/qmlvisual/animation/easing/easing.qml +++ b/tests/auto/declarative/qmlvisual/animation/easing/easing.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/animation/loop/data/loop.qml b/tests/auto/declarative/qmlvisual/animation/loop/data/loop.qml index 58d0b26565..67481f77c7 100644 --- a/tests/auto/declarative/qmlvisual/animation/loop/data/loop.qml +++ b/tests/auto/declarative/qmlvisual/animation/loop/data/loop.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/animation/loop/loop.qml b/tests/auto/declarative/qmlvisual/animation/loop/loop.qml index 78fbc683d9..d77f4e1d95 100644 --- a/tests/auto/declarative/qmlvisual/animation/loop/loop.qml +++ b/tests/auto/declarative/qmlvisual/animation/loop/loop.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/animation/parallelAnimation/data/parallelAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/parallelAnimation/data/parallelAnimation-visual.qml index 8fd59449ac..e038fe8e90 100644 --- a/tests/auto/declarative/qmlvisual/animation/parallelAnimation/data/parallelAnimation-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/parallelAnimation/data/parallelAnimation-visual.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/animation/parallelAnimation/parallelAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/parallelAnimation/parallelAnimation-visual.qml index 7e0374c7c1..38d25cbe3a 100644 --- a/tests/auto/declarative/qmlvisual/animation/parallelAnimation/parallelAnimation-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/parallelAnimation/parallelAnimation-visual.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 /* diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.qml index edefd01014..13a1337401 100644 --- a/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation/parentAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/parentAnimation/parentAnimation-visual.qml index b30281dca9..ca301be6ff 100644 --- a/tests/auto/declarative/qmlvisual/animation/parentAnimation/parentAnimation-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/parentAnimation/parentAnimation-visual.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 /* diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.qml b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.qml index 9e1b923867..c1ee2594bb 100644 --- a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.qml +++ b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/parentAnimation2.qml b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/parentAnimation2.qml index dfab108abf..7449ae51ee 100644 --- a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/parentAnimation2.qml +++ b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/parentAnimation2.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 /* diff --git a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.qml index 8e1e1d7636..e07d42b5ee 100644 --- a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/pauseAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/pauseAnimation-visual.qml index cc9a639d50..d3b01a1b70 100644 --- a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/pauseAnimation-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/pauseAnimation-visual.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 /* diff --git a/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.qml b/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.qml index 36b39fa678..975bbe982a 100644 --- a/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/animation/propertyAction/propertyAction-visual.qml b/tests/auto/declarative/qmlvisual/animation/propertyAction/propertyAction-visual.qml index 89c2c5be28..5134ca88cc 100644 --- a/tests/auto/declarative/qmlvisual/animation/propertyAction/propertyAction-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/propertyAction/propertyAction-visual.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 /* diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.qml b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.qml index dc8e2e211d..af83a96a17 100644 --- a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.qml +++ b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.qml b/tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.qml index f1a3ef7de0..73c0f473c4 100644 --- a/tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.qml +++ b/tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.qml b/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.qml index b4ee569de4..3bd79eeee8 100644 --- a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.qml +++ b/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/animation/reanchor/reanchor.qml b/tests/auto/declarative/qmlvisual/animation/reanchor/reanchor.qml index 7a10db1ed1..8128be4bdf 100644 --- a/tests/auto/declarative/qmlvisual/animation/reanchor/reanchor.qml +++ b/tests/auto/declarative/qmlvisual/animation/reanchor/reanchor.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.qml b/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.qml index d1de5d089f..0f81257472 100644 --- a/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/animation/scriptAction/scriptAction-visual.qml b/tests/auto/declarative/qmlvisual/animation/scriptAction/scriptAction-visual.qml index 5008356d1c..c28cc1a665 100644 --- a/tests/auto/declarative/qmlvisual/animation/scriptAction/scriptAction-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/scriptAction/scriptAction-visual.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 /* diff --git a/tests/auto/declarative/qmlvisual/fillmode/data/fillmode.qml b/tests/auto/declarative/qmlvisual/fillmode/data/fillmode.qml index b1871ce4e0..c8d0d4e3cd 100644 --- a/tests/auto/declarative/qmlvisual/fillmode/data/fillmode.qml +++ b/tests/auto/declarative/qmlvisual/fillmode/data/fillmode.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/fillmode/fillmode.qml b/tests/auto/declarative/qmlvisual/fillmode/fillmode.qml index 817ccc002e..d7d703c51e 100644 --- a/tests/auto/declarative/qmlvisual/fillmode/fillmode.qml +++ b/tests/auto/declarative/qmlvisual/fillmode/fillmode.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 /* diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.qml b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.qml index ee9a550b02..51bcfb1d86 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test2.qml b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test2.qml index 5d84bfee0f..20176205ce 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test2.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test2.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.qml b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.qml index cd73a3c4a0..390af47e0c 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.qml b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.qml index 8d3620056a..71dfab7584 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test2.qml b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test2.qml index 813665d950..5eed43f61a 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test2.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test2.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.qml b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.qml index 0fba4517ee..aec90da6b3 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test.qml b/tests/auto/declarative/qmlvisual/focusscope/data/test.qml index 460ba1aa6e..26536e8bd2 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/data/test.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/data/test.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test2.qml b/tests/auto/declarative/qmlvisual/focusscope/data/test2.qml index 03ece10d13..826a762297 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/data/test2.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/data/test2.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test3.qml b/tests/auto/declarative/qmlvisual/focusscope/data/test3.qml index dd48e39802..3ec0e86902 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/data/test3.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/data/test3.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/focusscope/test.qml b/tests/auto/declarative/qmlvisual/focusscope/test.qml index d83bad47d3..1bbb5ba470 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/test.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/test.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/focusscope/test2.qml b/tests/auto/declarative/qmlvisual/focusscope/test2.qml index 7a6ed839ee..919a8cb41a 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/test2.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/test2.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/focusscope/test3.qml b/tests/auto/declarative/qmlvisual/focusscope/test3.qml index 7535c31bd4..65310b1b83 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/test3.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/test3.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated-smooth.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated-smooth.qml index fdb4da340f..cb3181e484 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated-smooth.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated-smooth.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 import "content" diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated.qml index 730aeca230..b07777c0d7 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated.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 import "content" diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/borders.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/borders.qml index 89561282c4..ab77110bfe 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/borders.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/borders.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/MyBorderImage.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/MyBorderImage.qml index ce0c38c156..575a9b696d 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/MyBorderImage.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/MyBorderImage.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 Item { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.qml index e974234b6f..dfe14cbcd2 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.qml index 630a6d2ec7..4c839506da 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/borders.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/borders.qml index eb40fcb5ee..86d05cbfe0 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/borders.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/borders.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.qml index 289af88601..35d2ef9bf1 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.qml index a5ca4511ed..3b659b264d 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-horizontal.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-horizontal.qml index 175a891f37..6e7725a13b 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-horizontal.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-horizontal.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-vertical.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-vertical.qml index d845353d2f..15cc0c97a4 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-vertical.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-vertical.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.qml index d2d46e45e9..4a33bcf9f8 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test_flipable_resize.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test_flipable_resize.qml index d1a5ade01f..75282a733b 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test_flipable_resize.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test_flipable_resize.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/test-flipable.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/test-flipable.qml index da76ff98fc..f0b394911f 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/test-flipable.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/test-flipable.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/test_flipable_resize.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/test_flipable_resize.qml index fa68753cb1..6c00ab8c1f 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/test_flipable_resize.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/test_flipable_resize.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 Item { //realWindow width: 370 diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.qml b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.qml index 67aa10a0db..66af525e55 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.qml b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.qml index 1c90af9750..7b88b349ff 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview.qml b/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview.qml index 1b0bd65354..c8db1a9866 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview2.qml b/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview2.qml index 30e2424d7a..1e6c1e2b7a 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview2.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview2.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.qml b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.qml index b88bd8341e..a487acee04 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.qml b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.qml index 307fef68f6..c79c1bf314 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.qml b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.qml index 433fd82242..a33134d75e 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/drag.qml b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/drag.qml index 676264549b..b5776dd045 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/drag.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/drag.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 /* diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-flickable.qml b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-flickable.qml index e223f5e710..701d9f6f64 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-flickable.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-flickable.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-visual.qml b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-visual.qml index a6861880cd..325c54dcfa 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-visual.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-visual.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 /* diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.qml b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.qml index 463edf8fd6..5a9b8dde1c 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/particles.qml b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/particles.qml index 1b64376293..041652db1f 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/particles.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/particles.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 import Qt.labs.particles 1.0 diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.qml b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.qml index 54ef8586ec..3d3f8f11d2 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.qml b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.qml index 9595a5cc5b..4b64e2e278 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview-2.qml b/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview-2.qml index aed6380d54..5fffc20330 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview-2.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview-2.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview.qml b/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview.qml index 3bcab5aa2b..49a66265f5 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.qml b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.qml index 4b36e166ab..de57148e53 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/usingRepeater.qml b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/usingRepeater.qml index b293d702a9..671eeb0302 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/usingRepeater.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/usingRepeater.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/dynamic.qml b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/dynamic.qml index 5981b12db9..1629020b18 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/dynamic.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/dynamic.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 Item { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/usingRepeater.qml b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/usingRepeater.qml index 91895c26ad..c01daff4b4 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/usingRepeater.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/usingRepeater.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 Item{ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.qml b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.qml index 2500ef0d3f..8cc5bc1893 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/smoothedanimation.qml b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/smoothedanimation.qml index d17233e5d6..c78ebf16f1 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/smoothedanimation.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/smoothedanimation.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/smoothedfollow.qml b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/smoothedfollow.qml index 7ca0ca5ac8..255437e87b 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/smoothedfollow.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/smoothedfollow.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/clock.qml b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/clock.qml index d98176379f..4c9d121e26 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/clock.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/clock.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.qml b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.qml index 5da471e04c..91af2b503b 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.qml b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.qml index e7e5b3c48b..6d911c9850 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/follow.qml b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/follow.qml index cabdce7248..9921ac0263 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/follow.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/follow.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data-X11/parentanchor.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data-X11/parentanchor.qml index 880609b674..c0ccc12a35 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data-X11/parentanchor.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data-X11/parentanchor.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data/parentanchor.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data/parentanchor.qml index 880609b674..c0ccc12a35 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data/parentanchor.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data/parentanchor.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml index f04aa6616f..1b82af3d68 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide.qml index 9439f73210..27d3bad330 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.qml index 3e34f04ef0..3341ecfeaa 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/multilength.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/multilength.qml index 76c2ee1d87..11d4ad5320 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/multilength.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/multilength.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.qml index d46051422c..bdc57ce6ad 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.qml index ee06b1a998..cd235c85c6 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide.qml index 3b8ae0c0f7..e71abf2cc3 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.qml index 27fbaf4c1f..e623078557 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide.qml index a4bf45259e..278c4d6f5a 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide2.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide2.qml index 1058b04d3d..2db265af36 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide2.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide2.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/multilength.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/multilength.qml index 2b9c85c916..80c47ee7ed 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/multilength.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/multilength.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext.qml index a39c340e8c..af5fe331de 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext.qml index 8529b926b6..3f64037b57 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.qml index bf3aea6133..b6bcd7c319 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.qml index 4a87240d55..9bcc3cd49a 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext.qml index d948e4a494..cb3d30633c 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext.qml index d10cfd3d1b..0f1d044507 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml index 686dd2cdd3..69ef4217c6 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.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 Rectangle { resources: [ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.qml index 1241d14342..481a16c0dd 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.qml index f1099c8721..f435c29729 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.qml index 1f5b365470..08b868a304 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.qml index ef9ba33b1b..2cc82b4c34 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/qt-669.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/qt-669.qml index 5926e0455b..af74ae2382 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/qt-669.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/qt-669.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.qml index 2e755a4f30..3297c93ed6 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/qt-669.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/qt-669.qml index 277b9fceaa..bb09eadf4a 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/qt-669.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/qt-669.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/wrap.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/wrap.qml index abb446423c..53e99cdbfe 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/wrap.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/wrap.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 Item { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml index 31f24ec048..19415e6125 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.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 Item { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml index 1de2f4f7a7..eee0adb170 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.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 Rectangle { resources: [ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.qml index 208d05f203..2f905f8409 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.qml index b5a48373e3..4b45fcebb0 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.qml index a0351e87fd..18ef7095cf 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.qml index cdc5153eda..24eea504cc 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.qml index a1d998fc46..f55c211b45 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.qml index 707734ab1d..c94a33a6bb 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/hAlign.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/hAlign.qml index a0351e87fd..18ef7095cf 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/hAlign.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/hAlign.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml index 5a12e2ea01..7f228a6a7d 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.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 Item{ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml index 08df173b42..f9fc2bfef6 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.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 Item{ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/usingLineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/usingLineEdit.qml index 24658660d0..5420c2a81e 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/usingLineEdit.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/usingLineEdit.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 Rectangle{ diff --git a/tests/auto/declarative/qmlvisual/rect/GradientRect.qml b/tests/auto/declarative/qmlvisual/rect/GradientRect.qml index 0272f847f7..5e242f0b3e 100644 --- a/tests/auto/declarative/qmlvisual/rect/GradientRect.qml +++ b/tests/auto/declarative/qmlvisual/rect/GradientRect.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 Item { diff --git a/tests/auto/declarative/qmlvisual/rect/MyRect.qml b/tests/auto/declarative/qmlvisual/rect/MyRect.qml index 7a315e8dac..4680561f80 100644 --- a/tests/auto/declarative/qmlvisual/rect/MyRect.qml +++ b/tests/auto/declarative/qmlvisual/rect/MyRect.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 Item { diff --git a/tests/auto/declarative/qmlvisual/rect/data/rect-painting.qml b/tests/auto/declarative/qmlvisual/rect/data/rect-painting.qml index 7c42d1366a..7dc1365dcd 100644 --- a/tests/auto/declarative/qmlvisual/rect/data/rect-painting.qml +++ b/tests/auto/declarative/qmlvisual/rect/data/rect-painting.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/rect/rect-painting.qml b/tests/auto/declarative/qmlvisual/rect/rect-painting.qml index 6abb03d7e2..6d5526c00a 100644 --- a/tests/auto/declarative/qmlvisual/rect/rect-painting.qml +++ b/tests/auto/declarative/qmlvisual/rect/rect-painting.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/repeater/basic1.qml b/tests/auto/declarative/qmlvisual/repeater/basic1.qml index 3d31324b76..c42412567f 100644 --- a/tests/auto/declarative/qmlvisual/repeater/basic1.qml +++ b/tests/auto/declarative/qmlvisual/repeater/basic1.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/repeater/basic2.qml b/tests/auto/declarative/qmlvisual/repeater/basic2.qml index 9cad9eb40f..54cfe106c4 100644 --- a/tests/auto/declarative/qmlvisual/repeater/basic2.qml +++ b/tests/auto/declarative/qmlvisual/repeater/basic2.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/repeater/basic3.qml b/tests/auto/declarative/qmlvisual/repeater/basic3.qml index 634641277a..4b67b7f967 100644 --- a/tests/auto/declarative/qmlvisual/repeater/basic3.qml +++ b/tests/auto/declarative/qmlvisual/repeater/basic3.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/repeater/basic4.qml b/tests/auto/declarative/qmlvisual/repeater/basic4.qml index 817d4387fc..66c2c83b5b 100644 --- a/tests/auto/declarative/qmlvisual/repeater/basic4.qml +++ b/tests/auto/declarative/qmlvisual/repeater/basic4.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 Rectangle { diff --git a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic1.qml b/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic1.qml index d11a9ddc64..b38b3039c7 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic1.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic1.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic2.qml b/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic2.qml index 9b36f60165..fd81159385 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic2.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic2.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic3.qml b/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic3.qml index 9752b72400..382f884e83 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic3.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic3.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic4.qml b/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic4.qml index 8492621d27..9f4fcd0ed4 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic4.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic4.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic1.qml b/tests/auto/declarative/qmlvisual/repeater/data-X11/basic1.qml index f9880f830f..a3af095370 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic1.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data-X11/basic1.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic2.qml b/tests/auto/declarative/qmlvisual/repeater/data-X11/basic2.qml index cc980e1ec0..ecd7a0d2ad 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic2.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data-X11/basic2.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic3.qml b/tests/auto/declarative/qmlvisual/repeater/data-X11/basic3.qml index e395dde5ca..03c108f293 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic3.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data-X11/basic3.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic4.qml b/tests/auto/declarative/qmlvisual/repeater/data-X11/basic4.qml index b0dc6b80c8..e353576da0 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic4.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data-X11/basic4.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/repeater/data/basic1.qml b/tests/auto/declarative/qmlvisual/repeater/data/basic1.qml index f0950d71af..61c3c5dd20 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data/basic1.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data/basic1.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/repeater/data/basic2.qml b/tests/auto/declarative/qmlvisual/repeater/data/basic2.qml index fcf3feebce..748a47c146 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data/basic2.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data/basic2.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/repeater/data/basic3.qml b/tests/auto/declarative/qmlvisual/repeater/data/basic3.qml index 8447aca3b9..94dea47e6d 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data/basic3.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data/basic3.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/repeater/data/basic4.qml b/tests/auto/declarative/qmlvisual/repeater/data/basic4.qml index eeb60fa218..554f4ecbdb 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data/basic4.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data/basic4.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/selftest_noimages/data/selftest_noimages.qml b/tests/auto/declarative/qmlvisual/selftest_noimages/data/selftest_noimages.qml index 70ee988ca7..fdec474bf6 100644 --- a/tests/auto/declarative/qmlvisual/selftest_noimages/data/selftest_noimages.qml +++ b/tests/auto/declarative/qmlvisual/selftest_noimages/data/selftest_noimages.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/selftest_noimages/selftest_noimages.qml b/tests/auto/declarative/qmlvisual/selftest_noimages/selftest_noimages.qml index cd4dab1f1d..538fcfe40b 100644 --- a/tests/auto/declarative/qmlvisual/selftest_noimages/selftest_noimages.qml +++ b/tests/auto/declarative/qmlvisual/selftest_noimages/selftest_noimages.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 Text { property string error: "not pressed" diff --git a/tests/auto/declarative/qmlvisual/webview/autosize/autosize.qml b/tests/auto/declarative/qmlvisual/webview/autosize/autosize.qml index c4a502eb68..d9b56c78b4 100644 --- a/tests/auto/declarative/qmlvisual/webview/autosize/autosize.qml +++ b/tests/auto/declarative/qmlvisual/webview/autosize/autosize.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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.qml b/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.qml index 612213877f..41465909bd 100644 --- a/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.qml +++ b/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.qml b/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.qml index 612213877f..41465909bd 100644 --- a/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.qml +++ b/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/javascript/data/evaluateJavaScript.qml b/tests/auto/declarative/qmlvisual/webview/javascript/data/evaluateJavaScript.qml index bfe40da256..6bc512d0a4 100644 --- a/tests/auto/declarative/qmlvisual/webview/javascript/data/evaluateJavaScript.qml +++ b/tests/auto/declarative/qmlvisual/webview/javascript/data/evaluateJavaScript.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/javascript/data/windowObjects.qml b/tests/auto/declarative/qmlvisual/webview/javascript/data/windowObjects.qml index 07aa13d2d6..9e81afdc9d 100644 --- a/tests/auto/declarative/qmlvisual/webview/javascript/data/windowObjects.qml +++ b/tests/auto/declarative/qmlvisual/webview/javascript/data/windowObjects.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/javascript/evaluateJavaScript.qml b/tests/auto/declarative/qmlvisual/webview/javascript/evaluateJavaScript.qml index 4a72d7f27e..5c66738ae5 100644 --- a/tests/auto/declarative/qmlvisual/webview/javascript/evaluateJavaScript.qml +++ b/tests/auto/declarative/qmlvisual/webview/javascript/evaluateJavaScript.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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qmlvisual/webview/javascript/windowObjects.qml b/tests/auto/declarative/qmlvisual/webview/javascript/windowObjects.qml index 4006b475f7..082ddf33c0 100644 --- a/tests/auto/declarative/qmlvisual/webview/javascript/windowObjects.qml +++ b/tests/auto/declarative/qmlvisual/webview/javascript/windowObjects.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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qmlvisual/webview/settings/data/fontFamily.qml b/tests/auto/declarative/qmlvisual/webview/settings/data/fontFamily.qml index 34d11166e5..b4efd1109f 100644 --- a/tests/auto/declarative/qmlvisual/webview/settings/data/fontFamily.qml +++ b/tests/auto/declarative/qmlvisual/webview/settings/data/fontFamily.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/settings/data/fontSize.qml b/tests/auto/declarative/qmlvisual/webview/settings/data/fontSize.qml index efe38755e8..61f73a7265 100644 --- a/tests/auto/declarative/qmlvisual/webview/settings/data/fontSize.qml +++ b/tests/auto/declarative/qmlvisual/webview/settings/data/fontSize.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/settings/data/noAutoLoadImages.qml b/tests/auto/declarative/qmlvisual/webview/settings/data/noAutoLoadImages.qml index 624a16bd20..59f72af59a 100644 --- a/tests/auto/declarative/qmlvisual/webview/settings/data/noAutoLoadImages.qml +++ b/tests/auto/declarative/qmlvisual/webview/settings/data/noAutoLoadImages.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/settings/data/setFontFamily.qml b/tests/auto/declarative/qmlvisual/webview/settings/data/setFontFamily.qml index 414d64fbe8..19fd47f7bf 100644 --- a/tests/auto/declarative/qmlvisual/webview/settings/data/setFontFamily.qml +++ b/tests/auto/declarative/qmlvisual/webview/settings/data/setFontFamily.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/settings/fontFamily.qml b/tests/auto/declarative/qmlvisual/webview/settings/fontFamily.qml index 2f68f24897..36d41774b5 100644 --- a/tests/auto/declarative/qmlvisual/webview/settings/fontFamily.qml +++ b/tests/auto/declarative/qmlvisual/webview/settings/fontFamily.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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qmlvisual/webview/settings/fontSize.qml b/tests/auto/declarative/qmlvisual/webview/settings/fontSize.qml index c017cd98cd..c031c87e9c 100644 --- a/tests/auto/declarative/qmlvisual/webview/settings/fontSize.qml +++ b/tests/auto/declarative/qmlvisual/webview/settings/fontSize.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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qmlvisual/webview/settings/noAutoLoadImages.qml b/tests/auto/declarative/qmlvisual/webview/settings/noAutoLoadImages.qml index 4f8d3b27a0..274cea3a40 100644 --- a/tests/auto/declarative/qmlvisual/webview/settings/noAutoLoadImages.qml +++ b/tests/auto/declarative/qmlvisual/webview/settings/noAutoLoadImages.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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qmlvisual/webview/settings/setFontFamily.qml b/tests/auto/declarative/qmlvisual/webview/settings/setFontFamily.qml index 42220e4c7d..226c799dcb 100644 --- a/tests/auto/declarative/qmlvisual/webview/settings/setFontFamily.qml +++ b/tests/auto/declarative/qmlvisual/webview/settings/setFontFamily.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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/data/pageWidth.qml b/tests/auto/declarative/qmlvisual/webview/zooming/data/pageWidth.qml index 2e60b7ff89..e3ccd033ef 100644 --- a/tests/auto/declarative/qmlvisual/webview/zooming/data/pageWidth.qml +++ b/tests/auto/declarative/qmlvisual/webview/zooming/data/pageWidth.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/data/renderControl.qml b/tests/auto/declarative/qmlvisual/webview/zooming/data/renderControl.qml index 464e009094..9abf9ca3d9 100644 --- a/tests/auto/declarative/qmlvisual/webview/zooming/data/renderControl.qml +++ b/tests/auto/declarative/qmlvisual/webview/zooming/data/renderControl.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/data/resolution.qml b/tests/auto/declarative/qmlvisual/webview/zooming/data/resolution.qml index edf80401fa..8cc7c0ecc5 100644 --- a/tests/auto/declarative/qmlvisual/webview/zooming/data/resolution.qml +++ b/tests/auto/declarative/qmlvisual/webview/zooming/data/resolution.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/data/zoomTextOnly.qml b/tests/auto/declarative/qmlvisual/webview/zooming/data/zoomTextOnly.qml index 4aab708248..762ad7dbd1 100644 --- a/tests/auto/declarative/qmlvisual/webview/zooming/data/zoomTextOnly.qml +++ b/tests/auto/declarative/qmlvisual/webview/zooming/data/zoomTextOnly.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/data/zooming.qml b/tests/auto/declarative/qmlvisual/webview/zooming/data/zooming.qml index 080d4d05b6..6700686b42 100644 --- a/tests/auto/declarative/qmlvisual/webview/zooming/data/zooming.qml +++ b/tests/auto/declarative/qmlvisual/webview/zooming/data/zooming.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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/pageWidth.qml b/tests/auto/declarative/qmlvisual/webview/zooming/pageWidth.qml index c9e3c02571..b104cfc0d4 100644 --- a/tests/auto/declarative/qmlvisual/webview/zooming/pageWidth.qml +++ b/tests/auto/declarative/qmlvisual/webview/zooming/pageWidth.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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/renderControl.qml b/tests/auto/declarative/qmlvisual/webview/zooming/renderControl.qml index 81746060bb..765a29dbd2 100644 --- a/tests/auto/declarative/qmlvisual/webview/zooming/renderControl.qml +++ b/tests/auto/declarative/qmlvisual/webview/zooming/renderControl.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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/resolution.qml b/tests/auto/declarative/qmlvisual/webview/zooming/resolution.qml index b2638f9031..aa4da43cfe 100644 --- a/tests/auto/declarative/qmlvisual/webview/zooming/resolution.qml +++ b/tests/auto/declarative/qmlvisual/webview/zooming/resolution.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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/zoomTextOnly.qml b/tests/auto/declarative/qmlvisual/webview/zooming/zoomTextOnly.qml index bf7f9ff93f..943f654655 100644 --- a/tests/auto/declarative/qmlvisual/webview/zooming/zoomTextOnly.qml +++ b/tests/auto/declarative/qmlvisual/webview/zooming/zoomTextOnly.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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/zooming.qml b/tests/auto/declarative/qmlvisual/webview/zooming/zooming.qml index 5b4dd7af44..8d51e4c10a 100644 --- a/tests/auto/declarative/qmlvisual/webview/zooming/zooming.qml +++ b/tests/auto/declarative/qmlvisual/webview/zooming/zooming.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 import org.webkit 1.0 -- cgit v1.2.1 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(+) (limited to 'tests/auto') diff --git a/tests/auto/qhttpnetworkconnection/qhttpnetworkconnection.pro b/tests/auto/qhttpnetworkconnection/qhttpnetworkconnection.pro index 0021bc1d28..7746642bdb 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 v1.2.1 From 25e2e372e43374c4f161c06e48f62e738b968370 Mon Sep 17 00:00:00 2001 From: Joona Petrell Date: Fri, 21 May 2010 18:00:43 +1000 Subject: Fix FolderListModel parentFolder property's file drive handling Task-number: QT-3315 Reviewed-by: Martin Jones --- tests/auto/declarative/declarative.pro | 1 + .../qdeclarativefolderlistmodel/tst_qdeclarativefolderlistmodel.cpp | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/declarative.pro b/tests/auto/declarative/declarative.pro index 4bb351860a..484fbef142 100644 --- a/tests/auto/declarative/declarative.pro +++ b/tests/auto/declarative/declarative.pro @@ -24,6 +24,7 @@ SUBDIRS += \ qdeclarativeecmascript \ qdeclarativeengine \ qdeclarativeerror \ + qdeclarativefolderlistmodel \ qdeclarativefontloader \ qdeclarativeflickable \ qdeclarativeflipable \ diff --git a/tests/auto/declarative/qdeclarativefolderlistmodel/tst_qdeclarativefolderlistmodel.cpp b/tests/auto/declarative/qdeclarativefolderlistmodel/tst_qdeclarativefolderlistmodel.cpp index 8a8bfe7789..3cf9613b96 100644 --- a/tests/auto/declarative/qdeclarativefolderlistmodel/tst_qdeclarativefolderlistmodel.cpp +++ b/tests/auto/declarative/qdeclarativefolderlistmodel/tst_qdeclarativefolderlistmodel.cpp @@ -93,7 +93,6 @@ void tst_qdeclarativefolderlistmodel::basicProperties() QAbstractListModel *flm = qobject_cast(component.create()); QVERIFY(flm != 0); - flm->setProperty("folder",QUrl::fromLocalFile(SRCDIR "/data")); QTRY_COMPARE(flm->property("count").toInt(),2); // wait for refresh QCOMPARE(flm->property("folder").toUrl(), QUrl::fromLocalFile(SRCDIR "/data")); @@ -105,7 +104,10 @@ void tst_qdeclarativefolderlistmodel::basicProperties() QCOMPARE(flm->property("showDotAndDotDot").toBool(), false); QCOMPARE(flm->property("showOnlyReadable").toBool(), false); QCOMPARE(flm->data(flm->index(0),FileNameRole).toString(), QLatin1String("basic.qml")); - QCOMPARE(flm->data(flm->index(1),FileNameRole).toString(), QLatin1String("dummy.qml")); + QCOMPARE(flm->data(flm->index(1),FileNameRole).toString(), QLatin1String("dummy.qml")); + + flm->setProperty("folder",QUrl::fromLocalFile("")); + QCOMPARE(flm->property("folder").toUrl(), QUrl::fromLocalFile("")); } QTEST_MAIN(tst_qdeclarativefolderlistmodel) -- cgit v1.2.1 From e5e40e6eb10e6760c6fac3673aa0a5afe074ae9b Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Fri, 21 May 2010 10:38:40 +0200 Subject: Revert "Deselect the current selection when the QItemSelectionModel::model is reset." This reverts commit 2c1d1c136102a17eef9ae3c4e9f0cf01338306ae. Regressions: TESTCASE_FAIL qtreeview (pulse_win32-msvc2005_windows_xp) TESTCASE_FAIL qtreeview (pulse_win32-msvc2008_windows_xp) TESTCASE_FAIL qtreewidget (pulse_win32-msvc2005_windows_xp) TESTCASE_FAIL qtreewidget (pulse_win32-msvc2008_windows_xp) TESTFUNCTION_FAIL qitemselectionmodel::unselectable (pulse_linux-g++) TESTFUNCTION_FAIL qitemselectionmodel::unselectable (pulse_qws/linux-x86-g++) TESTFUNCTION_FAIL qsortfilterproxymodel::testMultipleProxiesWithSelection (pulse_linux-g++) TESTFUNCTION_FAIL qsortfilterproxymodel::testMultipleProxiesWithSelection (pulse_macx-g++_cocoa_32) TESTFUNCTION_FAIL qsortfilterproxymodel::testMultipleProxiesWithSelection (pulse_qws/linux-x86-g++) TESTFUNCTION_FAIL qsortfilterproxymodel::testMultipleProxiesWithSelection (pulse_win32-msvc2005_windows_xp) TESTFUNCTION_FAIL qsortfilterproxymodel::testMultipleProxiesWithSelection (pulse_win32-msvc2008_windows_xp) TESTFUNCTION_FAIL qtreeview::taskQTBUG_6450_selectAllWith1stColumnHidden (pulse_linux-g++) TESTFUNCTION_FAIL qtreeview::taskQTBUG_6450_selectAllWith1stColumnHidden (pulse_qws/linux-x86-g++) TESTFUNCTION_FAIL qtreeview::taskQTBUG_6450_selectAllWith1stColumnHidden (pulse_win32-msvc2005_windows_xp) TESTFUNCTION_FAIL qtreeview::taskQTBUG_6450_selectAllWith1stColumnHidden (pulse_win32-msvc2008_windows_xp) TESTFUNCTION_FAIL qtreewidget::task191552_rtl (pulse_linux-g++) TESTFUNCTION_FAIL qtreewidget::task203673_selection (pulse_qws/linux-x86-g++) TESTFUNCTION_FAIL qtreewidget::task203673_selection (pulse_win32-msvc2005_windows_xp) TESTFUNCTION_FAIL qtreewidget::task203673_selection (pulse_win32-msvc2008_windows_xp) --- .../tst_qitemselectionmodel.cpp | 47 ++-------------------- 1 file changed, 4 insertions(+), 43 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qitemselectionmodel/tst_qitemselectionmodel.cpp b/tests/auto/qitemselectionmodel/tst_qitemselectionmodel.cpp index 9858829936..3b2a7167c0 100644 --- a/tests/auto/qitemselectionmodel/tst_qitemselectionmodel.cpp +++ b/tests/auto/qitemselectionmodel/tst_qitemselectionmodel.cpp @@ -1536,43 +1536,6 @@ public: inline void reset() { QStandardItemModel::reset(); } }; -class ResetObserver : public QObject -{ - QItemSelectionModel * const m_selectionModel; - QItemSelection m_selection; - Q_OBJECT -public: - ResetObserver(QItemSelectionModel *selectionModel) - : m_selectionModel(selectionModel) - { - connect(selectionModel->model(), SIGNAL(modelAboutToBeReset()),SLOT(modelAboutToBeReset())); - connect(selectionModel, SIGNAL(selectionChanged(QItemSelection,QItemSelection)), SLOT(selectionChanged(QItemSelection,QItemSelection))); - connect(selectionModel->model(), SIGNAL(modelReset()),SLOT(modelReset())); - } - -private slots: - void modelAboutToBeReset() - { - m_selection = m_selectionModel->selection(); - foreach(const QItemSelectionRange &range, m_selection) - { - QVERIFY(range.isValid()); - } - } - - void selectionChanged(const QItemSelection &selected, const QItemSelection &deselected) - { - qDebug() << deselected << selected; - QCOMPARE(m_selection, deselected); - m_selection.clear(); - } - - void modelReset() - { - QVERIFY(m_selectionModel->selection().isEmpty()); - } -}; - void tst_QItemSelectionModel::resetModel() { MyStandardItemModel model(20, 20); @@ -1592,13 +1555,11 @@ void tst_QItemSelectionModel::resetModel() view.selectionModel()->select(QItemSelection(model.index(0, 0), model.index(5, 5)), QItemSelectionModel::Select); - // We get this signal three times. Twice in this test method and once because the source reset causes the current selection to - // be deselected. - QCOMPARE(spy.count(), 3); - QCOMPARE(spy.at(2).count(), 2); + QCOMPARE(spy.count(), 2); + QCOMPARE(spy.at(1).count(), 2); // make sure we don't get an "old selection" - QCOMPARE(spy.at(2).at(1).userType(), qMetaTypeId()); - QVERIFY(qvariant_cast(spy.at(2).at(1)).isEmpty()); + QCOMPARE(spy.at(1).at(1).userType(), qMetaTypeId()); + QVERIFY(qvariant_cast(spy.at(1).at(1)).isEmpty()); } void tst_QItemSelectionModel::removeRows_data() -- cgit v1.2.1 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(-) (limited to 'tests/auto') diff --git a/tests/auto/qsslkey/qsslkey.pro b/tests/auto/qsslkey/qsslkey.pro index 32138f84f9..a78e184d1a 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 3c8ae11b2c..0e39919d6c 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 v1.2.1 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 (limited to 'tests/auto') 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 0000000000..fc448c7ba0 --- /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 0000000000..2a12cc2225 --- /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 0000000000..c41d8c15ce --- /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 0000000000..effd7c7af3 --- /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 0000000000..fdc64afeff --- /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 0000000000..177e065c39 --- /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 0000000000..d430a84291 --- /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 0000000000..349907e1e7 --- /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 0000000000..601eab8d74 --- /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 0000000000..4e545bc167 --- /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 0000000000..2c50e2e144 --- /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 0000000000..26d6d9c6ab --- /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 0000000000..176b6f3c44 --- /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 0000000000..610b296137 --- /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 0000000000..c5e6bf29e5 --- /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 0000000000..2cd8122572 --- /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 0000000000..e771119b70 --- /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 0000000000..563623fe8c --- /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 0000000000..3cc35fadb1 --- /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 0000000000..813ae560a6 --- /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 0000000000..0f22bebce9 --- /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 0000000000..49e295c284 --- /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 0000000000..2115a2aead --- /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 0000000000..e9a7947903 --- /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 0000000000..11bb2fd489 --- /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 0000000000..43c65197e8 --- /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 0000000000..124576f269 --- /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 0000000000..b516bf9e39 --- /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 0000000000..96f0d819ba --- /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 0000000000..eba780ad10 --- /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 0000000000..f0916aa3a2 --- /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 0000000000..65c885df8d --- /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 0000000000..a08062de56 --- /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 0000000000..08dbee8992 --- /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 0000000000..b96209907c --- /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 v1.2.1 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 --- tests/auto/qmenu/tst_qmenu.cpp | 54 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qmenu/tst_qmenu.cpp b/tests/auto/qmenu/tst_qmenu.cpp index 9dc18e0f3f..63e7310d3e 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 v1.2.1 From 1a0c51ffed4f7d86620b00adc3e22d044deef0c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Nilsen?= Date: Tue, 11 May 2010 19:06:12 +0200 Subject: Fixes QGraphicsItem::scroll issues The biggest and most important issue was that QGraphicsItem::scroll always accelerated the scroll without taking overlapping items or opacity into account, which caused drawing artifacts. We can only do accelerated scrolling if the item is opaque and not overlapped by other items. There's no (sane) way to detect whether an item is opaque or not (similar to Qt::WA_OpaquePaintEvent), which means we cannot support accelerated scrolling unless the item is cached into a pixmap (QGraphicsItem::setCacheMode). The second issue was that QStyleOptionGraphicsItem::exposedRect always contained the whole boundinRect() after an accelerated scroll (even with the QGraphicsItem::ItemUsesExtendedStyleOption flag enabled). Auto test included. Task-number: QTBUG-8378, QTBUG-7703 Reviewed-by: yoann --- tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp | 85 +++++++++++++++++++++++++- 1 file changed, 84 insertions(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp b/tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp index 5a5a821424..300afc3ffe 100644 --- a/tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp +++ b/tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp @@ -236,11 +236,12 @@ public: QRectF boundingRect() const { return br; } - void paint(QPainter *painter, const QStyleOptionGraphicsItem *, QWidget *) + void paint(QPainter *painter, const QStyleOptionGraphicsItem *o, QWidget *) { hints = painter->renderHints(); painter->setBrush(brush); painter->drawRect(boundingRect()); + lastExposedRect = o->exposedRect; ++repaints; } @@ -250,10 +251,19 @@ public: return QGraphicsItem::sceneEvent(event); } + void reset() + { + events.clear(); + hints = QPainter::RenderHints(0); + repaints = 0; + lastExposedRect = QRectF(); + } + QList events; QPainter::RenderHints hints; int repaints; QRectF br; + QRectF lastExposedRect; QBrush brush; }; @@ -430,6 +440,7 @@ private slots: void scenePosChange(); void updateMicroFocus(); void textItem_shortcuts(); + void scroll(); // task specific tests below me void task141694_textItemEnsureVisible(); @@ -10155,6 +10166,78 @@ void tst_QGraphicsItem::textItem_shortcuts() QTRY_COMPARE(item->textCursor().selectedText(), item->toPlainText()); } +void tst_QGraphicsItem::scroll() +{ + // Create two overlapping rectangles in the scene: + // +-------+ + // | | <- item1 + // | +-------+ + // | | | + // +---| | <- item2 + // | | + // +-------+ + + EventTester *item1 = new EventTester; + item1->br = QRectF(0, 0, 200, 200); + item1->brush = Qt::red; + item1->setFlag(QGraphicsItem::ItemUsesExtendedStyleOption); + + EventTester *item2 = new EventTester; + item2->br = QRectF(0, 0, 200, 200); + item2->brush = Qt::blue; + item2->setFlag(QGraphicsItem::ItemUsesExtendedStyleOption); + item2->setPos(100, 100); + + QGraphicsScene scene(0, 0, 300, 300); + scene.addItem(item1); + scene.addItem(item2); + + MyGraphicsView view(&scene); + view.setFrameStyle(0); + view.show(); + QTest::qWaitForWindowShown(&view); + QTRY_VERIFY(view.repaints > 0); + + view.reset(); + item1->reset(); + item2->reset(); + + const QRectF item1BoundingRect = item1->boundingRect(); + const QRectF item2BoundingRect = item2->boundingRect(); + + // Scroll item1: + // Item1 should get full exposure + // Item2 should get exposure for the part that overlaps item1. + item1->scroll(0, -10); + QTRY_VERIFY(view.repaints > 0); + QCOMPARE(item1->lastExposedRect, item1BoundingRect); + + QRectF expectedItem2Expose = item2BoundingRect; + // NB! Adjusted by 2 pixels for antialiasing + expectedItem2Expose &= item1->mapRectToItem(item2, item1BoundingRect.adjusted(-2, -2, 2, 2)); + QCOMPARE(item2->lastExposedRect, expectedItem2Expose); + + // Enable ItemCoordinateCache on item1. + view.reset(); + item1->setCacheMode(QGraphicsItem::ItemCoordinateCache); + QTRY_VERIFY(view.repaints > 0); + view.reset(); + item1->reset(); + item2->reset(); + + // Scroll item1: + // Item1 should only get expose for the newly exposed area (accelerated scroll). + // Item2 should get exposure for the part that overlaps item1. + item1->scroll(0, -10, QRectF(50, 50, 100, 100)); + QTRY_VERIFY(view.repaints > 0); + QCOMPARE(item1->lastExposedRect, QRectF(50, 140, 100, 10)); + + expectedItem2Expose = item2BoundingRect; + // NB! Adjusted by 2 pixels for antialiasing + expectedItem2Expose &= item1->mapRectToItem(item2, QRectF(50, 50, 100, 100).adjusted(-2, -2, 2, 2)); + QCOMPARE(item2->lastExposedRect, expectedItem2Expose); +} + void tst_QGraphicsItem::QTBUG_5418_textItemSetDefaultColor() { struct Item : public QGraphicsTextItem -- cgit v1.2.1 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(-) (limited to 'tests/auto') diff --git a/tests/auto/bic/gen.sh b/tests/auto/bic/gen.sh index 8005880317..7bcad24000 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: Mon, 24 May 2010 09:31:20 +1000 Subject: Remove license headers from test data. Partial revert of d5a86d924bfe331aeba6465b0f249cd27ef83ad4 --- tests/auto/declarative/examples/data/dummytest.qml | 40 --------------------- .../examples/data/webbrowser/webbrowser.qml | 40 --------------------- .../qdeclarativeanchors/data/anchors.qml | 41 ---------------------- .../data/anchorsqgraphicswidget.qml | 41 ---------------------- .../qdeclarativeanchors/data/centerin.qml | 41 ---------------------- .../qdeclarativeanchors/data/crash1.qml | 41 ---------------------- .../declarative/qdeclarativeanchors/data/fill.qml | 41 ---------------------- .../declarative/qdeclarativeanchors/data/loop1.qml | 41 ---------------------- .../declarative/qdeclarativeanchors/data/loop2.qml | 41 ---------------------- .../qdeclarativeanchors/data/margins.qml | 41 ---------------------- .../qdeclarativeanimatedimage/data/colors.qml | 41 ---------------------- .../qdeclarativeanimatedimage/data/stickman.qml | 41 ---------------------- .../data/stickmanerror1.qml | 41 ---------------------- .../data/stickmanpause.qml | 41 ---------------------- .../data/stickmanscaled.qml | 41 ---------------------- .../data/stickmanstopped.qml | 41 ---------------------- .../qdeclarativeanimations/data/attached.qml | 41 ---------------------- .../qdeclarativeanimations/data/badproperty1.qml | 41 ---------------------- .../qdeclarativeanimations/data/badproperty2.qml | 41 ---------------------- .../qdeclarativeanimations/data/badtype1.qml | 41 ---------------------- .../qdeclarativeanimations/data/badtype2.qml | 41 ---------------------- .../qdeclarativeanimations/data/badtype3.qml | 41 ---------------------- .../qdeclarativeanimations/data/badtype4.qml | 41 ---------------------- .../qdeclarativeanimations/data/dontAutoStart.qml | 41 ---------------------- .../qdeclarativeanimations/data/dontStart.qml | 41 ---------------------- .../qdeclarativeanimations/data/dontStart2.qml | 41 ---------------------- .../qdeclarativeanimations/data/dotproperty.qml | 41 ---------------------- .../qdeclarativeanimations/data/mixedtype1.qml | 41 ---------------------- .../qdeclarativeanimations/data/mixedtype2.qml | 41 ---------------------- .../qdeclarativeanimations/data/properties.qml | 41 ---------------------- .../qdeclarativeanimations/data/properties2.qml | 41 ---------------------- .../qdeclarativeanimations/data/properties3.qml | 41 ---------------------- .../qdeclarativeanimations/data/properties4.qml | 41 ---------------------- .../qdeclarativeanimations/data/properties5.qml | 41 ---------------------- .../data/propertiesTransition.qml | 41 ---------------------- .../data/propertiesTransition2.qml | 41 ---------------------- .../data/propertiesTransition3.qml | 41 ---------------------- .../data/propertiesTransition4.qml | 41 ---------------------- .../data/propertiesTransition5.qml | 41 ---------------------- .../data/propertiesTransition6.qml | 41 ---------------------- .../qdeclarativeanimations/data/rotation.qml | 41 ---------------------- .../qdeclarativeanimations/data/valuesource.qml | 41 ---------------------- .../qdeclarativeanimations/data/valuesource2.qml | 41 ---------------------- .../qdeclarativebehaviors/data/binding.qml | 41 ---------------------- .../qdeclarativebehaviors/data/color.qml | 41 ---------------------- .../qdeclarativebehaviors/data/cpptrigger.qml | 41 ---------------------- .../qdeclarativebehaviors/data/disabled.qml | 41 ---------------------- .../qdeclarativebehaviors/data/dontStart.qml | 41 ---------------------- .../qdeclarativebehaviors/data/empty.qml | 41 ---------------------- .../qdeclarativebehaviors/data/explicit.qml | 41 ---------------------- .../qdeclarativebehaviors/data/groupProperty.qml | 41 ---------------------- .../qdeclarativebehaviors/data/groupProperty2.qml | 41 ---------------------- .../qdeclarativebehaviors/data/loop.qml | 41 ---------------------- .../qdeclarativebehaviors/data/nonSelecting2.qml | 41 ---------------------- .../qdeclarativebehaviors/data/parent.qml | 41 ---------------------- .../data/reassignedAnimation.qml | 41 ---------------------- .../qdeclarativebehaviors/data/scripttrigger.qml | 41 ---------------------- .../qdeclarativebehaviors/data/simple.qml | 41 ---------------------- .../qdeclarativebehaviors/data/startup.qml | 41 ---------------------- .../qdeclarativebehaviors/data/startup2.qml | 41 ---------------------- .../qdeclarativebinding/data/test-binding.qml | 41 ---------------------- .../qdeclarativebinding/data/test-binding2.qml | 41 ---------------------- .../data/connection-targetchange.qml | 41 ---------------------- .../data/connection-unknownsignals-ignored.qml | 41 ---------------------- .../data/connection-unknownsignals-notarget.qml | 41 ---------------------- .../data/connection-unknownsignals-parent.qml | 41 ---------------------- .../data/connection-unknownsignals.qml | 41 ---------------------- .../data/test-connection.qml | 41 ---------------------- .../data/test-connection2.qml | 41 ---------------------- .../data/test-connection3.qml | 41 ---------------------- .../qdeclarativeconnection/data/trimming.qml | 41 ---------------------- .../qdeclarativedom/data/MyComponent.qml | 41 ---------------------- .../declarative/qdeclarativedom/data/MyItem.qml | 41 ---------------------- .../qdeclarativedom/data/import/Bar.qml | 41 ---------------------- .../qdeclarativedom/data/importlib/sublib/Foo.qml | 41 ---------------------- .../auto/declarative/qdeclarativedom/data/top.qml | 41 ---------------------- .../data/ConstantsOverrideBindings.qml | 41 ---------------------- .../qdeclarativeecmascript/data/CustomObject.qml | 41 ---------------------- .../qdeclarativeecmascript/data/MethodsObject.qml | 41 ---------------------- .../data/NestedTypeTransientErrors.qml | 41 ---------------------- .../qdeclarativeecmascript/data/ScopeObject.qml | 41 ---------------------- .../data/SpuriousWarning.qml | 41 ---------------------- .../data/TypeForDynamicCreation.qml | 41 ---------------------- .../data/aliasPropertyAndBinding.qml | 41 ---------------------- .../data/assignBasicTypes.2.qml | 41 ---------------------- .../data/assignBasicTypes.qml | 41 ---------------------- .../data/attachedProperty.qml | 41 ---------------------- .../data/attachedPropertyScope.qml | 41 ---------------------- .../qdeclarativeecmascript/data/bindingLoop.qml | 41 ---------------------- .../data/boolPropertiesEvaluateAsBool.1.qml | 41 ---------------------- .../data/boolPropertiesEvaluateAsBool.2.qml | 41 ---------------------- .../qdeclarativeecmascript/data/bug.1.qml | 41 ---------------------- .../data/canAssignNullToQObject.1.qml | 41 ---------------------- .../data/canAssignNullToQObject.2.qml | 41 ---------------------- .../qdeclarativeecmascript/data/compiled.qml | 41 ---------------------- .../data/compositePropertyType.qml | 41 ---------------------- .../data/constantsOverrideBindings.1.qml | 41 ---------------------- .../data/constantsOverrideBindings.2.qml | 41 ---------------------- .../data/constantsOverrideBindings.3.qml | 41 ---------------------- .../data/declarativeToString.qml | 41 ---------------------- .../data/deferredProperties.qml | 41 ---------------------- .../data/deferredPropertiesErrors.qml | 41 ---------------------- .../qdeclarativeecmascript/data/deletedEngine.qml | 41 ---------------------- .../qdeclarativeecmascript/data/deletedObject.qml | 41 ---------------------- .../data/dynamicCreation.helper.qml | 41 ---------------------- .../data/dynamicCreation.qml | 41 ---------------------- .../data/dynamicDeletion.qml | 41 ---------------------- .../qdeclarativeecmascript/data/enums.1.qml | 41 ---------------------- .../qdeclarativeecmascript/data/enums.2.qml | 41 ---------------------- .../qdeclarativeecmascript/data/eval.qml | 41 ---------------------- .../data/exceptionClearsOnReeval.qml | 41 ---------------------- .../data/exceptionProducesWarning.qml | 41 ---------------------- .../data/exceptionProducesWarning2.qml | 41 ---------------------- .../data/extendedObjectPropertyLookup.qml | 41 ---------------------- .../data/extensionObjects.qml | 41 ---------------------- .../data/extensionObjectsPropertyOverride.qml | 41 ---------------------- .../qdeclarativeecmascript/data/function.qml | 41 ---------------------- .../data/functionAssignment.1.qml | 41 ---------------------- .../data/functionAssignment.2.qml | 41 ---------------------- .../qdeclarativeecmascript/data/functionErrors.qml | 41 ---------------------- .../data/idShortcutInvalidates.1.qml | 41 ---------------------- .../data/idShortcutInvalidates.qml | 41 ---------------------- .../qdeclarativeecmascript/data/include.qml | 41 ---------------------- .../data/include_callback.qml | 41 ---------------------- .../qdeclarativeecmascript/data/include_pragma.qml | 41 ---------------------- .../qdeclarativeecmascript/data/include_remote.qml | 41 ---------------------- .../data/include_remote_missing.qml | 41 ---------------------- .../qdeclarativeecmascript/data/include_shared.qml | 41 ---------------------- .../qdeclarativeecmascript/data/jsObject.qml | 41 ---------------------- .../data/libraryScriptAssert.qml | 41 ---------------------- .../qdeclarativeecmascript/data/listProperties.qml | 41 ---------------------- .../qdeclarativeecmascript/data/listToVariant.qml | 41 ---------------------- .../qdeclarativeecmascript/data/methods.1.qml | 41 ---------------------- .../qdeclarativeecmascript/data/methods.2.qml | 41 ---------------------- .../qdeclarativeecmascript/data/methods.3.qml | 41 ---------------------- .../qdeclarativeecmascript/data/methods.4.qml | 41 ---------------------- .../qdeclarativeecmascript/data/methods.5.qml | 41 ---------------------- .../data/multiEngineObject.qml | 41 ---------------------- .../data/noSpuriousWarningsAtShutdown.2.qml | 41 ---------------------- .../data/noSpuriousWarningsAtShutdown.qml | 41 ---------------------- .../data/nonExistantAttachedObject.qml | 41 ---------------------- .../data/nullObjectBinding.qml | 41 ---------------------- .../data/numberAssignment.qml | 41 ---------------------- .../data/objectsCompareAsEqual.qml | 41 ---------------------- .../data/outerBindingOverridesInnerBinding.qml | 41 ---------------------- .../qdeclarativeecmascript/data/ownership.qml | 41 ---------------------- .../data/propertyAssignmentErrors.qml | 41 ---------------------- .../data/qlistqobjectMethods.qml | 41 ---------------------- .../qdeclarativeecmascript/data/qtbug_10696.qml | 41 ---------------------- .../qdeclarativeecmascript/data/qtbug_9792.qml | 41 ---------------------- .../data/qtcreatorbug_1289.qml | 41 ---------------------- .../qdeclarativeecmascript/data/regExp.qml | 41 ---------------------- .../qdeclarativeecmascript/data/scope.2.qml | 41 ---------------------- .../qdeclarativeecmascript/data/scope.3.qml | 41 ---------------------- .../qdeclarativeecmascript/data/scope.4.qml | 41 ---------------------- .../qdeclarativeecmascript/data/scope.qml | 41 ---------------------- .../data/scriptConnect.1.qml | 41 ---------------------- .../data/scriptConnect.2.qml | 41 ---------------------- .../data/scriptConnect.3.qml | 41 ---------------------- .../data/scriptConnect.4.qml | 41 ---------------------- .../data/scriptConnect.5.qml | 41 ---------------------- .../data/scriptConnect.6.qml | 41 ---------------------- .../data/scriptDisconnect.1.qml | 41 ---------------------- .../data/scriptDisconnect.2.qml | 41 ---------------------- .../data/scriptDisconnect.3.qml | 41 ---------------------- .../data/scriptDisconnect.4.qml | 41 ---------------------- .../qdeclarativeecmascript/data/scriptErrors.qml | 41 ---------------------- .../data/selfDeletingBinding.2.qml | 41 ---------------------- .../data/selfDeletingBinding.qml | 41 ---------------------- .../qdeclarativeecmascript/data/shutdownErrors.qml | 41 ---------------------- .../data/signalAssignment.1.qml | 41 ---------------------- .../data/signalAssignment.2.qml | 41 ---------------------- .../data/signalParameterTypes.qml | 41 ---------------------- .../data/signalTriggeredBindings.qml | 41 ---------------------- .../qdeclarativeecmascript/data/strictlyEquals.qml | 41 ---------------------- .../data/transientErrors.2.qml | 41 ---------------------- .../data/transientErrors.qml | 41 ---------------------- .../data/undefinedResetsProperty.2.qml | 41 ---------------------- .../data/undefinedResetsProperty.qml | 41 ---------------------- .../data/valueTypeFunctions.qml | 41 ---------------------- .../data/variantsAssignedUndefined.qml | 41 ---------------------- .../qdeclarativeflickable/data/flickable01.qml | 41 ---------------------- .../qdeclarativeflickable/data/flickable02.qml | 41 ---------------------- .../qdeclarativeflickable/data/flickable03.qml | 41 ---------------------- .../qdeclarativeflickable/data/flickable04.qml | 41 ---------------------- .../qdeclarativeflipable/data/crash.qml | 41 ---------------------- .../qdeclarativeflipable/data/flipable-abort.qml | 41 ---------------------- .../qdeclarativeflipable/data/test-flipable.qml | 41 ---------------------- .../qdeclarativefocusscope/data/forcefocus.qml | 41 ---------------------- .../qdeclarativefocusscope/data/test.qml | 41 ---------------------- .../qdeclarativefocusscope/data/test2.qml | 41 ---------------------- .../qdeclarativefocusscope/data/test3.qml | 41 ---------------------- .../qdeclarativefocusscope/data/test4.qml | 41 ---------------------- .../qdeclarativefocusscope/data/test5.qml | 41 ---------------------- .../qdeclarativefolderlistmodel/data/basic.qml | 41 ---------------------- .../qdeclarativefolderlistmodel/data/dummy.qml | 41 ---------------------- .../qdeclarativegridview/data/displaygrid.qml | 41 ---------------------- .../data/gridview-enforcerange.qml | 41 ---------------------- .../data/gridview-initCurrent.qml | 41 ---------------------- .../qdeclarativegridview/data/gridview1.qml | 41 ---------------------- .../qdeclarativegridview/data/gridview2.qml | 41 ---------------------- .../qdeclarativegridview/data/gridview3.qml | 41 ---------------------- .../qdeclarativegridview/data/manual-highlight.qml | 41 ---------------------- .../data/propertychangestest.qml | 41 ---------------------- .../qdeclarativegridview/data/setindex.qml | 41 ---------------------- .../qdeclarativeimage/data/aspectratio.qml | 41 ---------------------- .../declarative/qdeclarativeimage/data/tiling.qml | 41 ---------------------- .../qdeclarativeinfo/data/NestedObject.qml | 41 ---------------------- .../qdeclarativeinfo/data/nestedQmlObject.qml | 41 ---------------------- .../qdeclarativeinfo/data/qmlObject.qml | 41 ---------------------- .../qdeclarativeitem/data/childrenProperty.qml | 41 ---------------------- .../qdeclarativeitem/data/childrenRect.qml | 41 ---------------------- .../qdeclarativeitem/data/keynavigationtest.qml | 41 ---------------------- .../qdeclarativeitem/data/keyspriority.qml | 41 ---------------------- .../declarative/qdeclarativeitem/data/keystest.qml | 41 ---------------------- .../qdeclarativeitem/data/mapCoordinates.qml | 41 ---------------------- .../qdeclarativeitem/data/mouseFocus.qml | 41 ---------------------- .../qdeclarativeitem/data/propertychanges.qml | 41 ---------------------- .../qdeclarativeitem/data/resourcesProperty.qml | 41 ---------------------- .../qdeclarativelanguage/data/Alias.qml | 41 ---------------------- .../qdeclarativelanguage/data/Alias2.qml | 41 ---------------------- .../qdeclarativelanguage/data/Alias3.qml | 41 ---------------------- .../qdeclarativelanguage/data/Alias4.qml | 41 ---------------------- .../data/ComponentComposite.qml | 41 ---------------------- .../qdeclarativelanguage/data/CompositeType.qml | 41 ---------------------- .../qdeclarativelanguage/data/CompositeType2.qml | 41 ---------------------- .../qdeclarativelanguage/data/CompositeType3.qml | 41 ---------------------- .../qdeclarativelanguage/data/CompositeType4.qml | 41 ---------------------- .../data/DynamicPropertiesNestedType.qml | 41 ---------------------- .../qdeclarativelanguage/data/HelperAlias.qml | 41 ---------------------- .../declarative/qdeclarativelanguage/data/I18n.qml | 41 ---------------------- .../qdeclarativelanguage/data/I18nType30.qml | 41 ---------------------- .../qdeclarativelanguage/data/LocalLast.qml | 41 ---------------------- .../qdeclarativelanguage/data/MyComponent.qml | 41 ---------------------- .../data/MyCompositeValueSource.qml | 41 ---------------------- .../data/MyContainerComponent.qml | 41 ---------------------- .../qdeclarativelanguage/data/NestedAlias.qml | 41 ---------------------- .../qdeclarativelanguage/data/NestedErrorsType.qml | 41 ---------------------- .../qdeclarativelanguage/data/OnCompletedType.qml | 41 ---------------------- .../data/OnDestructionType.qml | 41 ---------------------- .../qdeclarativelanguage/data/alias.1.qml | 41 ---------------------- .../qdeclarativelanguage/data/alias.2.qml | 41 ---------------------- .../qdeclarativelanguage/data/alias.3.qml | 41 ---------------------- .../qdeclarativelanguage/data/alias.4.qml | 41 ---------------------- .../qdeclarativelanguage/data/alias.5.qml | 41 ---------------------- .../qdeclarativelanguage/data/alias.6.qml | 41 ---------------------- .../qdeclarativelanguage/data/alias.7.qml | 41 ---------------------- .../qdeclarativelanguage/data/alias.8.qml | 41 ---------------------- .../qdeclarativelanguage/data/alias.9.qml | 41 ---------------------- .../qdeclarativelanguage/data/assignBasicTypes.qml | 41 ---------------------- .../data/assignCompositeToType.qml | 41 ---------------------- .../data/assignLiteralSignalProperty.qml | 41 ---------------------- .../data/assignLiteralToVariant.qml | 41 ---------------------- .../data/assignObjectToSignal.qml | 41 ---------------------- .../data/assignObjectToVariant.qml | 41 ---------------------- .../data/assignQmlComponent.qml | 41 ---------------------- .../qdeclarativelanguage/data/assignSignal.qml | 41 ---------------------- .../data/assignToNamespace.qml | 41 ---------------------- .../data/assignTypeExtremes.qml | 41 ---------------------- .../data/assignValueToSignal.qml | 41 ---------------------- .../data/attachedProperties.qml | 41 ---------------------- .../data/autoComponentCreation.qml | 41 ---------------------- .../data/autoNotifyConnection.qml | 41 ---------------------- .../qdeclarativelanguage/data/component.1.qml | 41 ---------------------- .../qdeclarativelanguage/data/component.2.qml | 41 ---------------------- .../qdeclarativelanguage/data/component.3.qml | 41 ---------------------- .../qdeclarativelanguage/data/component.4.qml | 41 ---------------------- .../qdeclarativelanguage/data/component.5.qml | 41 ---------------------- .../qdeclarativelanguage/data/component.6.qml | 41 ---------------------- .../qdeclarativelanguage/data/component.7.qml | 41 ---------------------- .../qdeclarativelanguage/data/component.8.qml | 41 ---------------------- .../qdeclarativelanguage/data/component.9.qml | 41 ---------------------- .../data/componentCompositeType.qml | 41 ---------------------- .../qdeclarativelanguage/data/cppnamespace.2.qml | 41 ---------------------- .../qdeclarativelanguage/data/cppnamespace.qml | 41 ---------------------- .../qdeclarativelanguage/data/crash2.qml | 41 ---------------------- .../qdeclarativelanguage/data/customOnProperty.qml | 41 ---------------------- .../data/customParserIdNotAllowed.qml | 41 ---------------------- .../data/customParserTypes.qml | 41 ---------------------- .../data/customVariantTypes.qml | 41 ---------------------- .../data/declaredPropertyValues.qml | 41 ---------------------- .../qdeclarativelanguage/data/defaultGrouped.qml | 41 ---------------------- .../data/defaultPropertyListOrder.qml | 41 ---------------------- .../qdeclarativelanguage/data/destroyedSignal.qml | 41 ---------------------- .../qdeclarativelanguage/data/doubleSignal.qml | 41 ---------------------- .../qdeclarativelanguage/data/duplicateIDs.qml | 41 ---------------------- .../qdeclarativelanguage/data/dynamicMeta.1.qml | 41 ---------------------- .../qdeclarativelanguage/data/dynamicMeta.2.qml | 41 ---------------------- .../qdeclarativelanguage/data/dynamicMeta.3.qml | 41 ---------------------- .../qdeclarativelanguage/data/dynamicMeta.4.qml | 41 ---------------------- .../qdeclarativelanguage/data/dynamicMeta.5.qml | 41 ---------------------- .../qdeclarativelanguage/data/dynamicObject.1.qml | 41 ---------------------- .../data/dynamicObjectProperties.2.qml | 41 ---------------------- .../data/dynamicObjectProperties.qml | 41 ---------------------- .../data/dynamicProperties.qml | 41 ---------------------- .../data/dynamicPropertiesNested.qml | 41 ---------------------- .../data/dynamicSignalsAndSlots.qml | 41 ---------------------- .../qdeclarativelanguage/data/empty.qml | 41 ---------------------- .../qdeclarativelanguage/data/emptySignal.qml | 41 ---------------------- .../qdeclarativelanguage/data/enumTypes.qml | 41 ---------------------- .../data/failingComponentTest.qml | 41 ---------------------- .../qdeclarativelanguage/data/fakeDotProperty.qml | 41 ---------------------- .../qdeclarativelanguage/data/finalOverride.qml | 41 ---------------------- .../data/i18nDeclaredPropertyNames.qml | 41 ---------------------- .../data/i18nDeclaredPropertyUse.qml | 41 ---------------------- .../qdeclarativelanguage/data/i18nNameSpace.qml | 41 ---------------------- .../qdeclarativelanguage/data/i18nScript.qml | 41 ---------------------- .../qdeclarativelanguage/data/i18nStrings.qml | 41 ---------------------- .../qdeclarativelanguage/data/i18nType.qml | 41 ---------------------- .../qdeclarativelanguage/data/idProperty.qml | 41 ---------------------- .../data/importNamespaceConflict.qml | 41 ---------------------- .../data/importNewerVersion.qml | 41 ---------------------- .../qdeclarativelanguage/data/importNonExist.qml | 41 ---------------------- .../data/importNonExistOlder.qml | 41 ---------------------- .../data/importVersionMissingBuiltIn.qml | 41 ---------------------- .../data/importVersionMissingInstalled.qml | 41 ---------------------- .../qdeclarativelanguage/data/importscript.1.qml | 41 ---------------------- .../data/inlineQmlComponents.qml | 41 ---------------------- .../data/interfaceProperty.qml | 41 ---------------------- .../qdeclarativelanguage/data/interfaceQList.qml | 41 ---------------------- .../qdeclarativelanguage/data/invalidAlias.1.qml | 41 ---------------------- .../qdeclarativelanguage/data/invalidAlias.2.qml | 41 ---------------------- .../qdeclarativelanguage/data/invalidAlias.3.qml | 41 ---------------------- .../qdeclarativelanguage/data/invalidAlias.4.qml | 41 ---------------------- .../qdeclarativelanguage/data/invalidAlias.5.qml | 41 ---------------------- .../qdeclarativelanguage/data/invalidAlias.6.qml | 41 ---------------------- .../data/invalidAttachedProperty.1.qml | 41 ---------------------- .../data/invalidAttachedProperty.10.qml | 41 ---------------------- .../data/invalidAttachedProperty.11.qml | 41 ---------------------- .../data/invalidAttachedProperty.12.qml | 41 ---------------------- .../data/invalidAttachedProperty.13.qml | 41 ---------------------- .../data/invalidAttachedProperty.2.qml | 41 ---------------------- .../data/invalidAttachedProperty.3.qml | 41 ---------------------- .../data/invalidAttachedProperty.4.qml | 41 ---------------------- .../data/invalidAttachedProperty.5.qml | 41 ---------------------- .../data/invalidAttachedProperty.6.qml | 41 ---------------------- .../data/invalidAttachedProperty.7.qml | 41 ---------------------- .../data/invalidAttachedProperty.8.qml | 41 ---------------------- .../data/invalidAttachedProperty.9.qml | 41 ---------------------- .../data/invalidGroupedProperty.1.qml | 41 ---------------------- .../data/invalidGroupedProperty.10.qml | 41 ---------------------- .../data/invalidGroupedProperty.2.qml | 41 ---------------------- .../data/invalidGroupedProperty.3.qml | 41 ---------------------- .../data/invalidGroupedProperty.4.qml | 41 ---------------------- .../data/invalidGroupedProperty.5.qml | 41 ---------------------- .../data/invalidGroupedProperty.6.qml | 41 ---------------------- .../data/invalidGroupedProperty.7.qml | 41 ---------------------- .../data/invalidGroupedProperty.8.qml | 41 ---------------------- .../data/invalidGroupedProperty.9.qml | 41 ---------------------- .../qdeclarativelanguage/data/invalidID.2.qml | 41 ---------------------- .../qdeclarativelanguage/data/invalidID.3.qml | 41 ---------------------- .../qdeclarativelanguage/data/invalidID.4.qml | 41 ---------------------- .../qdeclarativelanguage/data/invalidID.5.qml | 41 ---------------------- .../qdeclarativelanguage/data/invalidID.6.qml | 41 ---------------------- .../qdeclarativelanguage/data/invalidID.7.qml | 41 ---------------------- .../qdeclarativelanguage/data/invalidID.8.qml | 41 ---------------------- .../qdeclarativelanguage/data/invalidID.9.qml | 41 ---------------------- .../qdeclarativelanguage/data/invalidID.qml | 41 ---------------------- .../qdeclarativelanguage/data/invalidImportID.qml | 41 ---------------------- .../qdeclarativelanguage/data/invalidOn.qml | 41 ---------------------- .../qdeclarativelanguage/data/invalidRoot.qml | 41 ---------------------- .../lib/com/nokia/installedtest/InstalledTest.qml | 41 ---------------------- .../lib/com/nokia/installedtest/InstalledTest2.qml | 41 ---------------------- .../data/lib/com/nokia/installedtest/LocalLast.qml | 41 ---------------------- .../lib/com/nokia/installedtest/PrivateType.qml | 41 ---------------------- .../qdeclarativelanguage/data/listAssignment.1.qml | 41 ---------------------- .../qdeclarativelanguage/data/listAssignment.2.qml | 41 ---------------------- .../qdeclarativelanguage/data/listAssignment.3.qml | 41 ---------------------- .../data/listItemDeleteSelf.qml | 41 ---------------------- .../qdeclarativelanguage/data/listProperties.qml | 41 ---------------------- .../qdeclarativelanguage/data/method.1.qml | 41 ---------------------- .../qdeclarativelanguage/data/missingObject.qml | 41 ---------------------- .../qdeclarativelanguage/data/missingSignal.qml | 41 ---------------------- .../data/missingValueTypeProperty.qml | 41 ---------------------- .../qdeclarativelanguage/data/multiSet.1.qml | 41 ---------------------- .../qdeclarativelanguage/data/multiSet.10.qml | 41 ---------------------- .../qdeclarativelanguage/data/multiSet.11.qml | 41 ---------------------- .../qdeclarativelanguage/data/multiSet.2.qml | 41 ---------------------- .../qdeclarativelanguage/data/multiSet.3.qml | 41 ---------------------- .../qdeclarativelanguage/data/multiSet.4.qml | 41 ---------------------- .../qdeclarativelanguage/data/multiSet.5.qml | 41 ---------------------- .../qdeclarativelanguage/data/multiSet.6.qml | 41 ---------------------- .../qdeclarativelanguage/data/multiSet.7.qml | 41 ---------------------- .../qdeclarativelanguage/data/multiSet.8.qml | 41 ---------------------- .../qdeclarativelanguage/data/multiSet.9.qml | 41 ---------------------- .../qdeclarativelanguage/data/nestedErrors.qml | 41 ---------------------- .../qdeclarativelanguage/data/noCreation.qml | 41 ---------------------- .../data/nonexistantProperty.1.qml | 41 ---------------------- .../data/nonexistantProperty.2.qml | 41 ---------------------- .../data/nonexistantProperty.3.qml | 41 ---------------------- .../data/nonexistantProperty.4.qml | 41 ---------------------- .../data/nonexistantProperty.5.qml | 41 ---------------------- .../data/nonexistantProperty.6.qml | 41 ---------------------- .../qdeclarativelanguage/data/nullDotProperty.qml | 41 ---------------------- .../data/objectValueTypeProperty.qml | 41 ---------------------- .../qdeclarativelanguage/data/onCompleted.qml | 41 ---------------------- .../qdeclarativelanguage/data/onDestruction.qml | 41 ---------------------- .../qdeclarativelanguage/data/property.1.qml | 41 ---------------------- .../qdeclarativelanguage/data/property.2.qml | 41 ---------------------- .../qdeclarativelanguage/data/property.3.qml | 41 ---------------------- .../qdeclarativelanguage/data/property.4.qml | 41 ---------------------- .../qdeclarativelanguage/data/property.5.qml | 41 ---------------------- .../qdeclarativelanguage/data/property.6.qml | 41 ---------------------- .../qdeclarativelanguage/data/property.7.qml | 41 ---------------------- .../data/propertyValueSource.2.qml | 41 ---------------------- .../data/propertyValueSource.qml | 41 ---------------------- .../data/qmlAttachedPropertiesObjectMethod.1.qml | 41 ---------------------- .../data/qmlAttachedPropertiesObjectMethod.2.qml | 41 ---------------------- .../qdeclarativelanguage/data/readOnly.1.qml | 41 ---------------------- .../qdeclarativelanguage/data/readOnly.2.qml | 41 ---------------------- .../qdeclarativelanguage/data/readOnly.3.qml | 41 ---------------------- .../qdeclarativelanguage/data/readOnly.4.qml | 41 ---------------------- .../qdeclarativelanguage/data/readOnly.5.qml | 41 ---------------------- .../data/rootAsQmlComponent.qml | 41 ---------------------- .../qdeclarativelanguage/data/scriptString.1.qml | 41 ---------------------- .../qdeclarativelanguage/data/scriptString.2.qml | 41 ---------------------- .../qdeclarativelanguage/data/scriptString.qml | 41 ---------------------- .../qdeclarativelanguage/data/scriptString2.qml | 41 ---------------------- .../qdeclarativelanguage/data/scriptString3.qml | 41 ---------------------- .../qdeclarativelanguage/data/scriptString4.qml | 41 ---------------------- .../qdeclarativelanguage/data/signal.1.qml | 41 ---------------------- .../qdeclarativelanguage/data/signal.2.qml | 41 ---------------------- .../qdeclarativelanguage/data/signal.3.qml | 41 ---------------------- .../qdeclarativelanguage/data/signal.4.qml | 41 ---------------------- .../qdeclarativelanguage/data/simpleBindings.qml | 41 ---------------------- .../qdeclarativelanguage/data/simpleContainer.qml | 41 ---------------------- .../qdeclarativelanguage/data/simpleObject.qml | 41 ---------------------- .../qdeclarativelanguage/data/subdir/Test.qml | 41 ---------------------- .../data/subdir/subsubdir/SubTest.qml | 41 ---------------------- .../data/unregisteredObject.qml | 41 ---------------------- .../data/unsupportedProperty.qml | 41 ---------------------- .../qdeclarativelanguage/data/valueTypes.qml | 41 ---------------------- .../qdeclarativelanguage/data/wrongType.1.qml | 41 ---------------------- .../qdeclarativelanguage/data/wrongType.10.qml | 41 ---------------------- .../qdeclarativelanguage/data/wrongType.11.qml | 41 ---------------------- .../qdeclarativelanguage/data/wrongType.12.qml | 41 ---------------------- .../qdeclarativelanguage/data/wrongType.13.qml | 41 ---------------------- .../qdeclarativelanguage/data/wrongType.14.qml | 41 ---------------------- .../qdeclarativelanguage/data/wrongType.15.qml | 41 ---------------------- .../qdeclarativelanguage/data/wrongType.16.qml | 41 ---------------------- .../qdeclarativelanguage/data/wrongType.2.qml | 41 ---------------------- .../qdeclarativelanguage/data/wrongType.3.qml | 41 ---------------------- .../qdeclarativelanguage/data/wrongType.4.qml | 41 ---------------------- .../qdeclarativelanguage/data/wrongType.5.qml | 41 ---------------------- .../qdeclarativelanguage/data/wrongType.6.qml | 41 ---------------------- .../qdeclarativelanguage/data/wrongType.7.qml | 41 ---------------------- .../qdeclarativelanguage/data/wrongType.8.qml | 41 ---------------------- .../qdeclarativelanguage/data/wrongType.9.qml | 41 ---------------------- .../declarative/qmllanguage/LocalInternal.qml | 41 ---------------------- .../qtest/declarative/qmllanguage/Test.qml | 41 ---------------------- .../qtest/declarative/qmllanguage/TestLocal.qml | 41 ---------------------- .../qtest/declarative/qmllanguage/TestNamed.qml | 41 ---------------------- .../qtest/declarative/qmllanguage/TestSubDir.qml | 41 ---------------------- .../declarative/qmllanguage/UndeclaredLocal.qml | 41 ---------------------- .../declarative/qmllanguage/WrongTestLocal.qml | 41 ---------------------- .../declarative/qmllanguage/subdir/SubTest.qml | 41 ---------------------- .../qdeclarativelayoutitem/data/layoutItem.qml | 41 ---------------------- .../qdeclarativelistmodel/data/enumerate.qml | 41 ---------------------- .../qdeclarativelistmodel/data/model.qml | 41 ---------------------- .../qdeclarativelistreference/data/MyType.qml | 41 ---------------------- .../qdeclarativelistreference/data/engineTypes.qml | 41 ---------------------- .../data/variantToList.qml | 41 ---------------------- .../qdeclarativelistview/data/displaylist.qml | 41 ---------------------- .../qdeclarativelistview/data/itemlist.qml | 41 ---------------------- .../data/listview-enforcerange.qml | 41 ---------------------- .../data/listview-initCurrent.qml | 41 ---------------------- .../data/listview-sections.qml | 41 ---------------------- .../qdeclarativelistview/data/listviewtest.qml | 41 ---------------------- .../qdeclarativelistview/data/manual-highlight.qml | 41 ---------------------- .../data/propertychangestest.qml | 41 ---------------------- .../data/strictlyenforcerange.qml | 41 ---------------------- .../qdeclarativeloader/data/AnchoredLoader.qml | 41 ---------------------- .../qdeclarativeloader/data/BlueRect.qml | 41 ---------------------- .../data/GraphicsWidget250x250.qml | 41 ---------------------- .../qdeclarativeloader/data/GreenRect.qml | 41 ---------------------- .../qdeclarativeloader/data/NoResize.qml | 41 ---------------------- .../data/NoResizeGraphicsWidget.qml | 41 ---------------------- .../qdeclarativeloader/data/Rect120x60.qml | 41 ---------------------- .../qdeclarativeloader/data/SetSourceComponent.qml | 41 ---------------------- .../data/SizeGraphicsWidgetToLoader.qml | 41 ---------------------- .../data/SizeLoaderToGraphicsWidget.qml | 41 ---------------------- .../qdeclarativeloader/data/SizeToItem.qml | 41 ---------------------- .../qdeclarativeloader/data/SizeToLoader.qml | 41 ---------------------- .../qdeclarativeloader/data/VmeError.qml | 41 ---------------------- .../declarative/qdeclarativeloader/data/crash.qml | 41 ---------------------- .../qdeclarativeloader/data/differentorigin.qml | 41 ---------------------- .../qdeclarativeloader/data/nonItem.qml | 41 ---------------------- .../qdeclarativeloader/data/sameorigin-load.qml | 41 ---------------------- .../qdeclarativeloader/data/sameorigin.qml | 41 ---------------------- .../qdeclarativeloader/data/vmeErrors.qml | 41 ---------------------- .../qdeclarativemoduleplugin/data/works.qml | 41 ---------------------- .../qdeclarativemousearea/data/clickandhold.qml | 41 ---------------------- .../qdeclarativemousearea/data/dragging.qml | 41 ---------------------- .../qdeclarativemousearea/data/dragproperties.qml | 41 ---------------------- .../qdeclarativemousearea/data/dragreset.qml | 41 ---------------------- .../qdeclarativemousearea/data/rejectEvent.qml | 41 ---------------------- .../data/updateMousePosOnClick.qml | 41 ---------------------- .../data/updateMousePosOnResize.qml | 41 ---------------------- .../data/particlemotiontest.qml | 41 ---------------------- .../qdeclarativeparticles/data/particlestest.qml | 41 ---------------------- .../qdeclarativepathview/data/datamodel.qml | 41 ---------------------- .../qdeclarativepathview/data/displaypath.qml | 41 ---------------------- .../data/pathUpdateOnStartChanged.qml | 41 ---------------------- .../qdeclarativepathview/data/pathtest.qml | 41 ---------------------- .../qdeclarativepathview/data/pathview0.qml | 41 ---------------------- .../qdeclarativepathview/data/pathview1.qml | 41 ---------------------- .../qdeclarativepathview/data/pathview2.qml | 41 ---------------------- .../qdeclarativepathview/data/pathview3.qml | 41 ---------------------- .../qdeclarativepathview/data/pathview_package.qml | 41 ---------------------- .../qdeclarativepathview/data/propertychanges.qml | 41 ---------------------- .../qdeclarativepositioners/data/flowtest.qml | 41 ---------------------- .../qdeclarativepositioners/data/grid-animated.qml | 41 ---------------------- .../qdeclarativepositioners/data/grid-spacing.qml | 41 ---------------------- .../data/grid-toptobottom.qml | 41 ---------------------- .../qdeclarativepositioners/data/gridtest.qml | 41 ---------------------- .../data/gridzerocolumns.qml | 41 ---------------------- .../data/horizontal-animated.qml | 41 ---------------------- .../data/horizontal-spacing.qml | 41 ---------------------- .../qdeclarativepositioners/data/horizontal.qml | 41 ---------------------- .../data/propertychangestest.qml | 41 ---------------------- .../qdeclarativepositioners/data/repeatertest.qml | 41 ---------------------- .../data/vertical-animated.qml | 41 ---------------------- .../data/vertical-spacing.qml | 41 ---------------------- .../qdeclarativepositioners/data/vertical.qml | 41 ---------------------- .../qdeclarativeproperty/data/TestType.qml | 41 ---------------------- .../data/readSynthesizedObject.qml | 41 ---------------------- .../auto/declarative/qdeclarativeqt/data/atob.qml | 41 ---------------------- .../auto/declarative/qdeclarativeqt/data/btoa.qml | 41 ---------------------- .../declarative/qdeclarativeqt/data/consoleLog.qml | 41 ---------------------- .../qdeclarativeqt/data/createComponent.qml | 41 ---------------------- .../qdeclarativeqt/data/createComponentData.qml | 41 ---------------------- .../qdeclarativeqt/data/createQmlObject.qml | 41 ---------------------- .../declarative/qdeclarativeqt/data/darker.qml | 41 ---------------------- .../auto/declarative/qdeclarativeqt/data/enums.qml | 41 ---------------------- .../qdeclarativeqt/data/fontFamilies.qml | 41 ---------------------- .../declarative/qdeclarativeqt/data/formatting.qml | 41 ---------------------- .../auto/declarative/qdeclarativeqt/data/hsla.qml | 41 ---------------------- .../declarative/qdeclarativeqt/data/isQtObject.qml | 41 ---------------------- .../declarative/qdeclarativeqt/data/lighter.qml | 41 ---------------------- tests/auto/declarative/qdeclarativeqt/data/md5.qml | 41 ---------------------- .../qdeclarativeqt/data/openUrlExternally.qml | 41 ---------------------- .../auto/declarative/qdeclarativeqt/data/point.qml | 41 ---------------------- .../auto/declarative/qdeclarativeqt/data/rect.qml | 41 ---------------------- .../auto/declarative/qdeclarativeqt/data/rgba.qml | 41 ---------------------- .../auto/declarative/qdeclarativeqt/data/size.qml | 41 ---------------------- .../auto/declarative/qdeclarativeqt/data/tint.qml | 41 ---------------------- .../declarative/qdeclarativeqt/data/vector.qml | 41 ---------------------- .../qdeclarativerepeater/data/intmodel.qml | 41 ---------------------- .../qdeclarativerepeater/data/itemlist.qml | 41 ---------------------- .../qdeclarativerepeater/data/objlist.qml | 41 ---------------------- .../qdeclarativerepeater/data/properties.qml | 41 ---------------------- .../qdeclarativerepeater/data/repeater1.qml | 41 ---------------------- .../qdeclarativerepeater/data/repeater2.qml | 41 ---------------------- .../data/smoothedanimation1.qml | 41 ---------------------- .../data/smoothedanimation2.qml | 41 ---------------------- .../data/smoothedanimation3.qml | 41 ---------------------- .../data/smoothedanimationBehavior.qml | 41 ---------------------- .../data/smoothedanimationValueSource.qml | 41 ---------------------- .../data/smoothedfollow1.qml | 41 ---------------------- .../data/smoothedfollow2.qml | 41 ---------------------- .../data/smoothedfollow3.qml | 41 ---------------------- .../data/smoothedfollowDisabled.qml | 41 ---------------------- .../data/smoothedfollowValueSource.qml | 41 ---------------------- .../data/springfollow1.qml | 41 ---------------------- .../data/springfollow2.qml | 41 ---------------------- .../data/springfollow3.qml | 41 ---------------------- .../qdeclarativestates/data/ExtendedRectangle.qml | 41 ---------------------- .../data/Implementation/MyType.qml | 41 ---------------------- .../qdeclarativestates/data/anchorChanges1.qml | 41 ---------------------- .../qdeclarativestates/data/anchorChanges2.qml | 41 ---------------------- .../qdeclarativestates/data/anchorChanges3.qml | 41 ---------------------- .../qdeclarativestates/data/anchorChanges4.qml | 41 ---------------------- .../qdeclarativestates/data/anchorChanges5.qml | 41 ---------------------- .../qdeclarativestates/data/anchorChangesCrash.qml | 41 ---------------------- .../data/autoStateAtStartupRestoreBug.qml | 41 ---------------------- .../qdeclarativestates/data/basicBinding.qml | 41 ---------------------- .../qdeclarativestates/data/basicBinding2.qml | 41 ---------------------- .../qdeclarativestates/data/basicBinding3.qml | 41 ---------------------- .../qdeclarativestates/data/basicBinding4.qml | 41 ---------------------- .../qdeclarativestates/data/basicChanges.qml | 41 ---------------------- .../qdeclarativestates/data/basicChanges2.qml | 41 ---------------------- .../qdeclarativestates/data/basicChanges3.qml | 41 ---------------------- .../qdeclarativestates/data/basicChanges4.qml | 41 ---------------------- .../qdeclarativestates/data/basicExtension.qml | 41 ---------------------- .../qdeclarativestates/data/deleting.qml | 41 ---------------------- .../qdeclarativestates/data/deletingState.qml | 41 ---------------------- .../qdeclarativestates/data/explicit.qml | 41 ---------------------- .../qdeclarativestates/data/fakeExtension.qml | 41 ---------------------- .../qdeclarativestates/data/illegalObj.qml | 41 ---------------------- .../qdeclarativestates/data/illegalTempState.qml | 41 ---------------------- .../qdeclarativestates/data/legalTempState.qml | 41 ---------------------- .../qdeclarativestates/data/nonExistantProp.qml | 41 ---------------------- .../qdeclarativestates/data/parentChange1.qml | 41 ---------------------- .../qdeclarativestates/data/parentChange2.qml | 41 ---------------------- .../qdeclarativestates/data/parentChange3.qml | 41 ---------------------- .../qdeclarativestates/data/parentChange4.qml | 41 ---------------------- .../qdeclarativestates/data/parentChange5.qml | 41 ---------------------- .../qdeclarativestates/data/propertyErrors.qml | 41 ---------------------- .../declarative/qdeclarativestates/data/reset.qml | 41 ---------------------- .../qdeclarativestates/data/restoreEntryValues.qml | 41 ---------------------- .../declarative/qdeclarativestates/data/script.qml | 41 ---------------------- .../qdeclarativestates/data/signalOverride.qml | 41 ---------------------- .../qdeclarativestates/data/signalOverride2.qml | 41 ---------------------- .../data/signalOverrideCrash.qml | 41 ---------------------- .../data/signalOverrideCrash2.qml | 41 ---------------------- .../qdeclarativestates/data/unnamedWhen.qml | 41 ---------------------- .../qdeclarativestates/data/urlResolution.qml | 41 ---------------------- .../qdeclarativestates/data/whenOrdering.qml | 41 ---------------------- .../qdeclarativetext/data/embeddedImagesLocal.qml | 41 ---------------------- .../data/embeddedImagesLocalError.qml | 41 ---------------------- .../qdeclarativetext/data/embeddedImagesRemote.qml | 41 ---------------------- .../data/embeddedImagesRemoteError.qml | 41 ---------------------- .../qdeclarativetextedit/data/cursorTest.qml | 41 ---------------------- .../qdeclarativetextedit/data/geometrySignals.qml | 41 ---------------------- .../qdeclarativetextedit/data/http/ErrItem.qml | 41 ---------------------- .../qdeclarativetextedit/data/http/NormItem.qml | 41 ---------------------- .../data/http/cursorHttpTest.qml | 41 ---------------------- .../data/http/cursorHttpTestFail1.qml | 41 ---------------------- .../data/http/cursorHttpTestFail2.qml | 41 ---------------------- .../data/http/cursorHttpTestPass.qml | 41 ---------------------- .../data/httpfail/FailItem.qml | 41 ---------------------- .../data/httpslow/WaitItem.qml | 41 ---------------------- .../qdeclarativetextedit/data/inputmethodhints.qml | 41 ---------------------- .../data/mouseselection_default.qml | 41 ---------------------- .../data/mouseselection_false.qml | 41 ---------------------- .../data/mouseselection_true.qml | 41 ---------------------- .../qdeclarativetextedit/data/navigation.qml | 41 ---------------------- .../qdeclarativetextedit/data/readOnly.qml | 41 ---------------------- .../qdeclarativetextinput/data/cursorTest.qml | 41 ---------------------- .../qdeclarativetextinput/data/echoMode.qml | 41 ---------------------- .../qdeclarativetextinput/data/geometrySignals.qml | 41 ---------------------- .../data/inputmethodhints.qml | 41 ---------------------- .../qdeclarativetextinput/data/masks.qml | 41 ---------------------- .../qdeclarativetextinput/data/maxLength.qml | 41 ---------------------- .../qdeclarativetextinput/data/navigation.qml | 41 ---------------------- .../qdeclarativetextinput/data/readOnly.qml | 41 ---------------------- .../qdeclarativetextinput/data/validators.qml | 41 ---------------------- .../data/autoBindingRemoval.2.qml | 41 ---------------------- .../data/autoBindingRemoval.3.qml | 41 ---------------------- .../data/autoBindingRemoval.qml | 41 ---------------------- .../data/bindingAssignment.qml | 41 ---------------------- .../data/bindingConflict.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/bindingRead.qml | 41 ---------------------- .../data/bindingVariantCopy.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/conflicting.1.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/conflicting.2.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/conflicting.3.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/deletedObject.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/enums.1.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/enums.2.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/enums.3.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/enums.4.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/enums.5.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/font_read.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/font_write.2.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/font_write.3.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/font_write.4.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/font_write.5.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/font_write.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/matrix4x4_read.qml | 41 ---------------------- .../data/matrix4x4_write.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/point_read.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/point_write.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/pointf_read.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/pointf_write.qml | 41 ---------------------- .../data/quaternion_read.qml | 41 ---------------------- .../data/quaternion_write.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/rect_read.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/rect_write.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/rectf_read.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/rectf_write.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/returnValues.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/scriptAccess.qml | 41 ---------------------- .../data/scriptVariantCopy.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/size_read.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/size_write.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/sizef_read.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/sizef_write.qml | 41 ---------------------- .../data/sizereadonly_read.qml | 41 ---------------------- .../data/sizereadonly_writeerror.qml | 41 ---------------------- .../data/sizereadonly_writeerror2.qml | 41 ---------------------- .../data/sizereadonly_writeerror3.qml | 41 ---------------------- .../data/sizereadonly_writeerror4.qml | 41 ---------------------- .../data/staticAssignment.qml | 41 ---------------------- .../data/valueInterceptors.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/valueSources.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/varAssignment.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/vector2d_read.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/vector2d_write.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/vector3d_read.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/vector3d_write.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/vector4d_read.qml | 41 ---------------------- .../qdeclarativevaluetypes/data/vector4d_write.qml | 41 ---------------------- .../data/resizemodedeclarativeitem.qml | 41 ---------------------- .../data/resizemodegraphicswidget.qml | 41 ---------------------- .../qdeclarativeviewer/data/orientation.qml | 41 ---------------------- .../data/objectlist.qml | 41 ---------------------- .../data/visualdatamodel.qml | 41 ---------------------- .../declarative/qdeclarativewebview/data/basic.qml | 41 ---------------------- .../qdeclarativewebview/data/elements.qml | 41 ---------------------- .../qdeclarativewebview/data/javaScript.qml | 41 ---------------------- .../qdeclarativewebview/data/loadError.qml | 41 ---------------------- .../qdeclarativewebview/data/newwindows.qml | 41 ---------------------- .../qdeclarativewebview/data/pixelCache.qml | 41 ---------------------- .../qdeclarativewebview/data/propertychanges.qml | 41 ---------------------- .../qdeclarativewebview/data/sethtml.qml | 41 ---------------------- .../qdeclarativeworkerscript/data/worker.qml | 41 ---------------------- .../qdeclarativexmlhttprequest/data/abort.qml | 41 ---------------------- .../data/abort_opened.qml | 41 ---------------------- .../data/abort_unsent.qml | 41 ---------------------- .../qdeclarativexmlhttprequest/data/attr.qml | 41 ---------------------- .../data/callbackException.qml | 41 ---------------------- .../qdeclarativexmlhttprequest/data/cdata.qml | 41 ---------------------- .../data/constructor.qml | 41 ---------------------- .../data/defaultState.qml | 41 ---------------------- .../qdeclarativexmlhttprequest/data/document.qml | 41 ---------------------- .../data/domExceptionCodes.qml | 41 ---------------------- .../qdeclarativexmlhttprequest/data/element.qml | 41 ---------------------- .../data/getAllResponseHeaders.qml | 41 ---------------------- .../data/getAllResponseHeaders_args.qml | 41 ---------------------- .../data/getAllResponseHeaders_sent.qml | 41 ---------------------- .../data/getAllResponseHeaders_unsent.qml | 41 ---------------------- .../data/getResponseHeader.qml | 41 ---------------------- .../data/getResponseHeader_args.qml | 41 ---------------------- .../data/getResponseHeader_sent.qml | 41 ---------------------- .../data/getResponseHeader_unsent.qml | 41 ---------------------- .../data/instanceStateValues.qml | 41 ---------------------- .../data/invalidMethodUsage.qml | 41 ---------------------- .../qdeclarativexmlhttprequest/data/open.qml | 41 ---------------------- .../data/open_arg_count.1.qml | 41 ---------------------- .../data/open_arg_count.2.qml | 41 ---------------------- .../data/open_invalid_method.qml | 41 ---------------------- .../qdeclarativexmlhttprequest/data/open_sync.qml | 41 ---------------------- .../qdeclarativexmlhttprequest/data/open_user.qml | 41 ---------------------- .../data/open_username.qml | 41 ---------------------- .../data/redirectError.qml | 41 ---------------------- .../data/redirectRecur.qml | 41 ---------------------- .../qdeclarativexmlhttprequest/data/redirects.qml | 41 ---------------------- .../data/responseText.qml | 41 ---------------------- .../data/responseXML_invalid.qml | 41 ---------------------- .../data/send_alreadySent.qml | 41 ---------------------- .../data/send_data.1.qml | 41 ---------------------- .../data/send_data.2.qml | 41 ---------------------- .../data/send_data.3.qml | 41 ---------------------- .../data/send_data.4.qml | 41 ---------------------- .../data/send_data.5.qml | 41 ---------------------- .../data/send_data.6.qml | 41 ---------------------- .../data/send_data.7.qml | 41 ---------------------- .../data/send_ignoreData.qml | 41 ---------------------- .../data/send_unsent.qml | 41 ---------------------- .../data/setRequestHeader.qml | 41 ---------------------- .../data/setRequestHeader_args.qml | 41 ---------------------- .../data/setRequestHeader_illegalName.qml | 41 ---------------------- .../data/setRequestHeader_sent.qml | 41 ---------------------- .../data/setRequestHeader_unsent.qml | 41 ---------------------- .../data/staticStateValues.qml | 41 ---------------------- .../qdeclarativexmlhttprequest/data/status.qml | 41 ---------------------- .../qdeclarativexmlhttprequest/data/statusText.qml | 41 ---------------------- .../qdeclarativexmlhttprequest/data/text.qml | 41 ---------------------- .../qdeclarativexmlhttprequest/data/utf16.qml | 41 ---------------------- .../qdeclarativexmllistmodel/data/model.qml | 41 ---------------------- .../qdeclarativexmllistmodel/data/model2.qml | 41 ---------------------- .../data/propertychanges.qml | 41 ---------------------- .../qdeclarativexmllistmodel/data/recipes.qml | 41 ---------------------- .../qdeclarativexmllistmodel/data/roleErrors.qml | 41 ---------------------- .../qdeclarativexmllistmodel/data/roleKeys.qml | 41 ---------------------- .../qdeclarativexmllistmodel/data/unique.qml | 41 ---------------------- .../auto/declarative/qmlvisual/ListView/basic1.qml | 41 ---------------------- .../auto/declarative/qmlvisual/ListView/basic2.qml | 41 ---------------------- .../auto/declarative/qmlvisual/ListView/basic3.qml | 41 ---------------------- .../auto/declarative/qmlvisual/ListView/basic4.qml | 41 ---------------------- .../qmlvisual/ListView/data-MAC/basic1.qml | 41 ---------------------- .../qmlvisual/ListView/data-MAC/basic2.qml | 41 ---------------------- .../qmlvisual/ListView/data-MAC/basic3.qml | 41 ---------------------- .../qmlvisual/ListView/data-MAC/basic4.qml | 41 ---------------------- .../qmlvisual/ListView/data-MAC/itemlist.qml | 41 ---------------------- .../qmlvisual/ListView/data-MAC/listview.qml | 41 ---------------------- .../qmlvisual/ListView/data-X11/basic1.qml | 41 ---------------------- .../qmlvisual/ListView/data-X11/basic2.qml | 41 ---------------------- .../qmlvisual/ListView/data-X11/basic3.qml | 41 ---------------------- .../qmlvisual/ListView/data-X11/basic4.qml | 41 ---------------------- .../declarative/qmlvisual/ListView/data/basic1.qml | 41 ---------------------- .../declarative/qmlvisual/ListView/data/basic2.qml | 41 ---------------------- .../declarative/qmlvisual/ListView/data/basic3.qml | 41 ---------------------- .../declarative/qmlvisual/ListView/data/basic4.qml | 41 ---------------------- .../qmlvisual/ListView/data/itemlist.qml | 41 ---------------------- .../qmlvisual/ListView/data/listview.qml | 41 ---------------------- .../declarative/qmlvisual/ListView/itemlist.qml | 41 ---------------------- .../declarative/qmlvisual/ListView/listview.qml | 41 ---------------------- .../qmlvisual/Package_Views/data/packageviews.qml | 41 ---------------------- .../qmlvisual/Package_Views/packageviews.qml | 41 ---------------------- .../bindinganimation/bindinganimation.qml | 41 ---------------------- .../bindinganimation/data/bindinganimation.qml | 41 ---------------------- .../colorAnimation/colorAnimation-visual.qml | 41 ---------------------- .../colorAnimation/data/colorAnimation-visual.qml | 41 ---------------------- .../qmlvisual/animation/easing/data/easing.qml | 41 ---------------------- .../qmlvisual/animation/easing/easing.qml | 41 ---------------------- .../qmlvisual/animation/loop/data/loop.qml | 41 ---------------------- .../declarative/qmlvisual/animation/loop/loop.qml | 41 ---------------------- .../data/parallelAnimation-visual.qml | 41 ---------------------- .../parallelAnimation/parallelAnimation-visual.qml | 41 ---------------------- .../data/parentAnimation-visual.qml | 41 ---------------------- .../parentAnimation/parentAnimation-visual.qml | 41 ---------------------- .../parentAnimation2/data/parentAnimation2.qml | 41 ---------------------- .../parentAnimation2/parentAnimation2.qml | 41 ---------------------- .../pauseAnimation/data/pauseAnimation-visual.qml | 41 ---------------------- .../pauseAnimation/pauseAnimation-visual.qml | 41 ---------------------- .../propertyAction/data/propertyAction-visual.qml | 41 ---------------------- .../propertyAction/propertyAction-visual.qml | 41 ---------------------- .../animation/qtbug10586/data/qtbug10586.qml | 41 ---------------------- .../qmlvisual/animation/qtbug10586/qtbug10586.qml | 41 ---------------------- .../qmlvisual/animation/reanchor/data/reanchor.qml | 41 ---------------------- .../qmlvisual/animation/reanchor/reanchor.qml | 41 ---------------------- .../scriptAction/data/scriptAction-visual.qml | 41 ---------------------- .../animation/scriptAction/scriptAction-visual.qml | 41 ---------------------- .../qmlvisual/fillmode/data/fillmode.qml | 41 ---------------------- .../declarative/qmlvisual/fillmode/fillmode.qml | 41 ---------------------- .../qmlvisual/focusscope/data-MAC/test.qml | 41 ---------------------- .../qmlvisual/focusscope/data-MAC/test2.qml | 41 ---------------------- .../qmlvisual/focusscope/data-MAC/test3.qml | 41 ---------------------- .../qmlvisual/focusscope/data-X11/test.qml | 41 ---------------------- .../qmlvisual/focusscope/data-X11/test2.qml | 41 ---------------------- .../qmlvisual/focusscope/data-X11/test3.qml | 41 ---------------------- .../declarative/qmlvisual/focusscope/data/test.qml | 41 ---------------------- .../qmlvisual/focusscope/data/test2.qml | 41 ---------------------- .../qmlvisual/focusscope/data/test3.qml | 41 ---------------------- .../auto/declarative/qmlvisual/focusscope/test.qml | 41 ---------------------- .../declarative/qmlvisual/focusscope/test2.qml | 41 ---------------------- .../declarative/qmlvisual/focusscope/test3.qml | 41 ---------------------- .../qdeclarativeborderimage/animated-smooth.qml | 41 ---------------------- .../qmlvisual/qdeclarativeborderimage/animated.qml | 41 ---------------------- .../qmlvisual/qdeclarativeborderimage/borders.qml | 41 ---------------------- .../content/MyBorderImage.qml | 41 ---------------------- .../data/animated-smooth.qml | 41 ---------------------- .../qdeclarativeborderimage/data/animated.qml | 41 ---------------------- .../qdeclarativeborderimage/data/borders.qml | 41 ---------------------- .../data/flickable-horizontal.qml | 41 ---------------------- .../data/flickable-vertical.qml | 41 ---------------------- .../qdeclarativeflickable/flickable-horizontal.qml | 41 ---------------------- .../qdeclarativeflickable/flickable-vertical.qml | 41 ---------------------- .../qdeclarativeflipable/data/test-flipable.qml | 41 ---------------------- .../data/test_flipable_resize.qml | 41 ---------------------- .../qdeclarativeflipable/test-flipable.qml | 41 ---------------------- .../qdeclarativeflipable/test_flipable_resize.qml | 41 ---------------------- .../qdeclarativegridview/data/gridview.qml | 41 ---------------------- .../qdeclarativegridview/data/gridview2.qml | 41 ---------------------- .../qmlvisual/qdeclarativegridview/gridview.qml | 41 ---------------------- .../qmlvisual/qdeclarativegridview/gridview2.qml | 41 ---------------------- .../qmlvisual/qdeclarativemousearea/data/drag.qml | 41 ---------------------- .../data/mousearea-flickable.qml | 41 ---------------------- .../data/mousearea-visual.qml | 41 ---------------------- .../qmlvisual/qdeclarativemousearea/drag.qml | 41 ---------------------- .../qdeclarativemousearea/mousearea-flickable.qml | 41 ---------------------- .../qdeclarativemousearea/mousearea-visual.qml | 41 ---------------------- .../qdeclarativeparticles/data/particles.qml | 41 ---------------------- .../qmlvisual/qdeclarativeparticles/particles.qml | 41 ---------------------- .../qdeclarativepathview/data/test-pathview-2.qml | 41 ---------------------- .../qdeclarativepathview/data/test-pathview.qml | 41 ---------------------- .../qdeclarativepathview/test-pathview-2.qml | 41 ---------------------- .../qdeclarativepathview/test-pathview.qml | 41 ---------------------- .../qdeclarativepositioners/data/dynamic.qml | 41 ---------------------- .../qdeclarativepositioners/data/usingRepeater.qml | 41 ---------------------- .../qmlvisual/qdeclarativepositioners/dynamic.qml | 41 ---------------------- .../qdeclarativepositioners/usingRepeater.qml | 41 ---------------------- .../data/easefollow.qml | 41 ---------------------- .../smoothedanimation.qml | 41 ---------------------- .../smoothedfollow.qml | 41 ---------------------- .../qmlvisual/qdeclarativespringfollow/clock.qml | 41 ---------------------- .../qdeclarativespringfollow/data/clock.qml | 41 ---------------------- .../qdeclarativespringfollow/data/follow.qml | 41 ---------------------- .../qmlvisual/qdeclarativespringfollow/follow.qml | 41 ---------------------- .../baseline/data-X11/parentanchor.qml | 41 ---------------------- .../baseline/data/parentanchor.qml | 41 ---------------------- .../qdeclarativetext/baseline/parentanchor.qml | 41 ---------------------- .../qdeclarativetext/elide/data-MAC/elide.qml | 41 ---------------------- .../qdeclarativetext/elide/data-MAC/elide2.qml | 41 ---------------------- .../elide/data-MAC/multilength.qml | 41 ---------------------- .../qdeclarativetext/elide/data-X11/elide.qml | 41 ---------------------- .../elide/data-X11/multilength.qml | 41 ---------------------- .../qdeclarativetext/elide/data/elide.qml | 41 ---------------------- .../qdeclarativetext/elide/data/elide2.qml | 41 ---------------------- .../qmlvisual/qdeclarativetext/elide/elide.qml | 41 ---------------------- .../qmlvisual/qdeclarativetext/elide/elide2.qml | 41 ---------------------- .../qdeclarativetext/elide/multilength.qml | 41 ---------------------- .../qdeclarativetext/font/data-MAC/plaintext.qml | 41 ---------------------- .../qdeclarativetext/font/data-MAC/richtext.qml | 41 ---------------------- .../qdeclarativetext/font/data/plaintext.qml | 41 ---------------------- .../qdeclarativetext/font/data/richtext.qml | 41 ---------------------- .../qmlvisual/qdeclarativetext/font/plaintext.qml | 41 ---------------------- .../qmlvisual/qdeclarativetext/font/richtext.qml | 41 ---------------------- .../qdeclarativetextedit/cursorDelegate.qml | 41 ---------------------- .../data-MAC/cursorDelegate.qml | 41 ---------------------- .../qdeclarativetextedit/data-MAC/qt-669.qml | 41 ---------------------- .../qdeclarativetextedit/data-X11/wrap.qml | 41 ---------------------- .../qdeclarativetextedit/data/cursorDelegate.qml | 41 ---------------------- .../qmlvisual/qdeclarativetextedit/data/qt-669.qml | 41 ---------------------- .../qmlvisual/qdeclarativetextedit/data/wrap.qml | 41 ---------------------- .../qmlvisual/qdeclarativetextedit/qt-669.qml | 41 ---------------------- .../qmlvisual/qdeclarativetextedit/wrap.qml | 41 ---------------------- .../qmlvisual/qdeclarativetextinput/LineEdit.qml | 41 ---------------------- .../qdeclarativetextinput/cursorDelegate.qml | 41 ---------------------- .../data-MAC/cursorDelegate.qml | 41 ---------------------- .../qdeclarativetextinput/data-X11/echoMode.qml | 41 ---------------------- .../qdeclarativetextinput/data-X11/hAlign.qml | 41 ---------------------- .../data-X11/usingLineEdit.qml | 41 ---------------------- .../qdeclarativetextinput/data/cursorDelegate.qml | 41 ---------------------- .../qdeclarativetextinput/data/echoMode.qml | 41 ---------------------- .../qdeclarativetextinput/data/hAlign.qml | 41 ---------------------- .../qmlvisual/qdeclarativetextinput/echoMode.qml | 41 ---------------------- .../qmlvisual/qdeclarativetextinput/hAlign.qml | 41 ---------------------- .../qdeclarativetextinput/usingLineEdit.qml | 41 ---------------------- .../declarative/qmlvisual/rect/GradientRect.qml | 41 ---------------------- tests/auto/declarative/qmlvisual/rect/MyRect.qml | 41 ---------------------- .../qmlvisual/rect/data/rect-painting.qml | 41 ---------------------- .../declarative/qmlvisual/rect/rect-painting.qml | 41 ---------------------- .../auto/declarative/qmlvisual/repeater/basic1.qml | 41 ---------------------- .../auto/declarative/qmlvisual/repeater/basic2.qml | 41 ---------------------- .../auto/declarative/qmlvisual/repeater/basic3.qml | 41 ---------------------- .../auto/declarative/qmlvisual/repeater/basic4.qml | 41 ---------------------- .../qmlvisual/repeater/data-MAC/basic1.qml | 41 ---------------------- .../qmlvisual/repeater/data-MAC/basic2.qml | 41 ---------------------- .../qmlvisual/repeater/data-MAC/basic3.qml | 41 ---------------------- .../qmlvisual/repeater/data-MAC/basic4.qml | 41 ---------------------- .../qmlvisual/repeater/data-X11/basic1.qml | 41 ---------------------- .../qmlvisual/repeater/data-X11/basic2.qml | 41 ---------------------- .../qmlvisual/repeater/data-X11/basic3.qml | 41 ---------------------- .../qmlvisual/repeater/data-X11/basic4.qml | 41 ---------------------- .../declarative/qmlvisual/repeater/data/basic1.qml | 41 ---------------------- .../declarative/qmlvisual/repeater/data/basic2.qml | 41 ---------------------- .../declarative/qmlvisual/repeater/data/basic3.qml | 41 ---------------------- .../declarative/qmlvisual/repeater/data/basic4.qml | 41 ---------------------- .../selftest_noimages/data/selftest_noimages.qml | 41 ---------------------- .../selftest_noimages/selftest_noimages.qml | 41 ---------------------- .../qmlvisual/webview/autosize/autosize.qml | 41 ---------------------- .../webview/autosize/data-X11/autosize.qml | 41 ---------------------- .../qmlvisual/webview/autosize/data/autosize.qml | 41 ---------------------- .../webview/javascript/data/evaluateJavaScript.qml | 41 ---------------------- .../webview/javascript/data/windowObjects.qml | 41 ---------------------- .../webview/javascript/evaluateJavaScript.qml | 41 ---------------------- .../qmlvisual/webview/javascript/windowObjects.qml | 41 ---------------------- .../qmlvisual/webview/settings/data/fontFamily.qml | 41 ---------------------- .../qmlvisual/webview/settings/data/fontSize.qml | 41 ---------------------- .../webview/settings/data/noAutoLoadImages.qml | 41 ---------------------- .../webview/settings/data/setFontFamily.qml | 41 ---------------------- .../qmlvisual/webview/settings/fontFamily.qml | 41 ---------------------- .../qmlvisual/webview/settings/fontSize.qml | 41 ---------------------- .../webview/settings/noAutoLoadImages.qml | 41 ---------------------- .../qmlvisual/webview/settings/setFontFamily.qml | 41 ---------------------- .../qmlvisual/webview/zooming/data/pageWidth.qml | 41 ---------------------- .../webview/zooming/data/renderControl.qml | 41 ---------------------- .../qmlvisual/webview/zooming/data/resolution.qml | 41 ---------------------- .../webview/zooming/data/zoomTextOnly.qml | 41 ---------------------- .../qmlvisual/webview/zooming/data/zooming.qml | 41 ---------------------- .../qmlvisual/webview/zooming/pageWidth.qml | 41 ---------------------- .../qmlvisual/webview/zooming/renderControl.qml | 41 ---------------------- .../qmlvisual/webview/zooming/resolution.qml | 41 ---------------------- .../qmlvisual/webview/zooming/zoomTextOnly.qml | 41 ---------------------- .../qmlvisual/webview/zooming/zooming.qml | 41 ---------------------- 958 files changed, 39276 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/examples/data/dummytest.qml b/tests/auto/declarative/examples/data/dummytest.qml index 42b4dd17e6..b20e907f27 100644 --- a/tests/auto/declarative/examples/data/dummytest.qml +++ b/tests/auto/declarative/examples/data/dummytest.qml @@ -1,43 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.6 VisualTest { diff --git a/tests/auto/declarative/examples/data/webbrowser/webbrowser.qml b/tests/auto/declarative/examples/data/webbrowser/webbrowser.qml index e16727f5ef..d31787b939 100644 --- a/tests/auto/declarative/examples/data/webbrowser/webbrowser.qml +++ b/tests/auto/declarative/examples/data/webbrowser/webbrowser.qml @@ -1,43 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.6 VisualTest { diff --git a/tests/auto/declarative/qdeclarativeanchors/data/anchors.qml b/tests/auto/declarative/qdeclarativeanchors/data/anchors.qml index 94427f2752..227a055480 100644 --- a/tests/auto/declarative/qdeclarativeanchors/data/anchors.qml +++ b/tests/auto/declarative/qdeclarativeanchors/data/anchors.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanchors/data/anchorsqgraphicswidget.qml b/tests/auto/declarative/qdeclarativeanchors/data/anchorsqgraphicswidget.qml index ab9cf76c56..d430c2cfb2 100644 --- a/tests/auto/declarative/qdeclarativeanchors/data/anchorsqgraphicswidget.qml +++ b/tests/auto/declarative/qdeclarativeanchors/data/anchorsqgraphicswidget.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanchors/data/centerin.qml b/tests/auto/declarative/qdeclarativeanchors/data/centerin.qml index ad44c0e624..e248cc33a2 100644 --- a/tests/auto/declarative/qdeclarativeanchors/data/centerin.qml +++ b/tests/auto/declarative/qdeclarativeanchors/data/centerin.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanchors/data/crash1.qml b/tests/auto/declarative/qdeclarativeanchors/data/crash1.qml index 3acb293ebc..01b469b35a 100644 --- a/tests/auto/declarative/qdeclarativeanchors/data/crash1.qml +++ b/tests/auto/declarative/qdeclarativeanchors/data/crash1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Column { diff --git a/tests/auto/declarative/qdeclarativeanchors/data/fill.qml b/tests/auto/declarative/qdeclarativeanchors/data/fill.qml index eebd9dbebb..c594365288 100644 --- a/tests/auto/declarative/qdeclarativeanchors/data/fill.qml +++ b/tests/auto/declarative/qdeclarativeanchors/data/fill.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanchors/data/loop1.qml b/tests/auto/declarative/qdeclarativeanchors/data/loop1.qml index 966264b911..bd7f3de3c3 100644 --- a/tests/auto/declarative/qdeclarativeanchors/data/loop1.qml +++ b/tests/auto/declarative/qdeclarativeanchors/data/loop1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanchors/data/loop2.qml b/tests/auto/declarative/qdeclarativeanchors/data/loop2.qml index c2f9cc38f1..e2dfde25b5 100644 --- a/tests/auto/declarative/qdeclarativeanchors/data/loop2.qml +++ b/tests/auto/declarative/qdeclarativeanchors/data/loop2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanchors/data/margins.qml b/tests/auto/declarative/qdeclarativeanchors/data/margins.qml index 86e878f03b..58bc8a80a2 100644 --- a/tests/auto/declarative/qdeclarativeanchors/data/margins.qml +++ b/tests/auto/declarative/qdeclarativeanchors/data/margins.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimatedimage/data/colors.qml b/tests/auto/declarative/qdeclarativeanimatedimage/data/colors.qml index 663fc5439c..62e5b14dfc 100644 --- a/tests/auto/declarative/qdeclarativeanimatedimage/data/colors.qml +++ b/tests/auto/declarative/qdeclarativeanimatedimage/data/colors.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 AnimatedImage { diff --git a/tests/auto/declarative/qdeclarativeanimatedimage/data/stickman.qml b/tests/auto/declarative/qdeclarativeanimatedimage/data/stickman.qml index 9a038f3f35..340078990f 100644 --- a/tests/auto/declarative/qdeclarativeanimatedimage/data/stickman.qml +++ b/tests/auto/declarative/qdeclarativeanimatedimage/data/stickman.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 AnimatedImage { diff --git a/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanerror1.qml b/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanerror1.qml index f785205b73..566f9ea930 100644 --- a/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanerror1.qml +++ b/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanerror1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 AnimatedImage { diff --git a/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanpause.qml b/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanpause.qml index 28fb317de9..92c57b6b03 100644 --- a/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanpause.qml +++ b/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanpause.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 AnimatedImage { diff --git a/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanscaled.qml b/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanscaled.qml index 930b223620..b8a254f212 100644 --- a/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanscaled.qml +++ b/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanscaled.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 AnimatedImage { diff --git a/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanstopped.qml b/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanstopped.qml index c54cbdb19f..2b6074cae1 100644 --- a/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanstopped.qml +++ b/tests/auto/declarative/qdeclarativeanimatedimage/data/stickmanstopped.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 AnimatedImage { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/attached.qml b/tests/auto/declarative/qdeclarativeanimations/data/attached.qml index 93ad80c0e3..78949f903d 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/attached.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/attached.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/badproperty1.qml b/tests/auto/declarative/qdeclarativeanimations/data/badproperty1.qml index 773b0981fb..5bb20f694b 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/badproperty1.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/badproperty1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/badproperty2.qml b/tests/auto/declarative/qdeclarativeanimations/data/badproperty2.qml index ff8cb092ed..8dc422cf15 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/badproperty2.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/badproperty2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/badtype1.qml b/tests/auto/declarative/qdeclarativeanimations/data/badtype1.qml index 92c1083e18..89cc424434 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/badtype1.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/badtype1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/badtype2.qml b/tests/auto/declarative/qdeclarativeanimations/data/badtype2.qml index 71d42c4e4a..f14eaeee31 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/badtype2.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/badtype2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/badtype3.qml b/tests/auto/declarative/qdeclarativeanimations/data/badtype3.qml index 257b5a7a29..dd0368c648 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/badtype3.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/badtype3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/badtype4.qml b/tests/auto/declarative/qdeclarativeanimations/data/badtype4.qml index ce5e668e6b..8d3d05e666 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/badtype4.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/badtype4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/dontAutoStart.qml b/tests/auto/declarative/qdeclarativeanimations/data/dontAutoStart.qml index 5ed182e51c..09987deddb 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/dontAutoStart.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/dontAutoStart.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/dontStart.qml b/tests/auto/declarative/qdeclarativeanimations/data/dontStart.qml index 91070ac14b..aab9d115af 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/dontStart.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/dontStart.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/dontStart2.qml b/tests/auto/declarative/qdeclarativeanimations/data/dontStart2.qml index 934da5dfcc..034531c50c 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/dontStart2.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/dontStart2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/dotproperty.qml b/tests/auto/declarative/qdeclarativeanimations/data/dotproperty.qml index af7be3a3c7..0e77c48105 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/dotproperty.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/dotproperty.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/mixedtype1.qml b/tests/auto/declarative/qdeclarativeanimations/data/mixedtype1.qml index c77b6194bb..def350e92b 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/mixedtype1.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/mixedtype1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/mixedtype2.qml b/tests/auto/declarative/qdeclarativeanimations/data/mixedtype2.qml index 5cc6806b4a..a95bf2a801 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/mixedtype2.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/mixedtype2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/properties.qml b/tests/auto/declarative/qdeclarativeanimations/data/properties.qml index 80b0d02953..9e4a74e799 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/properties.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/properties.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/properties2.qml b/tests/auto/declarative/qdeclarativeanimations/data/properties2.qml index d270794c0a..5de813e24e 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/properties2.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/properties2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/properties3.qml b/tests/auto/declarative/qdeclarativeanimations/data/properties3.qml index 97a39de2d4..cf1bc3fe44 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/properties3.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/properties3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/properties4.qml b/tests/auto/declarative/qdeclarativeanimations/data/properties4.qml index 1430aed07a..ce9f632a3c 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/properties4.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/properties4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/properties5.qml b/tests/auto/declarative/qdeclarativeanimations/data/properties5.qml index f247fab8c0..a7f51168d2 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/properties5.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/properties5.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition.qml b/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition.qml index cc32cd2955..d8ef5d6c33 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition2.qml b/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition2.qml index c82baaab37..b3b827d5f1 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition2.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition3.qml b/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition3.qml index 6d33635747..e6f773cb71 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition3.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition4.qml b/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition4.qml index 866985bfb5..0ae717a32e 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition4.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition5.qml b/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition5.qml index 4f6ac8f65d..44cedf0402 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition5.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition5.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition6.qml b/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition6.qml index f84fb9e369..277cc1b167 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition6.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/propertiesTransition6.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/rotation.qml b/tests/auto/declarative/qdeclarativeanimations/data/rotation.qml index 2af8e7f7e3..6e485858be 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/rotation.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/rotation.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/valuesource.qml b/tests/auto/declarative/qdeclarativeanimations/data/valuesource.qml index 830b454a5c..bb6b028c1f 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/valuesource.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/valuesource.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeanimations/data/valuesource2.qml b/tests/auto/declarative/qdeclarativeanimations/data/valuesource2.qml index 5326db78d3..b844bd81dd 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/valuesource2.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/valuesource2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/binding.qml b/tests/auto/declarative/qdeclarativebehaviors/data/binding.qml index 9a064f8b09..62e6be5e82 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/binding.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/binding.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/color.qml b/tests/auto/declarative/qdeclarativebehaviors/data/color.qml index f0f5a74207..e075bd0002 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/color.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/color.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/cpptrigger.qml b/tests/auto/declarative/qdeclarativebehaviors/data/cpptrigger.qml index 79df0a91db..c766f429bc 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/cpptrigger.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/cpptrigger.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/disabled.qml b/tests/auto/declarative/qdeclarativebehaviors/data/disabled.qml index cd73aa2497..e1f4699301 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/disabled.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/disabled.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/dontStart.qml b/tests/auto/declarative/qdeclarativebehaviors/data/dontStart.qml index d52c357e41..c0f4eac03c 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/dontStart.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/dontStart.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/empty.qml b/tests/auto/declarative/qdeclarativebehaviors/data/empty.qml index 664c327f45..b58e332c5f 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/empty.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/empty.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/explicit.qml b/tests/auto/declarative/qdeclarativebehaviors/data/explicit.qml index 850e3eed2f..0b5d00b02e 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/explicit.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/explicit.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/groupProperty.qml b/tests/auto/declarative/qdeclarativebehaviors/data/groupProperty.qml index 14fb409750..6eb0729ec2 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/groupProperty.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/groupProperty.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/groupProperty2.qml b/tests/auto/declarative/qdeclarativebehaviors/data/groupProperty2.qml index c672c8daef..42b80a5bcd 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/groupProperty2.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/groupProperty2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/loop.qml b/tests/auto/declarative/qdeclarativebehaviors/data/loop.qml index beb12c5cd8..9e328d6aa9 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/loop.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/loop.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/nonSelecting2.qml b/tests/auto/declarative/qdeclarativebehaviors/data/nonSelecting2.qml index b35157054e..5857c4dbbb 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/nonSelecting2.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/nonSelecting2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/parent.qml b/tests/auto/declarative/qdeclarativebehaviors/data/parent.qml index df2145e453..e3fd77da94 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/parent.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/parent.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/reassignedAnimation.qml b/tests/auto/declarative/qdeclarativebehaviors/data/reassignedAnimation.qml index 005b4989ca..4528cce8c9 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/reassignedAnimation.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/reassignedAnimation.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/scripttrigger.qml b/tests/auto/declarative/qdeclarativebehaviors/data/scripttrigger.qml index 5fbce580a6..f2f6352c9d 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/scripttrigger.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/scripttrigger.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/simple.qml b/tests/auto/declarative/qdeclarativebehaviors/data/simple.qml index 5619d1e422..de27f695a4 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/simple.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/simple.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: 400 diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/startup.qml b/tests/auto/declarative/qdeclarativebehaviors/data/startup.qml index 8ff0ec2b58..f3ff620e20 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/startup.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/startup.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/startup2.qml b/tests/auto/declarative/qdeclarativebehaviors/data/startup2.qml index 20cdb18f00..1911cc4eb5 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/data/startup2.qml +++ b/tests/auto/declarative/qdeclarativebehaviors/data/startup2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativebinding/data/test-binding.qml b/tests/auto/declarative/qdeclarativebinding/data/test-binding.qml index 13d660e151..9c619e613f 100644 --- a/tests/auto/declarative/qdeclarativebinding/data/test-binding.qml +++ b/tests/auto/declarative/qdeclarativebinding/data/test-binding.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativebinding/data/test-binding2.qml b/tests/auto/declarative/qdeclarativebinding/data/test-binding2.qml index e160c991fd..e0f18110f9 100644 --- a/tests/auto/declarative/qdeclarativebinding/data/test-binding2.qml +++ b/tests/auto/declarative/qdeclarativebinding/data/test-binding2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeconnection/data/connection-targetchange.qml b/tests/auto/declarative/qdeclarativeconnection/data/connection-targetchange.qml index 464146b82c..bb9a3bc0e7 100644 --- a/tests/auto/declarative/qdeclarativeconnection/data/connection-targetchange.qml +++ b/tests/auto/declarative/qdeclarativeconnection/data/connection-targetchange.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-ignored.qml b/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-ignored.qml index f204f1058a..764d5abc40 100644 --- a/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-ignored.qml +++ b/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-ignored.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-notarget.qml b/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-notarget.qml index c776251669..09e78122b7 100644 --- a/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-notarget.qml +++ b/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-notarget.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-parent.qml b/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-parent.qml index 2e35d2a14a..478503d808 100644 --- a/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-parent.qml +++ b/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals-parent.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals.qml b/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals.qml index 45d5e0ca20..d4e8d7ec72 100644 --- a/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals.qml +++ b/tests/auto/declarative/qdeclarativeconnection/data/connection-unknownsignals.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeconnection/data/test-connection.qml b/tests/auto/declarative/qdeclarativeconnection/data/test-connection.qml index c2e366077c..954ca97976 100644 --- a/tests/auto/declarative/qdeclarativeconnection/data/test-connection.qml +++ b/tests/auto/declarative/qdeclarativeconnection/data/test-connection.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeconnection/data/test-connection2.qml b/tests/auto/declarative/qdeclarativeconnection/data/test-connection2.qml index 0632f0213e..9e5a99c5d6 100644 --- a/tests/auto/declarative/qdeclarativeconnection/data/test-connection2.qml +++ b/tests/auto/declarative/qdeclarativeconnection/data/test-connection2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Connections { id: connection; target: connection; onTargetChanged: 1 == 1 } diff --git a/tests/auto/declarative/qdeclarativeconnection/data/test-connection3.qml b/tests/auto/declarative/qdeclarativeconnection/data/test-connection3.qml index 2a1b222c8f..51efde690d 100644 --- a/tests/auto/declarative/qdeclarativeconnection/data/test-connection3.qml +++ b/tests/auto/declarative/qdeclarativeconnection/data/test-connection3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Connections {} diff --git a/tests/auto/declarative/qdeclarativeconnection/data/trimming.qml b/tests/auto/declarative/qdeclarativeconnection/data/trimming.qml index 49b53b54e3..361474cf8a 100644 --- a/tests/auto/declarative/qdeclarativeconnection/data/trimming.qml +++ b/tests/auto/declarative/qdeclarativeconnection/data/trimming.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativedom/data/MyComponent.qml b/tests/auto/declarative/qdeclarativedom/data/MyComponent.qml index 8424f41fea..dd9e9ea193 100644 --- a/tests/auto/declarative/qdeclarativedom/data/MyComponent.qml +++ b/tests/auto/declarative/qdeclarativedom/data/MyComponent.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativedom/data/MyItem.qml b/tests/auto/declarative/qdeclarativedom/data/MyItem.qml index 8424f41fea..dd9e9ea193 100644 --- a/tests/auto/declarative/qdeclarativedom/data/MyItem.qml +++ b/tests/auto/declarative/qdeclarativedom/data/MyItem.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativedom/data/import/Bar.qml b/tests/auto/declarative/qdeclarativedom/data/import/Bar.qml index 938af11453..d26b299d61 100644 --- a/tests/auto/declarative/qdeclarativedom/data/import/Bar.qml +++ b/tests/auto/declarative/qdeclarativedom/data/import/Bar.qml @@ -1,43 +1,2 @@ -/**************************************************************************** -** -** 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 diff --git a/tests/auto/declarative/qdeclarativedom/data/importlib/sublib/Foo.qml b/tests/auto/declarative/qdeclarativedom/data/importlib/sublib/Foo.qml index 938af11453..d26b299d61 100644 --- a/tests/auto/declarative/qdeclarativedom/data/importlib/sublib/Foo.qml +++ b/tests/auto/declarative/qdeclarativedom/data/importlib/sublib/Foo.qml @@ -1,43 +1,2 @@ -/**************************************************************************** -** -** 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 diff --git a/tests/auto/declarative/qdeclarativedom/data/top.qml b/tests/auto/declarative/qdeclarativedom/data/top.qml index 769efd18bb..6405cd2557 100644 --- a/tests/auto/declarative/qdeclarativedom/data/top.qml +++ b/tests/auto/declarative/qdeclarativedom/data/top.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 MyComponent { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/ConstantsOverrideBindings.qml b/tests/auto/declarative/qdeclarativeecmascript/data/ConstantsOverrideBindings.qml index 8283f5ee98..b4a702bbbe 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/ConstantsOverrideBindings.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/ConstantsOverrideBindings.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/CustomObject.qml b/tests/auto/declarative/qdeclarativeecmascript/data/CustomObject.qml index d59c65f2eb..170d02701c 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/CustomObject.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/CustomObject.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/MethodsObject.qml b/tests/auto/declarative/qdeclarativeecmascript/data/MethodsObject.qml index 460cd44384..e9a41ed59a 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/MethodsObject.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/MethodsObject.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/NestedTypeTransientErrors.qml b/tests/auto/declarative/qdeclarativeecmascript/data/NestedTypeTransientErrors.qml index 152861b71c..6e50b10a63 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/NestedTypeTransientErrors.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/NestedTypeTransientErrors.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/ScopeObject.qml b/tests/auto/declarative/qdeclarativeecmascript/data/ScopeObject.qml index 7056710f02..fe0492f366 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/ScopeObject.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/ScopeObject.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/SpuriousWarning.qml b/tests/auto/declarative/qdeclarativeecmascript/data/SpuriousWarning.qml index 573ee6513a..e144de79f3 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/SpuriousWarning.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/SpuriousWarning.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/TypeForDynamicCreation.qml b/tests/auto/declarative/qdeclarativeecmascript/data/TypeForDynamicCreation.qml index fddb65211b..56e06252c4 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/TypeForDynamicCreation.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/TypeForDynamicCreation.qml @@ -1,43 +1,2 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject{objectName:"objectThree"} diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/aliasPropertyAndBinding.qml b/tests/auto/declarative/qdeclarativeecmascript/data/aliasPropertyAndBinding.qml index 42111985bb..515f80fdfb 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/aliasPropertyAndBinding.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/aliasPropertyAndBinding.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import Qt.test 1.0 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/assignBasicTypes.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/assignBasicTypes.2.qml index 12457f9c9c..db7f2b51c1 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/assignBasicTypes.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/assignBasicTypes.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/assignBasicTypes.qml b/tests/auto/declarative/qdeclarativeecmascript/data/assignBasicTypes.qml index dd95a4cfe0..72ae865b9c 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/assignBasicTypes.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/assignBasicTypes.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/attachedProperty.qml b/tests/auto/declarative/qdeclarativeecmascript/data/attachedProperty.qml index 20cdb31982..061eda0e54 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/attachedProperty.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/attachedProperty.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 import Qt.test 1.0 as Namespace diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/attachedPropertyScope.qml b/tests/auto/declarative/qdeclarativeecmascript/data/attachedPropertyScope.qml index 7c43ff6256..f31f142803 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/attachedPropertyScope.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/attachedPropertyScope.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import Qt.test 1.0 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/bindingLoop.qml b/tests/auto/declarative/qdeclarativeecmascript/data/bindingLoop.qml index 2a392dbcef..80545cf72b 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/bindingLoop.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/bindingLoop.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlContainer { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/boolPropertiesEvaluateAsBool.1.qml b/tests/auto/declarative/qdeclarativeecmascript/data/boolPropertiesEvaluateAsBool.1.qml index 65fb49a495..3147f63989 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/boolPropertiesEvaluateAsBool.1.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/boolPropertiesEvaluateAsBool.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/boolPropertiesEvaluateAsBool.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/boolPropertiesEvaluateAsBool.2.qml index 35be3ab242..c89bb49b45 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/boolPropertiesEvaluateAsBool.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/boolPropertiesEvaluateAsBool.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/bug.1.qml b/tests/auto/declarative/qdeclarativeecmascript/data/bug.1.qml index e50d1a77d3..88740dcc63 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/bug.1.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/bug.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/canAssignNullToQObject.1.qml b/tests/auto/declarative/qdeclarativeecmascript/data/canAssignNullToQObject.1.qml index 95c28b42f9..3fd9131b2f 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/canAssignNullToQObject.1.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/canAssignNullToQObject.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/canAssignNullToQObject.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/canAssignNullToQObject.2.qml index 0730e70b7a..7530396503 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/canAssignNullToQObject.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/canAssignNullToQObject.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/compiled.qml b/tests/auto/declarative/qdeclarativeecmascript/data/compiled.qml index f16c5688c0..165590585d 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/compiled.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/compiled.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/compositePropertyType.qml b/tests/auto/declarative/qdeclarativeecmascript/data/compositePropertyType.qml index 62a39df294..1dc0ada366 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/compositePropertyType.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/compositePropertyType.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/constantsOverrideBindings.1.qml b/tests/auto/declarative/qdeclarativeecmascript/data/constantsOverrideBindings.1.qml index e6b3ee2795..13c5ae5fff 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/constantsOverrideBindings.1.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/constantsOverrideBindings.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/constantsOverrideBindings.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/constantsOverrideBindings.2.qml index a2fa72b3ae..207a06b700 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/constantsOverrideBindings.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/constantsOverrideBindings.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/constantsOverrideBindings.3.qml b/tests/auto/declarative/qdeclarativeecmascript/data/constantsOverrideBindings.3.qml index 021df66725..ca9d1d8ab9 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/constantsOverrideBindings.3.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/constantsOverrideBindings.3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/declarativeToString.qml b/tests/auto/declarative/qdeclarativeecmascript/data/declarativeToString.qml index 96fc4d5ac7..ac296ce293 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/declarativeToString.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/declarativeToString.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject{ diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/deferredProperties.qml b/tests/auto/declarative/qdeclarativeecmascript/data/deferredProperties.qml index 0d1d3b07b3..e01f708a07 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/deferredProperties.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/deferredProperties.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyDeferredObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/deferredPropertiesErrors.qml b/tests/auto/declarative/qdeclarativeecmascript/data/deferredPropertiesErrors.qml index ae9d374dbb..9c46c3fcbb 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/deferredPropertiesErrors.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/deferredPropertiesErrors.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/deletedEngine.qml b/tests/auto/declarative/qdeclarativeecmascript/data/deletedEngine.qml index 042c2b9341..6fc12113f0 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/deletedEngine.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/deletedEngine.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/deletedObject.qml b/tests/auto/declarative/qdeclarativeecmascript/data/deletedObject.qml index ed43cbb441..2337e445a8 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/deletedObject.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/deletedObject.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import Qt.test 1.0 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/dynamicCreation.helper.qml b/tests/auto/declarative/qdeclarativeecmascript/data/dynamicCreation.helper.qml index 5032cdbb98..d790d634e9 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/dynamicCreation.helper.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/dynamicCreation.helper.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject{ diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/dynamicCreation.qml b/tests/auto/declarative/qdeclarativeecmascript/data/dynamicCreation.qml index 9090abf1a2..7b132e1edf 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/dynamicCreation.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/dynamicCreation.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject{ diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/dynamicDeletion.qml b/tests/auto/declarative/qdeclarativeecmascript/data/dynamicDeletion.qml index 82f4b810d4..f41e5262fd 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/dynamicDeletion.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/dynamicDeletion.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject{ diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/enums.1.qml b/tests/auto/declarative/qdeclarativeecmascript/data/enums.1.qml index 641bd373c8..6351823230 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/enums.1.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/enums.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 import Qt.test 1.0 as Namespace diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/enums.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/enums.2.qml index 9c4170affe..bdc672fadc 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/enums.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/enums.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 import Qt.test 1.0 as Namespace diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/eval.qml b/tests/auto/declarative/qdeclarativeecmascript/data/eval.qml index 53ea6595a2..bc2df98964 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/eval.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/eval.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/exceptionClearsOnReeval.qml b/tests/auto/declarative/qdeclarativeecmascript/data/exceptionClearsOnReeval.qml index 5581840e91..a2f0d1a8b7 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/exceptionClearsOnReeval.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/exceptionClearsOnReeval.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/exceptionProducesWarning.qml b/tests/auto/declarative/qdeclarativeecmascript/data/exceptionProducesWarning.qml index c148dce57a..14046f03bb 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/exceptionProducesWarning.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/exceptionProducesWarning.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import Qt.test 1.0 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/exceptionProducesWarning2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/exceptionProducesWarning2.qml index 997cd490a3..146f6f1455 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/exceptionProducesWarning2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/exceptionProducesWarning2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import Qt.test 1.0 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/extendedObjectPropertyLookup.qml b/tests/auto/declarative/qdeclarativeecmascript/data/extendedObjectPropertyLookup.qml index 95d9770e63..dc78cd8d00 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/extendedObjectPropertyLookup.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/extendedObjectPropertyLookup.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/extensionObjects.qml b/tests/auto/declarative/qdeclarativeecmascript/data/extensionObjects.qml index dc4cd242ef..c57e5f81c4 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/extensionObjects.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/extensionObjects.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/extensionObjectsPropertyOverride.qml b/tests/auto/declarative/qdeclarativeecmascript/data/extensionObjectsPropertyOverride.qml index 30ac7ad9e1..3c443cb975 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/extensionObjectsPropertyOverride.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/extensionObjectsPropertyOverride.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 OverrideDefaultPropertyObject diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/function.qml b/tests/auto/declarative/qdeclarativeecmascript/data/function.qml index 3ef61d505a..b435f5812e 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/function.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/function.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/functionAssignment.1.qml b/tests/auto/declarative/qdeclarativeecmascript/data/functionAssignment.1.qml index c695c3020d..09540f1f6e 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/functionAssignment.1.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/functionAssignment.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/functionAssignment.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/functionAssignment.2.qml index 69c9056cc1..948b39c147 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/functionAssignment.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/functionAssignment.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/functionErrors.qml b/tests/auto/declarative/qdeclarativeecmascript/data/functionErrors.qml index fc81ff9c82..a893fb0f6d 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/functionErrors.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/functionErrors.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/idShortcutInvalidates.1.qml b/tests/auto/declarative/qdeclarativeecmascript/data/idShortcutInvalidates.1.qml index fbcc700c73..e3b29aea00 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/idShortcutInvalidates.1.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/idShortcutInvalidates.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/idShortcutInvalidates.qml b/tests/auto/declarative/qdeclarativeecmascript/data/idShortcutInvalidates.qml index e0bbd18c24..4746f3f803 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/idShortcutInvalidates.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/idShortcutInvalidates.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include.qml b/tests/auto/declarative/qdeclarativeecmascript/data/include.qml index 2d690a5599..18543b2dee 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/include.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import "include.js" as IncludeTest diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include_callback.qml b/tests/auto/declarative/qdeclarativeecmascript/data/include_callback.qml index 06bbba2c47..a39e821ca7 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/include_callback.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include_callback.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import "include_callback.js" as IncludeTest diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include_pragma.qml b/tests/auto/declarative/qdeclarativeecmascript/data/include_pragma.qml index 7b48744b95..67b8cfd85b 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/include_pragma.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include_pragma.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import "include_pragma_outer.js" as Script diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include_remote.qml b/tests/auto/declarative/qdeclarativeecmascript/data/include_remote.qml index 89e431a1b1..06bd17476d 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/include_remote.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include_remote.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import "include_remote.js" as IncludeTest diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include_remote_missing.qml b/tests/auto/declarative/qdeclarativeecmascript/data/include_remote_missing.qml index daf26942b5..8e486b20e9 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/include_remote_missing.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include_remote_missing.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import "include_remote_missing.js" as IncludeTest diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/include_shared.qml b/tests/auto/declarative/qdeclarativeecmascript/data/include_shared.qml index 1dfcbadb76..e957018908 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/include_shared.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/include_shared.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import "include_shared.js" as IncludeTest diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/jsObject.qml b/tests/auto/declarative/qdeclarativeecmascript/data/jsObject.qml index 3ee734b942..fb4fa4d60f 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/jsObject.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/jsObject.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/libraryScriptAssert.qml b/tests/auto/declarative/qdeclarativeecmascript/data/libraryScriptAssert.qml index d42c0209f5..a945a160b3 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/libraryScriptAssert.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/libraryScriptAssert.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import "libraryScriptAssert.js" as Test diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/listProperties.qml b/tests/auto/declarative/qdeclarativeecmascript/data/listProperties.qml index 4c6092ef0f..3ba4183fc7 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/listProperties.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/listProperties.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/listToVariant.qml b/tests/auto/declarative/qdeclarativeecmascript/data/listToVariant.qml index 21a7d45d66..697530f0a9 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/listToVariant.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/listToVariant.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/methods.1.qml b/tests/auto/declarative/qdeclarativeecmascript/data/methods.1.qml index 21b15b1ad4..0bbee16df8 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/methods.1.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/methods.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/methods.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/methods.2.qml index cfc9152e42..9f0c6b15fe 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/methods.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/methods.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/methods.3.qml b/tests/auto/declarative/qdeclarativeecmascript/data/methods.3.qml index aec236723b..269bd83a5e 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/methods.3.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/methods.3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/methods.4.qml b/tests/auto/declarative/qdeclarativeecmascript/data/methods.4.qml index ce0432d823..2ea9cdb420 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/methods.4.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/methods.4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 MethodsObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/methods.5.qml b/tests/auto/declarative/qdeclarativeecmascript/data/methods.5.qml index 71318431ec..0065adda48 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/methods.5.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/methods.5.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/multiEngineObject.qml b/tests/auto/declarative/qdeclarativeecmascript/data/multiEngineObject.qml index 8865295d99..a8cb50e6d5 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/multiEngineObject.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/multiEngineObject.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/noSpuriousWarningsAtShutdown.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/noSpuriousWarningsAtShutdown.2.qml index 83db057e41..8be2d5bb25 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/noSpuriousWarningsAtShutdown.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/noSpuriousWarningsAtShutdown.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/noSpuriousWarningsAtShutdown.qml b/tests/auto/declarative/qdeclarativeecmascript/data/noSpuriousWarningsAtShutdown.qml index 74f6b620b3..daa9b0b6ef 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/noSpuriousWarningsAtShutdown.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/noSpuriousWarningsAtShutdown.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/nonExistantAttachedObject.qml b/tests/auto/declarative/qdeclarativeecmascript/data/nonExistantAttachedObject.qml index 1b25a98f87..f9585db009 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/nonExistantAttachedObject.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/nonExistantAttachedObject.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/nullObjectBinding.qml b/tests/auto/declarative/qdeclarativeecmascript/data/nullObjectBinding.qml index dd7fdbdfa4..11472a0e93 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/nullObjectBinding.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/nullObjectBinding.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/numberAssignment.qml b/tests/auto/declarative/qdeclarativeecmascript/data/numberAssignment.qml index 122db3b940..30a77e8aed 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/numberAssignment.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/numberAssignment.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 NumberAssignment { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/objectsCompareAsEqual.qml b/tests/auto/declarative/qdeclarativeecmascript/data/objectsCompareAsEqual.qml index e3ddae725c..4b511095f3 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/objectsCompareAsEqual.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/objectsCompareAsEqual.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/outerBindingOverridesInnerBinding.qml b/tests/auto/declarative/qdeclarativeecmascript/data/outerBindingOverridesInnerBinding.qml index e38c88a63b..0a933e86f2 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/outerBindingOverridesInnerBinding.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/outerBindingOverridesInnerBinding.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/ownership.qml b/tests/auto/declarative/qdeclarativeecmascript/data/ownership.qml index c71e1d54e7..231c9e57a9 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/ownership.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/ownership.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/propertyAssignmentErrors.qml b/tests/auto/declarative/qdeclarativeecmascript/data/propertyAssignmentErrors.qml index a45d3d7249..bef40fd44b 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/propertyAssignmentErrors.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/propertyAssignmentErrors.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/qlistqobjectMethods.qml b/tests/auto/declarative/qdeclarativeecmascript/data/qlistqobjectMethods.qml index fa9855f724..22c4f0b77e 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/qlistqobjectMethods.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/qlistqobjectMethods.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_10696.qml b/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_10696.qml index 7d6c44df36..cb5c4c9189 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_10696.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_10696.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_9792.qml b/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_9792.qml index 15927d9690..9ac44308c6 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_9792.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/qtbug_9792.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/qtcreatorbug_1289.qml b/tests/auto/declarative/qdeclarativeecmascript/data/qtcreatorbug_1289.qml index addc1e29cc..b6d31d579c 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/qtcreatorbug_1289.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/qtcreatorbug_1289.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/regExp.qml b/tests/auto/declarative/qdeclarativeecmascript/data/regExp.qml index e42c0a6651..0dc404b5db 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/regExp.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/regExp.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject{ diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scope.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scope.2.qml index b7eb7ad4fb..d4d7eb270c 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scope.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scope.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scope.3.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scope.3.qml index 5a349f9425..4395ba3306 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scope.3.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scope.3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scope.4.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scope.4.qml index 9d2ad01652..d65b6e7c7c 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scope.4.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scope.4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scope.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scope.qml index 5d031109eb..7f895ff049 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scope.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scope.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.1.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.1.qml index 1238fa3893..5d8e29e096 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.1.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 import Qt 4.7 import "scriptConnect.1.js" as Script diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.2.qml index b3b01935a6..56819075b4 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 import Qt 4.7 import "scriptConnect.2.js" as Script diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.3.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.3.qml index 4f2c170e8f..40d8079ba2 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.3.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.4.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.4.qml index 6be1bfd62a..0356650fa9 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.4.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.5.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.5.qml index 1008bec753..661f28e1c6 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.5.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.5.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.6.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.6.qml index 37ea249760..36655ee7de 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.6.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.6.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 import Qt 4.7 import "scriptConnect.6.js" as Script diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.1.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.1.qml index 41b90ce375..0cb4d79e39 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.1.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 import Qt 4.7 import "scriptDisconnect.1.js" as Script diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.2.qml index 7db3f89424..05ca7a47a6 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 import Qt 4.7 import "scriptDisconnect.1.js" as Script diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.3.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.3.qml index 660f10cbea..2a66bed337 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.3.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 import Qt 4.7 import "scriptDisconnect.1.js" as Script diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.4.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.4.qml index 46275ada07..7beb84e879 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.4.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scriptDisconnect.4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 import Qt 4.7 import "scriptDisconnect.1.js" as Script diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scriptErrors.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scriptErrors.qml index bcfbf333ff..e8f7b6262b 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/scriptErrors.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scriptErrors.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 import "scriptErrors.js" as Script diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/selfDeletingBinding.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/selfDeletingBinding.2.qml index 1371c98003..58cf8051f0 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/selfDeletingBinding.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/selfDeletingBinding.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlContainer { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/selfDeletingBinding.qml b/tests/auto/declarative/qdeclarativeecmascript/data/selfDeletingBinding.qml index 39c8ce064e..074851a67b 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/selfDeletingBinding.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/selfDeletingBinding.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlContainer { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/shutdownErrors.qml b/tests/auto/declarative/qdeclarativeecmascript/data/shutdownErrors.qml index 4e7b49b760..823096be22 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/shutdownErrors.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/shutdownErrors.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/signalAssignment.1.qml b/tests/auto/declarative/qdeclarativeecmascript/data/signalAssignment.1.qml index fa512d7da9..fbd09142f7 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/signalAssignment.1.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/signalAssignment.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/signalAssignment.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/signalAssignment.2.qml index 99d01cef9a..8addcb9125 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/signalAssignment.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/signalAssignment.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/signalParameterTypes.qml b/tests/auto/declarative/qdeclarativeecmascript/data/signalParameterTypes.qml index 6aab02ec39..ffbe317690 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/signalParameterTypes.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/signalParameterTypes.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/signalTriggeredBindings.qml b/tests/auto/declarative/qdeclarativeecmascript/data/signalTriggeredBindings.qml index bad3c45010..a2fb4d001e 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/signalTriggeredBindings.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/signalTriggeredBindings.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/strictlyEquals.qml b/tests/auto/declarative/qdeclarativeecmascript/data/strictlyEquals.qml index 88cce9ba0a..ec49a9592a 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/strictlyEquals.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/strictlyEquals.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.2.qml index 6264ff0ca2..a36b4c0849 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.qml b/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.qml index c8b4b44488..26d959677b 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/transientErrors.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/undefinedResetsProperty.2.qml b/tests/auto/declarative/qdeclarativeecmascript/data/undefinedResetsProperty.2.qml index 7445047720..e73d38e2ce 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/undefinedResetsProperty.2.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/undefinedResetsProperty.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/undefinedResetsProperty.qml b/tests/auto/declarative/qdeclarativeecmascript/data/undefinedResetsProperty.qml index 356c095a9a..eceff60aa1 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/undefinedResetsProperty.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/undefinedResetsProperty.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/valueTypeFunctions.qml b/tests/auto/declarative/qdeclarativeecmascript/data/valueTypeFunctions.qml index 456d5ad901..33b4a68c40 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/valueTypeFunctions.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/valueTypeFunctions.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/variantsAssignedUndefined.qml b/tests/auto/declarative/qdeclarativeecmascript/data/variantsAssignedUndefined.qml index ac7734c3eb..46e18e5b31 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/data/variantsAssignedUndefined.qml +++ b/tests/auto/declarative/qdeclarativeecmascript/data/variantsAssignedUndefined.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeflickable/data/flickable01.qml b/tests/auto/declarative/qdeclarativeflickable/data/flickable01.qml index fbcc08eb7d..45272e3536 100644 --- a/tests/auto/declarative/qdeclarativeflickable/data/flickable01.qml +++ b/tests/auto/declarative/qdeclarativeflickable/data/flickable01.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Flickable { diff --git a/tests/auto/declarative/qdeclarativeflickable/data/flickable02.qml b/tests/auto/declarative/qdeclarativeflickable/data/flickable02.qml index 3840a94c6e..2550fccd45 100644 --- a/tests/auto/declarative/qdeclarativeflickable/data/flickable02.qml +++ b/tests/auto/declarative/qdeclarativeflickable/data/flickable02.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Flickable { diff --git a/tests/auto/declarative/qdeclarativeflickable/data/flickable03.qml b/tests/auto/declarative/qdeclarativeflickable/data/flickable03.qml index 2153527f5d..27fe653a80 100644 --- a/tests/auto/declarative/qdeclarativeflickable/data/flickable03.qml +++ b/tests/auto/declarative/qdeclarativeflickable/data/flickable03.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Flickable { diff --git a/tests/auto/declarative/qdeclarativeflickable/data/flickable04.qml b/tests/auto/declarative/qdeclarativeflickable/data/flickable04.qml index 559ef4e28f..aa156edcdf 100644 --- a/tests/auto/declarative/qdeclarativeflickable/data/flickable04.qml +++ b/tests/auto/declarative/qdeclarativeflickable/data/flickable04.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Flickable { diff --git a/tests/auto/declarative/qdeclarativeflipable/data/crash.qml b/tests/auto/declarative/qdeclarativeflipable/data/crash.qml index 42825b20b8..fb369a62fd 100644 --- a/tests/auto/declarative/qdeclarativeflipable/data/crash.qml +++ b/tests/auto/declarative/qdeclarativeflipable/data/crash.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Flipable { diff --git a/tests/auto/declarative/qdeclarativeflipable/data/flipable-abort.qml b/tests/auto/declarative/qdeclarativeflipable/data/flipable-abort.qml index 21f8873083..41463feadb 100644 --- a/tests/auto/declarative/qdeclarativeflipable/data/flipable-abort.qml +++ b/tests/auto/declarative/qdeclarativeflipable/data/flipable-abort.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeflipable/data/test-flipable.qml b/tests/auto/declarative/qdeclarativeflipable/data/test-flipable.qml index a46fa3959b..5ddf09df64 100644 --- a/tests/auto/declarative/qdeclarativeflipable/data/test-flipable.qml +++ b/tests/auto/declarative/qdeclarativeflipable/data/test-flipable.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Flipable { diff --git a/tests/auto/declarative/qdeclarativefocusscope/data/forcefocus.qml b/tests/auto/declarative/qdeclarativefocusscope/data/forcefocus.qml index 60124ab483..5904fd65a0 100644 --- a/tests/auto/declarative/qdeclarativefocusscope/data/forcefocus.qml +++ b/tests/auto/declarative/qdeclarativefocusscope/data/forcefocus.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativefocusscope/data/test.qml b/tests/auto/declarative/qdeclarativefocusscope/data/test.qml index ba5f94a9b4..6b09c29d92 100644 --- a/tests/auto/declarative/qdeclarativefocusscope/data/test.qml +++ b/tests/auto/declarative/qdeclarativefocusscope/data/test.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativefocusscope/data/test2.qml b/tests/auto/declarative/qdeclarativefocusscope/data/test2.qml index 4b0ac77d86..216277e7ea 100644 --- a/tests/auto/declarative/qdeclarativefocusscope/data/test2.qml +++ b/tests/auto/declarative/qdeclarativefocusscope/data/test2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativefocusscope/data/test3.qml b/tests/auto/declarative/qdeclarativefocusscope/data/test3.qml index 51968d0d12..2ac0d18be9 100644 --- a/tests/auto/declarative/qdeclarativefocusscope/data/test3.qml +++ b/tests/auto/declarative/qdeclarativefocusscope/data/test3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativefocusscope/data/test4.qml b/tests/auto/declarative/qdeclarativefocusscope/data/test4.qml index 4816830b46..8862b3947a 100644 --- a/tests/auto/declarative/qdeclarativefocusscope/data/test4.qml +++ b/tests/auto/declarative/qdeclarativefocusscope/data/test4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativefocusscope/data/test5.qml b/tests/auto/declarative/qdeclarativefocusscope/data/test5.qml index 12624a3bfd..d67ec57534 100644 --- a/tests/auto/declarative/qdeclarativefocusscope/data/test5.qml +++ b/tests/auto/declarative/qdeclarativefocusscope/data/test5.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativefolderlistmodel/data/basic.qml b/tests/auto/declarative/qdeclarativefolderlistmodel/data/basic.qml index a9b7962d0a..2c4977d08b 100644 --- a/tests/auto/declarative/qdeclarativefolderlistmodel/data/basic.qml +++ b/tests/auto/declarative/qdeclarativefolderlistmodel/data/basic.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.labs.folderlistmodel 1.0 FolderListModel { diff --git a/tests/auto/declarative/qdeclarativefolderlistmodel/data/dummy.qml b/tests/auto/declarative/qdeclarativefolderlistmodel/data/dummy.qml index 0cf2bb1433..609638bec6 100644 --- a/tests/auto/declarative/qdeclarativefolderlistmodel/data/dummy.qml +++ b/tests/auto/declarative/qdeclarativefolderlistmodel/data/dummy.qml @@ -1,42 +1 @@ -/**************************************************************************** -** -** 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$ -** -****************************************************************************/ - // This file is not used, it is just content for QDirModel diff --git a/tests/auto/declarative/qdeclarativegridview/data/displaygrid.qml b/tests/auto/declarative/qdeclarativegridview/data/displaygrid.qml index 23059fc128..9c3c8475c4 100644 --- a/tests/auto/declarative/qdeclarativegridview/data/displaygrid.qml +++ b/tests/auto/declarative/qdeclarativegridview/data/displaygrid.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativegridview/data/gridview-enforcerange.qml b/tests/auto/declarative/qdeclarativegridview/data/gridview-enforcerange.qml index d8e2b6f789..2fe173fc83 100644 --- a/tests/auto/declarative/qdeclarativegridview/data/gridview-enforcerange.qml +++ b/tests/auto/declarative/qdeclarativegridview/data/gridview-enforcerange.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativegridview/data/gridview-initCurrent.qml b/tests/auto/declarative/qdeclarativegridview/data/gridview-initCurrent.qml index 0849e98c37..93312433e6 100644 --- a/tests/auto/declarative/qdeclarativegridview/data/gridview-initCurrent.qml +++ b/tests/auto/declarative/qdeclarativegridview/data/gridview-initCurrent.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativegridview/data/gridview1.qml b/tests/auto/declarative/qdeclarativegridview/data/gridview1.qml index 0d748b9393..3d826dd406 100644 --- a/tests/auto/declarative/qdeclarativegridview/data/gridview1.qml +++ b/tests/auto/declarative/qdeclarativegridview/data/gridview1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativegridview/data/gridview2.qml b/tests/auto/declarative/qdeclarativegridview/data/gridview2.qml index a633a5c7f5..772255da45 100644 --- a/tests/auto/declarative/qdeclarativegridview/data/gridview2.qml +++ b/tests/auto/declarative/qdeclarativegridview/data/gridview2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 GridView { diff --git a/tests/auto/declarative/qdeclarativegridview/data/gridview3.qml b/tests/auto/declarative/qdeclarativegridview/data/gridview3.qml index 0a12c71ec3..f108e3ddd7 100644 --- a/tests/auto/declarative/qdeclarativegridview/data/gridview3.qml +++ b/tests/auto/declarative/qdeclarativegridview/data/gridview3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 GridView { diff --git a/tests/auto/declarative/qdeclarativegridview/data/manual-highlight.qml b/tests/auto/declarative/qdeclarativegridview/data/manual-highlight.qml index b8c0b054e4..510fcc542b 100644 --- a/tests/auto/declarative/qdeclarativegridview/data/manual-highlight.qml +++ b/tests/auto/declarative/qdeclarativegridview/data/manual-highlight.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativegridview/data/propertychangestest.qml b/tests/auto/declarative/qdeclarativegridview/data/propertychangestest.qml index 50a3fa04bd..8e4e1783ce 100644 --- a/tests/auto/declarative/qdeclarativegridview/data/propertychangestest.qml +++ b/tests/auto/declarative/qdeclarativegridview/data/propertychangestest.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativegridview/data/setindex.qml b/tests/auto/declarative/qdeclarativegridview/data/setindex.qml index a89564e35c..93ef69ba18 100644 --- a/tests/auto/declarative/qdeclarativegridview/data/setindex.qml +++ b/tests/auto/declarative/qdeclarativegridview/data/setindex.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeimage/data/aspectratio.qml b/tests/auto/declarative/qdeclarativeimage/data/aspectratio.qml index 81be71043d..402d33e2f5 100644 --- a/tests/auto/declarative/qdeclarativeimage/data/aspectratio.qml +++ b/tests/auto/declarative/qdeclarativeimage/data/aspectratio.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Image { diff --git a/tests/auto/declarative/qdeclarativeimage/data/tiling.qml b/tests/auto/declarative/qdeclarativeimage/data/tiling.qml index f93db0611b..32839bbbf1 100644 --- a/tests/auto/declarative/qdeclarativeimage/data/tiling.qml +++ b/tests/auto/declarative/qdeclarativeimage/data/tiling.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeinfo/data/NestedObject.qml b/tests/auto/declarative/qdeclarativeinfo/data/NestedObject.qml index 50d396ca9e..30e82742dd 100644 --- a/tests/auto/declarative/qdeclarativeinfo/data/NestedObject.qml +++ b/tests/auto/declarative/qdeclarativeinfo/data/NestedObject.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeinfo/data/nestedQmlObject.qml b/tests/auto/declarative/qdeclarativeinfo/data/nestedQmlObject.qml index 062dde90ad..9bd8571963 100644 --- a/tests/auto/declarative/qdeclarativeinfo/data/nestedQmlObject.qml +++ b/tests/auto/declarative/qdeclarativeinfo/data/nestedQmlObject.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeinfo/data/qmlObject.qml b/tests/auto/declarative/qdeclarativeinfo/data/qmlObject.qml index 38b7c54a27..9bb6be712d 100644 --- a/tests/auto/declarative/qdeclarativeinfo/data/qmlObject.qml +++ b/tests/auto/declarative/qdeclarativeinfo/data/qmlObject.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeitem/data/childrenProperty.qml b/tests/auto/declarative/qdeclarativeitem/data/childrenProperty.qml index 598a027c94..595800412d 100644 --- a/tests/auto/declarative/qdeclarativeitem/data/childrenProperty.qml +++ b/tests/auto/declarative/qdeclarativeitem/data/childrenProperty.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeitem/data/childrenRect.qml b/tests/auto/declarative/qdeclarativeitem/data/childrenRect.qml index 1fd8833add..f351b53dbb 100644 --- a/tests/auto/declarative/qdeclarativeitem/data/childrenRect.qml +++ b/tests/auto/declarative/qdeclarativeitem/data/childrenRect.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeitem/data/keynavigationtest.qml b/tests/auto/declarative/qdeclarativeitem/data/keynavigationtest.qml index bfbf4ca673..87e64c5acd 100644 --- a/tests/auto/declarative/qdeclarativeitem/data/keynavigationtest.qml +++ b/tests/auto/declarative/qdeclarativeitem/data/keynavigationtest.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Grid { diff --git a/tests/auto/declarative/qdeclarativeitem/data/keyspriority.qml b/tests/auto/declarative/qdeclarativeitem/data/keyspriority.qml index b86d22692b..171536b9d8 100644 --- a/tests/auto/declarative/qdeclarativeitem/data/keyspriority.qml +++ b/tests/auto/declarative/qdeclarativeitem/data/keyspriority.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import Test 1.0 diff --git a/tests/auto/declarative/qdeclarativeitem/data/keystest.qml b/tests/auto/declarative/qdeclarativeitem/data/keystest.qml index 961a440ddf..8ff3e87b8b 100644 --- a/tests/auto/declarative/qdeclarativeitem/data/keystest.qml +++ b/tests/auto/declarative/qdeclarativeitem/data/keystest.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeitem/data/mapCoordinates.qml b/tests/auto/declarative/qdeclarativeitem/data/mapCoordinates.qml index 20b61fd930..4a92e9d301 100644 --- a/tests/auto/declarative/qdeclarativeitem/data/mapCoordinates.qml +++ b/tests/auto/declarative/qdeclarativeitem/data/mapCoordinates.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeitem/data/mouseFocus.qml b/tests/auto/declarative/qdeclarativeitem/data/mouseFocus.qml index f8ff606f65..a562b8b0ea 100644 --- a/tests/auto/declarative/qdeclarativeitem/data/mouseFocus.qml +++ b/tests/auto/declarative/qdeclarativeitem/data/mouseFocus.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QGraphicsWidget { diff --git a/tests/auto/declarative/qdeclarativeitem/data/propertychanges.qml b/tests/auto/declarative/qdeclarativeitem/data/propertychanges.qml index 0a386989e9..dd8645375d 100644 --- a/tests/auto/declarative/qdeclarativeitem/data/propertychanges.qml +++ b/tests/auto/declarative/qdeclarativeitem/data/propertychanges.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeitem/data/resourcesProperty.qml b/tests/auto/declarative/qdeclarativeitem/data/resourcesProperty.qml index 31952019e2..852f24216f 100644 --- a/tests/auto/declarative/qdeclarativeitem/data/resourcesProperty.qml +++ b/tests/auto/declarative/qdeclarativeitem/data/resourcesProperty.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/Alias.qml b/tests/auto/declarative/qdeclarativelanguage/data/Alias.qml index edf72fbf38..deb84a8eaf 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/Alias.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/Alias.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/Alias2.qml b/tests/auto/declarative/qdeclarativelanguage/data/Alias2.qml index 7fc838a61e..db205f112e 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/Alias2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/Alias2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/Alias3.qml b/tests/auto/declarative/qdeclarativelanguage/data/Alias3.qml index c047193f42..04f5ba37d7 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/Alias3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/Alias3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/Alias4.qml b/tests/auto/declarative/qdeclarativelanguage/data/Alias4.qml index 74d9c89a47..80414acbe7 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/Alias4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/Alias4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/ComponentComposite.qml b/tests/auto/declarative/qdeclarativelanguage/data/ComponentComposite.qml index 0ffed90f3a..4c78cd774c 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/ComponentComposite.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/ComponentComposite.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Component { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/CompositeType.qml b/tests/auto/declarative/qdeclarativelanguage/data/CompositeType.qml index bc6b152768..61e6146d9c 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/CompositeType.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/CompositeType.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/CompositeType2.qml b/tests/auto/declarative/qdeclarativelanguage/data/CompositeType2.qml index e8a37678f1..86210e9072 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/CompositeType2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/CompositeType2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/CompositeType3.qml b/tests/auto/declarative/qdeclarativelanguage/data/CompositeType3.qml index a22ba254c0..0275e214e3 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/CompositeType3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/CompositeType3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/CompositeType4.qml b/tests/auto/declarative/qdeclarativelanguage/data/CompositeType4.qml index 71f5b68aa5..a6a8168d8f 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/CompositeType4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/CompositeType4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/DynamicPropertiesNestedType.qml b/tests/auto/declarative/qdeclarativelanguage/data/DynamicPropertiesNestedType.qml index 81b629ce79..9746ab0607 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/DynamicPropertiesNestedType.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/DynamicPropertiesNestedType.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/HelperAlias.qml b/tests/auto/declarative/qdeclarativelanguage/data/HelperAlias.qml index 18ab9b5344..23d6ed9aeb 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/HelperAlias.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/HelperAlias.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/I18n.qml b/tests/auto/declarative/qdeclarativelanguage/data/I18n.qml index 78cd7f3f8b..558c836e52 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/I18n.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/I18n.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/I18nType30.qml b/tests/auto/declarative/qdeclarativelanguage/data/I18nType30.qml index 73297bc252..42dbc69044 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/I18nType30.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/I18nType30.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/LocalLast.qml b/tests/auto/declarative/qdeclarativelanguage/data/LocalLast.qml index af5647ed52..8c953cbc4b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/LocalLast.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/LocalLast.qml @@ -1,43 +1,2 @@ -/**************************************************************************** -** -** 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 Text {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/MyComponent.qml b/tests/auto/declarative/qdeclarativelanguage/data/MyComponent.qml index a33772ace8..1a23277ff8 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/MyComponent.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/MyComponent.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/MyCompositeValueSource.qml b/tests/auto/declarative/qdeclarativelanguage/data/MyCompositeValueSource.qml index 13722bc137..e620e26490 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/MyCompositeValueSource.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/MyCompositeValueSource.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyPropertyValueSource { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/MyContainerComponent.qml b/tests/auto/declarative/qdeclarativelanguage/data/MyContainerComponent.qml index 6a7572cffd..61f54c5eb8 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/MyContainerComponent.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/MyContainerComponent.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyContainer { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/NestedAlias.qml b/tests/auto/declarative/qdeclarativelanguage/data/NestedAlias.qml index 6f1c823c65..fdf480012b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/NestedAlias.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/NestedAlias.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/NestedErrorsType.qml b/tests/auto/declarative/qdeclarativelanguage/data/NestedErrorsType.qml index ea02329c30..ee023357d5 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/NestedErrorsType.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/NestedErrorsType.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/OnCompletedType.qml b/tests/auto/declarative/qdeclarativelanguage/data/OnCompletedType.qml index 2192adba0d..537395916a 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/OnCompletedType.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/OnCompletedType.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/OnDestructionType.qml b/tests/auto/declarative/qdeclarativelanguage/data/OnDestructionType.qml index 63a6c0051f..d5c6979b92 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/OnDestructionType.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/OnDestructionType.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/alias.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/alias.1.qml index 962f1fbc7b..291d47a496 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/alias.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/alias.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/alias.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/alias.2.qml index 8cc12b9176..5c922709fe 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/alias.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/alias.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/alias.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/alias.3.qml index 97418c897e..787eb77a86 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/alias.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/alias.3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/alias.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/alias.4.qml index 882d87ea07..bd6a769367 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/alias.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/alias.4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 Alias2 { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/alias.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/alias.5.qml index 30261b8a0e..bbd190110d 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/alias.5.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/alias.5.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import Test 1.0 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/alias.6.qml b/tests/auto/declarative/qdeclarativelanguage/data/alias.6.qml index 7ff038dd2e..2d99b64eeb 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/alias.6.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/alias.6.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/alias.7.qml b/tests/auto/declarative/qdeclarativelanguage/data/alias.7.qml index 6f1c7ff3c3..4ceff3d869 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/alias.7.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/alias.7.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/alias.8.qml b/tests/auto/declarative/qdeclarativelanguage/data/alias.8.qml index c72362509b..5bf8702bdd 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/alias.8.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/alias.8.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/alias.9.qml b/tests/auto/declarative/qdeclarativelanguage/data/alias.9.qml index a67e64ded5..b8c71e1854 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/alias.9.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/alias.9.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignBasicTypes.qml b/tests/auto/declarative/qdeclarativelanguage/data/assignBasicTypes.qml index c83824a977..9fe0ded459 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/assignBasicTypes.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignBasicTypes.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { flagProperty: "FlagVal1 | FlagVal3" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignCompositeToType.qml b/tests/auto/declarative/qdeclarativelanguage/data/assignCompositeToType.qml index 50ac116c3e..1009df72ae 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/assignCompositeToType.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignCompositeToType.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import Test 1.0 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignLiteralSignalProperty.qml b/tests/auto/declarative/qdeclarativelanguage/data/assignLiteralSignalProperty.qml index 37e8e6412c..399fcea04d 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/assignLiteralSignalProperty.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignLiteralSignalProperty.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { onLiteralSignal: 10 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignLiteralToVariant.qml b/tests/auto/declarative/qdeclarativelanguage/data/assignLiteralToVariant.qml index 8a181fcdc5..bac704e698 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/assignLiteralToVariant.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignLiteralToVariant.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignObjectToSignal.qml b/tests/auto/declarative/qdeclarativelanguage/data/assignObjectToSignal.qml index f7af847ca5..789cc66215 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/assignObjectToSignal.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignObjectToSignal.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { onBasicSignal: MyQmlObject {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignObjectToVariant.qml b/tests/auto/declarative/qdeclarativelanguage/data/assignObjectToVariant.qml index 320f00043c..2b1ef7614d 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/assignObjectToVariant.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignObjectToVariant.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignQmlComponent.qml b/tests/auto/declarative/qdeclarativelanguage/data/assignQmlComponent.qml index dc16d3d494..20bdc559c1 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/assignQmlComponent.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignQmlComponent.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyContainer { MyComponent { x: 10; y: 11; } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignSignal.qml b/tests/auto/declarative/qdeclarativelanguage/data/assignSignal.qml index 1c0386ae0e..2a48df8fcf 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/assignSignal.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignSignal.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { onBasicSignal: basicSlot() diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignToNamespace.qml b/tests/auto/declarative/qdeclarativelanguage/data/assignToNamespace.qml index 915e52fdcf..2f494180cd 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/assignToNamespace.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignToNamespace.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 as Qt47 Qt47.QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignTypeExtremes.qml b/tests/auto/declarative/qdeclarativelanguage/data/assignTypeExtremes.qml index e81e0477a7..60ede525e4 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/assignTypeExtremes.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignTypeExtremes.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { uintProperty: 4000000000 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/assignValueToSignal.qml b/tests/auto/declarative/qdeclarativelanguage/data/assignValueToSignal.qml index 195cc4d2d1..6fa1259f39 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/assignValueToSignal.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/assignValueToSignal.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/attachedProperties.qml b/tests/auto/declarative/qdeclarativelanguage/data/attachedProperties.qml index d1373f644f..3a78170e1a 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/attachedProperties.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/attachedProperties.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Test 1.0 as Namespace import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/autoComponentCreation.qml b/tests/auto/declarative/qdeclarativelanguage/data/autoComponentCreation.qml index 22c8027779..5d00144eaf 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/autoComponentCreation.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/autoComponentCreation.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { componentProperty : MyTypeObject { realProperty: 9 } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/autoNotifyConnection.qml b/tests/auto/declarative/qdeclarativelanguage/data/autoNotifyConnection.qml index ddee8a0fc5..640fb54f99 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/autoNotifyConnection.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/autoNotifyConnection.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { property bool receivedNotify : false diff --git a/tests/auto/declarative/qdeclarativelanguage/data/component.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/component.1.qml index df66f7df8b..730fffdcbd 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/component.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/component.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Component { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/component.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/component.2.qml index 786ba9f89b..7e7dd0f03d 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/component.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/component.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/component.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/component.3.qml index 3527b46dbb..f0d5f7172d 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/component.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/component.3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/component.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/component.4.qml index 933d4a6e60..521adbca34 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/component.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/component.4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Component { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/component.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/component.5.qml index 2ea85cf398..9c3938b2fd 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/component.5.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/component.5.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Component { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/component.6.qml b/tests/auto/declarative/qdeclarativelanguage/data/component.6.qml index 9a457dc241..9208722cd9 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/component.6.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/component.6.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Component { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/component.7.qml b/tests/auto/declarative/qdeclarativelanguage/data/component.7.qml index 91c238b27c..b81e0c392b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/component.7.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/component.7.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Component { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/component.8.qml b/tests/auto/declarative/qdeclarativelanguage/data/component.8.qml index 3750e49cdd..0b00890fdb 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/component.8.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/component.8.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Component { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/component.9.qml b/tests/auto/declarative/qdeclarativelanguage/data/component.9.qml index c71a1bdff3..c5f93c9406 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/component.9.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/component.9.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Component { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/componentCompositeType.qml b/tests/auto/declarative/qdeclarativelanguage/data/componentCompositeType.qml index db2682f470..725069eb6c 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/componentCompositeType.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/componentCompositeType.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/cppnamespace.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/cppnamespace.2.qml index aa88b0e838..e3b32ca5d8 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/cppnamespace.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/cppnamespace.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MySecondNamespacedType { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/cppnamespace.qml b/tests/auto/declarative/qdeclarativelanguage/data/cppnamespace.qml index 15f41894e6..e1daf3b78f 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/cppnamespace.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/cppnamespace.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyNamespacedType { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/crash2.qml b/tests/auto/declarative/qdeclarativelanguage/data/crash2.qml index af9cfe916a..f11abd9ab9 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/crash2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/crash2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/customOnProperty.qml b/tests/auto/declarative/qdeclarativelanguage/data/customOnProperty.qml index a4d5869217..438e8e9209 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/customOnProperty.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/customOnProperty.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/customParserIdNotAllowed.qml b/tests/auto/declarative/qdeclarativelanguage/data/customParserIdNotAllowed.qml index 450b6ac282..902b59807a 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/customParserIdNotAllowed.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/customParserIdNotAllowed.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 ListModel { ListElement { a: 10 } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/customParserTypes.qml b/tests/auto/declarative/qdeclarativelanguage/data/customParserTypes.qml index fef23cc925..3230e49122 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/customParserTypes.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/customParserTypes.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 ListModel { ListElement { a: 10 } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/customVariantTypes.qml b/tests/auto/declarative/qdeclarativelanguage/data/customVariantTypes.qml index cd3fdd97f1..0263ed20f2 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/customVariantTypes.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/customVariantTypes.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { customType: "10" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/declaredPropertyValues.qml b/tests/auto/declarative/qdeclarativelanguage/data/declaredPropertyValues.qml index ce61996a11..c2418610d2 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/declaredPropertyValues.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/declaredPropertyValues.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/defaultGrouped.qml b/tests/auto/declarative/qdeclarativelanguage/data/defaultGrouped.qml index ce3b17bcc9..0cd033874e 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/defaultGrouped.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/defaultGrouped.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/defaultPropertyListOrder.qml b/tests/auto/declarative/qdeclarativelanguage/data/defaultPropertyListOrder.qml index 3791e8f002..b4203b5a52 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/defaultPropertyListOrder.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/defaultPropertyListOrder.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/destroyedSignal.qml b/tests/auto/declarative/qdeclarativelanguage/data/destroyedSignal.qml index 00390d857b..54d080a714 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/destroyedSignal.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/destroyedSignal.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/doubleSignal.qml b/tests/auto/declarative/qdeclarativelanguage/data/doubleSignal.qml index 415dc7e159..fb07b9f659 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/doubleSignal.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/doubleSignal.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/duplicateIDs.qml b/tests/auto/declarative/qdeclarativelanguage/data/duplicateIDs.qml index 0c0784493e..a993abdd37 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/duplicateIDs.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/duplicateIDs.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyContainer { MyQmlObject { id: myID } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.1.qml index fa4ab036fc..c0ed52cb84 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.2.qml index 05167dbb52..1f46b96131 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.3.qml index ef6fac2aef..cf49062645 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.4.qml index a649738f4a..a14ec4c56e 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.5.qml index e265bd79a5..ea77cfde83 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.5.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/dynamicMeta.5.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/dynamicObject.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/dynamicObject.1.qml index 4872df8176..a1be43a046 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/dynamicObject.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/dynamicObject.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 MyCustomParserType { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/dynamicObjectProperties.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/dynamicObjectProperties.2.qml index 6bfd3350b1..df3de207ea 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/dynamicObjectProperties.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/dynamicObjectProperties.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import Qt 4.7 as Qt47 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/dynamicObjectProperties.qml b/tests/auto/declarative/qdeclarativelanguage/data/dynamicObjectProperties.qml index e0c247a7fd..c9973563d0 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/dynamicObjectProperties.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/dynamicObjectProperties.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 import Qt 4.7 as Qt47 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/dynamicProperties.qml b/tests/auto/declarative/qdeclarativelanguage/data/dynamicProperties.qml index cf4f4016d1..6bcae0fbfa 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/dynamicProperties.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/dynamicProperties.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/dynamicPropertiesNested.qml b/tests/auto/declarative/qdeclarativelanguage/data/dynamicPropertiesNested.qml index 07368f249e..cceb44bfd1 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/dynamicPropertiesNested.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/dynamicPropertiesNested.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 DynamicPropertiesNestedType { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/dynamicSignalsAndSlots.qml b/tests/auto/declarative/qdeclarativelanguage/data/dynamicSignalsAndSlots.qml index 9905ddbee9..9aa5e86c4d 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/dynamicSignalsAndSlots.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/dynamicSignalsAndSlots.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { signal signal1 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/empty.qml b/tests/auto/declarative/qdeclarativelanguage/data/empty.qml index ec36c4267e..e69de29bb2 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/empty.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/empty.qml @@ -1,41 +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$ -** -****************************************************************************/ - diff --git a/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.qml b/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.qml index 30d9ede847..c84fea3fe6 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/emptySignal.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/enumTypes.qml b/tests/auto/declarative/qdeclarativelanguage/data/enumTypes.qml index 22fa98cc9b..6b5b451456 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/enumTypes.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/enumTypes.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Font { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/failingComponentTest.qml b/tests/auto/declarative/qdeclarativelanguage/data/failingComponentTest.qml index 084b41b18b..74a6acfc49 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/failingComponentTest.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/failingComponentTest.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyContainer { FailingComponent {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/fakeDotProperty.qml b/tests/auto/declarative/qdeclarativelanguage/data/fakeDotProperty.qml index 92fd63a12d..d971eee4d0 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/fakeDotProperty.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/fakeDotProperty.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { value.something: "hello" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/finalOverride.qml b/tests/auto/declarative/qdeclarativelanguage/data/finalOverride.qml index bf4dac27ce..a84393af94 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/finalOverride.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/finalOverride.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { property int value: 10 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/i18nDeclaredPropertyNames.qml b/tests/auto/declarative/qdeclarativelanguage/data/i18nDeclaredPropertyNames.qml index 78cd7f3f8b..558c836e52 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/i18nDeclaredPropertyNames.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/i18nDeclaredPropertyNames.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/i18nDeclaredPropertyUse.qml b/tests/auto/declarative/qdeclarativelanguage/data/i18nDeclaredPropertyUse.qml index b1725220eb..74918e2764 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/i18nDeclaredPropertyUse.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/i18nDeclaredPropertyUse.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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$ -** -****************************************************************************/ - I18n { áâãäå: 15 } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/i18nNameSpace.qml b/tests/auto/declarative/qdeclarativelanguage/data/i18nNameSpace.qml index 9066fd86ce..c0b2f94857 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/i18nNameSpace.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/i18nNameSpace.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 as Áâãäå Áâãäå.MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/i18nScript.qml b/tests/auto/declarative/qdeclarativelanguage/data/i18nScript.qml index 30648617a6..e77cb52074 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/i18nScript.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/i18nScript.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/i18nStrings.qml b/tests/auto/declarative/qdeclarativelanguage/data/i18nStrings.qml index 6afe2de03f..764c92639a 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/i18nStrings.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/i18nStrings.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/i18nType.qml b/tests/auto/declarative/qdeclarativelanguage/data/i18nType.qml index 780d8e17e3..d7954ef718 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/i18nType.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/i18nType.qml @@ -1,42 +1 @@ -/**************************************************************************** -** -** 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$ -** -****************************************************************************/ - I18nTypeÁâãäå { } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/idProperty.qml b/tests/auto/declarative/qdeclarativelanguage/data/idProperty.qml index 320f9822f6..bf048ea60a 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/idProperty.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/idProperty.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyContainer { property variant object : myObjectId diff --git a/tests/auto/declarative/qdeclarativelanguage/data/importNamespaceConflict.qml b/tests/auto/declarative/qdeclarativelanguage/data/importNamespaceConflict.qml index 4cc43b9660..3b80f0b9f0 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/importNamespaceConflict.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/importNamespaceConflict.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 as Rectangle import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/importNewerVersion.qml b/tests/auto/declarative/qdeclarativelanguage/data/importNewerVersion.qml index e5539ff1bd..c4a0d386a4 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/importNewerVersion.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/importNewerVersion.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 2.0 MyTypeObject { } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/importNonExist.qml b/tests/auto/declarative/qdeclarativelanguage/data/importNonExist.qml index 565ed299b8..483cfec40d 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/importNonExist.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/importNonExist.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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$ -** -****************************************************************************/ - // imports... import "will-not-be-found" import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/importNonExistOlder.qml b/tests/auto/declarative/qdeclarativelanguage/data/importNonExistOlder.qml index a413025127..18514b1efa 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/importNonExistOlder.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/importNonExistOlder.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 0.1 MyTypeObject { } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/importVersionMissingBuiltIn.qml b/tests/auto/declarative/qdeclarativelanguage/data/importVersionMissingBuiltIn.qml index b985a8b58f..23ed566e15 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/importVersionMissingBuiltIn.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/importVersionMissingBuiltIn.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test as S S.MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/importVersionMissingInstalled.qml b/tests/auto/declarative/qdeclarativelanguage/data/importVersionMissingInstalled.qml index bf4e4dc822..97ec22280f 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/importVersionMissingInstalled.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/importVersionMissingInstalled.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 com.nokia.installedtest as T T.InstalledTest {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/importscript.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/importscript.1.qml index 177d4288aa..2b2ab6ba0d 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/importscript.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/importscript.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 "test.js" Item { } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/inlineQmlComponents.qml b/tests/auto/declarative/qdeclarativelanguage/data/inlineQmlComponents.qml index 3e7346205a..1ebec1b086 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/inlineQmlComponents.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/inlineQmlComponents.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 MyContainer { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/interfaceProperty.qml b/tests/auto/declarative/qdeclarativelanguage/data/interfaceProperty.qml index 6185b4b3e0..6a47536459 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/interfaceProperty.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/interfaceProperty.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/interfaceQList.qml b/tests/auto/declarative/qdeclarativelanguage/data/interfaceQList.qml index 74e57ebc27..c87dfae785 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/interfaceQList.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/interfaceQList.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyContainer { qlistInterfaces: [ diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.1.qml index 58c6e665b7..985fb94c4c 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.2.qml index fe52f1fd31..a2ac91c134 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.3.qml index 7ba86825cc..cc717530bc 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.4.qml index 0e64bdff5d..cfdfca0590 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.5.qml index b65dcf2102..0c1d5d7ef1 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.5.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.5.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.6.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.6.qml index ae45824904..edfdb24bcc 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.6.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAlias.6.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.1.qml index a2215fcc0c..84d39df9c8 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.10.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.10.qml index 21eed7f5ab..40e39263d6 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.10.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.10.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 as Namespace import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.11.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.11.qml index 468cfac514..28f8220992 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.11.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.11.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 as Namespace import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.12.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.12.qml index f8c7a7a756..7de503e766 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.12.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.12.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.13.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.13.qml index 8a49e78c7a..986ab855c5 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.13.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.13.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.2.qml index 499c2108c6..f45f88f823 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 as Namespace import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.3.qml index 1be9c5503d..64bc8bd404 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.4.qml index 1d3b64c23e..ee3dedbef4 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 as Namespace import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.5.qml index 7052008c83..66cad2d6a4 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.5.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.5.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.6.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.6.qml index d670d1e1e2..90d80bc136 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.6.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.6.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.7.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.7.qml index cbcc47a45b..5293d55c7b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.7.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.7.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.8.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.8.qml index 2d61beb590..6f319c1223 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.8.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.8.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 as Namespace import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.9.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.9.qml index 65c62e72f6..b7e13026be 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.9.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidAttachedProperty.9.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.1.qml index 0b8284f66a..671f5aba31 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.10.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.10.qml index 3fb99f929a..41aa3e2923 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.10.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.10.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.2.qml index 8245f7bfe5..f897cc8497 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.3.qml index 13ec3f9ab7..0bbfc4f529 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.4.qml index 4672edad02..134fef9b0a 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.5.qml index 5318392536..55cefe66b9 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.5.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.5.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.6.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.6.qml index 2f8f089e72..9ec33abe7b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.6.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.6.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.7.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.7.qml index 8c623468cf..977539a357 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.7.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.7.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.8.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.8.qml index aa68c71468..56fca9b990 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.8.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.8.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.9.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.9.qml index 1442f2a994..982ab26051 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.9.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.9.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.2.qml index 623e003d3c..4fb3b298dd 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { id: "" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.3.qml index 4662b0c3d4..668417286b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { id.other: 10 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.4.qml index 64f0cb4ab2..86010bf792 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { id: hello diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.5.qml index c4bb24ff61..5b92a1a0eb 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.5.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.5.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Test 1.0 as hello MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.6.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.6.qml index 31e3dd69b2..62187d9473 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.6.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.6.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { id: StartsWithUpperCase diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.7.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.7.qml index 8a0025dffc..d4bc539650 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.7.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.7.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { id: gc diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.8.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.8.qml index 829d7a1e80..1ea615c32e 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.8.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.8.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { id: hello.world diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.9.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.9.qml index 3bf23ad21e..57474b7212 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.9.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.9.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { id: "3hello" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.qml index dd889ad552..04db3eb67c 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidID.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidID.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { id: 1 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidImportID.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidImportID.qml index fc56bda3e9..00fc81b67e 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidImportID.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidImportID.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import Qt 4.7 as qt diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidOn.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidOn.qml index 5d416ac241..d748bf4755 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidOn.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidOn.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { MyQmlObject on value {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidRoot.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidRoot.qml index 1abce5679d..427827ca89 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/invalidRoot.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidRoot.qml @@ -1,43 +1,2 @@ -/**************************************************************************** -** -** 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$ -** -****************************************************************************/ - foo { } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/InstalledTest.qml b/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/InstalledTest.qml index 4b7bdb7c06..303b5a56cc 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/InstalledTest.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/InstalledTest.qml @@ -1,43 +1,2 @@ -/**************************************************************************** -** -** 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 as Qt47 Qt47.Rectangle {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/InstalledTest2.qml b/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/InstalledTest2.qml index af5647ed52..8c953cbc4b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/InstalledTest2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/InstalledTest2.qml @@ -1,43 +1,2 @@ -/**************************************************************************** -** -** 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 Text {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/LocalLast.qml b/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/LocalLast.qml index f26367701c..d09dea7fe4 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/LocalLast.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/LocalLast.qml @@ -1,43 +1,2 @@ -/**************************************************************************** -** -** 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 {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/PrivateType.qml b/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/PrivateType.qml index b8304c93e4..62e41a9f8a 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/PrivateType.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/lib/com/nokia/installedtest/PrivateType.qml @@ -1,43 +1,2 @@ -/**************************************************************************** -** -** 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 Image {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/listAssignment.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/listAssignment.1.qml index c7036e1734..6c628e4cae 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/listAssignment.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/listAssignment.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 MyContainer { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/listAssignment.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/listAssignment.2.qml index 05121839e9..e3baadb46c 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/listAssignment.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/listAssignment.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyContainer { children: 2 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/listAssignment.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/listAssignment.3.qml index 9b2c067934..00c4c6b543 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/listAssignment.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/listAssignment.3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyContainer { children: childBinding.expression diff --git a/tests/auto/declarative/qdeclarativelanguage/data/listItemDeleteSelf.qml b/tests/auto/declarative/qdeclarativelanguage/data/listItemDeleteSelf.qml index 14f2fc7b3f..0393382e67 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/listItemDeleteSelf.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/listItemDeleteSelf.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/listProperties.qml b/tests/auto/declarative/qdeclarativelanguage/data/listProperties.qml index a609cdb8c8..30277227ad 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/listProperties.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/listProperties.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/method.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/method.1.qml index 9a12169ed1..a2d8799d04 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/method.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/method.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/missingObject.qml b/tests/auto/declarative/qdeclarativelanguage/data/missingObject.qml index e45177317c..2f17045869 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/missingObject.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/missingObject.qml @@ -1,42 +1 @@ -/**************************************************************************** -** -** 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$ -** -****************************************************************************/ - something: 24 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/missingSignal.qml b/tests/auto/declarative/qdeclarativelanguage/data/missingSignal.qml index 8320127763..1a417a918b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/missingSignal.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/missingSignal.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/missingValueTypeProperty.qml b/tests/auto/declarative/qdeclarativelanguage/data/missingValueTypeProperty.qml index 0ca75ba67b..9a0fa6a26b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/missingValueTypeProperty.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/missingValueTypeProperty.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.1.qml index ebc246a299..649c49ee3a 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.10.qml b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.10.qml index 7eb8ea1f71..bc21db98f8 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.10.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.10.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.11.qml b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.11.qml index 493adc71b4..7d03139056 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.11.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.11.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.2.qml index 4be0e62ed0..abcd216744 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.3.qml index aa47788868..77eaba0b32 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.4.qml index 557d81c4ec..c16d04fea6 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.5.qml index f62310ca40..2980c5b28c 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.5.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.5.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyContainer { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.6.qml b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.6.qml index 2b881a7153..492c720edc 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.6.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.6.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyContainer { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.7.qml b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.7.qml index 9573dbff5c..2a9c1d0de8 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.7.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.7.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyContainer { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.8.qml b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.8.qml index 2e8d23671f..052437ea18 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.8.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.8.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.9.qml b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.9.qml index a83c92e67e..e2e954f778 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/multiSet.9.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/multiSet.9.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/nestedErrors.qml b/tests/auto/declarative/qdeclarativelanguage/data/nestedErrors.qml index d257d81964..0aa3405c2f 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/nestedErrors.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/nestedErrors.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/noCreation.qml b/tests/auto/declarative/qdeclarativelanguage/data/noCreation.qml index bef2ad89b1..077abe1822 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/noCreation.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/noCreation.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Keys { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.1.qml index 9cf1141c5d..df7406ce98 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.1.qml @@ -1,43 +1,2 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { something: 24 } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.2.qml index 758a21ad44..06ccd37905 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { something: 24 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.3.qml index b9bc751276..5b08608862 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { something: 1 + 1 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.4.qml index efaf0daa5e..65791919ba 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { something: ; diff --git a/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.5.qml index c23ac571ac..37af05731e 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.5.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.5.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { 24 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.6.qml b/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.6.qml index 59cda3f4af..5cd55d0856 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.6.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/nonexistantProperty.6.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { MyQmlObject {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/nullDotProperty.qml b/tests/auto/declarative/qdeclarativelanguage/data/nullDotProperty.qml index 495d696218..4e36779b5c 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/nullDotProperty.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/nullDotProperty.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyDotPropertyObject { obj.value: 1 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/objectValueTypeProperty.qml b/tests/auto/declarative/qdeclarativelanguage/data/objectValueTypeProperty.qml index 248066044f..99247735dd 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/objectValueTypeProperty.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/objectValueTypeProperty.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/onCompleted.qml b/tests/auto/declarative/qdeclarativelanguage/data/onCompleted.qml index 5f0c29006b..71a7d26d7a 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/onCompleted.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/onCompleted.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/onDestruction.qml b/tests/auto/declarative/qdeclarativelanguage/data/onDestruction.qml index 6473bb5090..1b1eef9ea3 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/onDestruction.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/onDestruction.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/property.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/property.1.qml index d38d1608f7..b3384d45a0 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/property.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/property.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/property.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/property.2.qml index f29d23dd66..1ba9b1738f 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/property.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/property.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/property.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/property.3.qml index de1e02ca85..261e7e3287 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/property.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/property.3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/property.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/property.4.qml index 683f59ef63..0a0f969aed 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/property.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/property.4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/property.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/property.5.qml index d3e11b307d..0340f798d4 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/property.5.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/property.5.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/property.6.qml b/tests/auto/declarative/qdeclarativelanguage/data/property.6.qml index daee2180fa..aad9e0784e 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/property.6.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/property.6.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/property.7.qml b/tests/auto/declarative/qdeclarativelanguage/data/property.7.qml index 1d8179d5a8..0246b2f053 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/property.7.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/property.7.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/propertyValueSource.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/propertyValueSource.2.qml index 5f17ad6657..e48526abec 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/propertyValueSource.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/propertyValueSource.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { MyCompositeValueSource on intProperty {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/propertyValueSource.qml b/tests/auto/declarative/qdeclarativelanguage/data/propertyValueSource.qml index 2f26102d32..22aa68250e 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/propertyValueSource.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/propertyValueSource.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { MyPropertyValueSource on intProperty {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/qmlAttachedPropertiesObjectMethod.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/qmlAttachedPropertiesObjectMethod.1.qml index 96b39a9c6b..d038ba3a10 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/qmlAttachedPropertiesObjectMethod.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/qmlAttachedPropertiesObjectMethod.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/qmlAttachedPropertiesObjectMethod.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/qmlAttachedPropertiesObjectMethod.2.qml index e0a14b3ea6..1eab9f6a31 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/qmlAttachedPropertiesObjectMethod.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/qmlAttachedPropertiesObjectMethod.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/readOnly.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/readOnly.1.qml index 10c70cf619..60757bd005 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/readOnly.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/readOnly.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { readOnlyString: "Hello World" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/readOnly.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/readOnly.2.qml index 21ae07559a..8f1633cc11 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/readOnly.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/readOnly.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { readOnlyString: "Hello" + "World" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/readOnly.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/readOnly.3.qml index e0674a202f..cfe255a84b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/readOnly.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/readOnly.3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/readOnly.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/readOnly.4.qml index daa3b64bd5..5338ac77bc 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/readOnly.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/readOnly.4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { MyPropertyValueSource on readOnlyString {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/readOnly.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/readOnly.5.qml index 5242363f8d..422d13d8d0 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/readOnly.5.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/readOnly.5.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { readOnlyEnumProperty: MyTypeObject.EnumValue1 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/rootAsQmlComponent.qml b/tests/auto/declarative/qdeclarativelanguage/data/rootAsQmlComponent.qml index 3606a253f8..8d72cd3844 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/rootAsQmlComponent.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/rootAsQmlComponent.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyContainerComponent { x: 11 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/scriptString.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/scriptString.1.qml index 4a57d0844a..f07d2231fe 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/scriptString.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/scriptString.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/scriptString.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/scriptString.2.qml index 19a2c6dee6..dc825c7511 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/scriptString.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/scriptString.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/scriptString.qml b/tests/auto/declarative/qdeclarativelanguage/data/scriptString.qml index 5987c2bbd8..40a3bbeede 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/scriptString.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/scriptString.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/scriptString2.qml b/tests/auto/declarative/qdeclarativelanguage/data/scriptString2.qml index e98c19972b..c42da2b9e1 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/scriptString2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/scriptString2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/scriptString3.qml b/tests/auto/declarative/qdeclarativelanguage/data/scriptString3.qml index 79af6fe749..0cd82ff58f 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/scriptString3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/scriptString3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/scriptString4.qml b/tests/auto/declarative/qdeclarativelanguage/data/scriptString4.qml index f2bd1ecf28..3e2f9a49f1 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/scriptString4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/scriptString4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/signal.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/signal.1.qml index 90169c6b14..63fd74f234 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/signal.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/signal.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/signal.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/signal.2.qml index 5de0e270db..c11ce177ee 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/signal.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/signal.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/signal.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/signal.3.qml index 1852cea768..771ea5039b 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/signal.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/signal.3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/signal.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/signal.4.qml index fcb7e8349a..37c938aa58 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/signal.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/signal.4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/simpleBindings.qml b/tests/auto/declarative/qdeclarativelanguage/data/simpleBindings.qml index 428a43891d..2fcd1a5a4f 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/simpleBindings.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/simpleBindings.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { id: me diff --git a/tests/auto/declarative/qdeclarativelanguage/data/simpleContainer.qml b/tests/auto/declarative/qdeclarativelanguage/data/simpleContainer.qml index 7a2f35f0f1..c3a795f536 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/simpleContainer.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/simpleContainer.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyContainer { MyQmlObject {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/simpleObject.qml b/tests/auto/declarative/qdeclarativelanguage/data/simpleObject.qml index 755651dbd9..30c78237de 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/simpleObject.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/simpleObject.qml @@ -1,43 +1,2 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/subdir/Test.qml b/tests/auto/declarative/qdeclarativelanguage/data/subdir/Test.qml index 09c69f42fa..142136191f 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/subdir/Test.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/subdir/Test.qml @@ -1,43 +1,2 @@ -/**************************************************************************** -** -** 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 { } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/subdir/subsubdir/SubTest.qml b/tests/auto/declarative/qdeclarativelanguage/data/subdir/subsubdir/SubTest.qml index 09c69f42fa..142136191f 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/subdir/subsubdir/SubTest.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/subdir/subsubdir/SubTest.qml @@ -1,43 +1,2 @@ -/**************************************************************************** -** -** 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 { } diff --git a/tests/auto/declarative/qdeclarativelanguage/data/unregisteredObject.qml b/tests/auto/declarative/qdeclarativelanguage/data/unregisteredObject.qml index 9098f8400a..4969f62ad5 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/unregisteredObject.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/unregisteredObject.qml @@ -1,43 +1,2 @@ -/**************************************************************************** -** -** 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 Test 1.0 UnregisteredObjectType {} diff --git a/tests/auto/declarative/qdeclarativelanguage/data/unsupportedProperty.qml b/tests/auto/declarative/qdeclarativelanguage/data/unsupportedProperty.qml index 4d6e8e62de..9f19680368 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/unsupportedProperty.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/unsupportedProperty.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { matrix: "1,0,0,0,1,0,0,0,1" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/valueTypes.qml b/tests/auto/declarative/qdeclarativelanguage/data/valueTypes.qml index bfca2e69be..bf325a74ee 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/valueTypes.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/valueTypes.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { rectProperty.x: 10 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.1.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.1.qml index 04538d2314..289d37f050 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.1.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { value: "hello" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.10.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.10.qml index d01939bba0..2cf0e50277 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.10.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.10.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { dateTimeProperty: 12 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.11.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.11.qml index f01d5cc5b9..ae77ba1fe8 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.11.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.11.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { pointProperty: "apples" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.12.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.12.qml index 42e45313d7..b7a366f567 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.12.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.12.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { sizeProperty: "red" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.13.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.13.qml index a2b484efa7..477aff1dbe 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.13.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.13.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { value: "12" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.14.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.14.qml index a95b29a2aa..672d693c72 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.14.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.14.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { stringProperty: 10 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.15.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.15.qml index b81266003c..633a5ba2ba 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.15.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.15.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { urlProperty: 12 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.16.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.16.qml index 8c00707f8e..1ddccc0ca2 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.16.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.16.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 MyQmlObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.2.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.2.qml index cc63cbe38a..34b74f7e01 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.2.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { enabled: 5 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.3.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.3.qml index 802f252a80..384181a17f 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.3.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyQmlObject { rect: "5,5x10" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.4.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.4.qml index 3aa27a5771..0787bf5fda 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.4.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { enumProperty: "InvalidEnumName" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.5.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.5.qml index 7e8dd1232f..c50ae9a26d 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.5.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.5.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { uintProperty: -13 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.6.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.6.qml index 30c29fc305..da10b7895f 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.6.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.6.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { realProperty: "Hello" diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.7.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.7.qml index 48dd62e2c2..ddc3835199 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.7.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.7.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { colorProperty: 12 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.8.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.8.qml index b0d05367e4..a5f6756399 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.8.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.8.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { dateProperty: 12 diff --git a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.9.qml b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.9.qml index f22b638b8a..a3db732692 100644 --- a/tests/auto/declarative/qdeclarativelanguage/data/wrongType.9.qml +++ b/tests/auto/declarative/qdeclarativelanguage/data/wrongType.9.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { timeProperty: 12 diff --git a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/LocalInternal.qml b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/LocalInternal.qml index 2b56c1bdca..d5a61ae1c1 100644 --- a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/LocalInternal.qml +++ b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/LocalInternal.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Image { source: "pics/blue.png" } diff --git a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/Test.qml b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/Test.qml index 09c69f42fa..142136191f 100644 --- a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/Test.qml +++ b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/Test.qml @@ -1,43 +1,2 @@ -/**************************************************************************** -** -** 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 { } diff --git a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/TestLocal.qml b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/TestLocal.qml index 3bc82fcc7e..11443ca6d5 100644 --- a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/TestLocal.qml +++ b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/TestLocal.qml @@ -1,42 +1 @@ -/**************************************************************************** -** -** 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$ -** -****************************************************************************/ - LocalInternal {} diff --git a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/TestNamed.qml b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/TestNamed.qml index b1828158f2..672cb8f201 100644 --- a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/TestNamed.qml +++ b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/TestNamed.qml @@ -1,42 +1 @@ -/**************************************************************************** -** -** 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$ -** -****************************************************************************/ - NamedLocal { } diff --git a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/TestSubDir.qml b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/TestSubDir.qml index 2e9d1cc394..0dfede4093 100644 --- a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/TestSubDir.qml +++ b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/TestSubDir.qml @@ -1,43 +1,2 @@ -/**************************************************************************** -** -** 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 "subdir" SubTest { } diff --git a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/UndeclaredLocal.qml b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/UndeclaredLocal.qml index 2b56c1bdca..d5a61ae1c1 100644 --- a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/UndeclaredLocal.qml +++ b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/UndeclaredLocal.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Image { source: "pics/blue.png" } diff --git a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/WrongTestLocal.qml b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/WrongTestLocal.qml index 06cd728ab7..8dcb7be231 100644 --- a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/WrongTestLocal.qml +++ b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/WrongTestLocal.qml @@ -1,42 +1 @@ -/**************************************************************************** -** -** 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$ -** -****************************************************************************/ - UndeclaredInternal {} diff --git a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/subdir/SubTest.qml b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/subdir/SubTest.qml index 822bf048f2..43aeb7469c 100644 --- a/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/subdir/SubTest.qml +++ b/tests/auto/declarative/qdeclarativelanguage/qtest/declarative/qmllanguage/subdir/SubTest.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Text {} diff --git a/tests/auto/declarative/qdeclarativelayoutitem/data/layoutItem.qml b/tests/auto/declarative/qdeclarativelayoutitem/data/layoutItem.qml index c09ebe0eb0..ee881a2ddf 100644 --- a/tests/auto/declarative/qdeclarativelayoutitem/data/layoutItem.qml +++ b/tests/auto/declarative/qdeclarativelayoutitem/data/layoutItem.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 LayoutItem {//Sized by the layout diff --git a/tests/auto/declarative/qdeclarativelistmodel/data/enumerate.qml b/tests/auto/declarative/qdeclarativelistmodel/data/enumerate.qml index bb0934db16..296cb9c202 100644 --- a/tests/auto/declarative/qdeclarativelistmodel/data/enumerate.qml +++ b/tests/auto/declarative/qdeclarativelistmodel/data/enumerate.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativelistmodel/data/model.qml b/tests/auto/declarative/qdeclarativelistmodel/data/model.qml index 5a5961f016..f8a9175749 100644 --- a/tests/auto/declarative/qdeclarativelistmodel/data/model.qml +++ b/tests/auto/declarative/qdeclarativelistmodel/data/model.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativelistreference/data/MyType.qml b/tests/auto/declarative/qdeclarativelistreference/data/MyType.qml index a22ba254c0..0275e214e3 100644 --- a/tests/auto/declarative/qdeclarativelistreference/data/MyType.qml +++ b/tests/auto/declarative/qdeclarativelistreference/data/MyType.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelistreference/data/engineTypes.qml b/tests/auto/declarative/qdeclarativelistreference/data/engineTypes.qml index 6463a79c5d..1ab5692022 100644 --- a/tests/auto/declarative/qdeclarativelistreference/data/engineTypes.qml +++ b/tests/auto/declarative/qdeclarativelistreference/data/engineTypes.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelistreference/data/variantToList.qml b/tests/auto/declarative/qdeclarativelistreference/data/variantToList.qml index 4bda103155..13de975782 100644 --- a/tests/auto/declarative/qdeclarativelistreference/data/variantToList.qml +++ b/tests/auto/declarative/qdeclarativelistreference/data/variantToList.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativelistview/data/displaylist.qml b/tests/auto/declarative/qdeclarativelistview/data/displaylist.qml index 5d0749431e..defd13e557 100644 --- a/tests/auto/declarative/qdeclarativelistview/data/displaylist.qml +++ b/tests/auto/declarative/qdeclarativelistview/data/displaylist.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativelistview/data/itemlist.qml b/tests/auto/declarative/qdeclarativelistview/data/itemlist.qml index ecfce048d7..66728d6876 100644 --- a/tests/auto/declarative/qdeclarativelistview/data/itemlist.qml +++ b/tests/auto/declarative/qdeclarativelistview/data/itemlist.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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$ -** -****************************************************************************/ - // This example demonstrates placing items in a view using // a VisualItemModel diff --git a/tests/auto/declarative/qdeclarativelistview/data/listview-enforcerange.qml b/tests/auto/declarative/qdeclarativelistview/data/listview-enforcerange.qml index 5727951ac7..939a4d585f 100644 --- a/tests/auto/declarative/qdeclarativelistview/data/listview-enforcerange.qml +++ b/tests/auto/declarative/qdeclarativelistview/data/listview-enforcerange.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativelistview/data/listview-initCurrent.qml b/tests/auto/declarative/qdeclarativelistview/data/listview-initCurrent.qml index 8b40dc4e81..0599dddf6c 100644 --- a/tests/auto/declarative/qdeclarativelistview/data/listview-initCurrent.qml +++ b/tests/auto/declarative/qdeclarativelistview/data/listview-initCurrent.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativelistview/data/listview-sections.qml b/tests/auto/declarative/qdeclarativelistview/data/listview-sections.qml index 0ea4f483b1..a6f3ab8dd2 100644 --- a/tests/auto/declarative/qdeclarativelistview/data/listview-sections.qml +++ b/tests/auto/declarative/qdeclarativelistview/data/listview-sections.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativelistview/data/listviewtest.qml b/tests/auto/declarative/qdeclarativelistview/data/listviewtest.qml index 2bc264076d..3b2db5e05a 100644 --- a/tests/auto/declarative/qdeclarativelistview/data/listviewtest.qml +++ b/tests/auto/declarative/qdeclarativelistview/data/listviewtest.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativelistview/data/manual-highlight.qml b/tests/auto/declarative/qdeclarativelistview/data/manual-highlight.qml index decb729854..4913ebe97d 100644 --- a/tests/auto/declarative/qdeclarativelistview/data/manual-highlight.qml +++ b/tests/auto/declarative/qdeclarativelistview/data/manual-highlight.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativelistview/data/propertychangestest.qml b/tests/auto/declarative/qdeclarativelistview/data/propertychangestest.qml index c654f4575a..300fcb5eb8 100644 --- a/tests/auto/declarative/qdeclarativelistview/data/propertychangestest.qml +++ b/tests/auto/declarative/qdeclarativelistview/data/propertychangestest.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativelistview/data/strictlyenforcerange.qml b/tests/auto/declarative/qdeclarativelistview/data/strictlyenforcerange.qml index 1f5bb00654..6fc41fa17a 100644 --- a/tests/auto/declarative/qdeclarativelistview/data/strictlyenforcerange.qml +++ b/tests/auto/declarative/qdeclarativelistview/data/strictlyenforcerange.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 ListView { diff --git a/tests/auto/declarative/qdeclarativeloader/data/AnchoredLoader.qml b/tests/auto/declarative/qdeclarativeloader/data/AnchoredLoader.qml index 81086f51b4..5d02dae78d 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/AnchoredLoader.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/AnchoredLoader.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeloader/data/BlueRect.qml b/tests/auto/declarative/qdeclarativeloader/data/BlueRect.qml index 08a1d41819..f202fc825b 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/BlueRect.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/BlueRect.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeloader/data/GraphicsWidget250x250.qml b/tests/auto/declarative/qdeclarativeloader/data/GraphicsWidget250x250.qml index dd9cd1d6fc..3b851c1338 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/GraphicsWidget250x250.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/GraphicsWidget250x250.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QGraphicsWidget { diff --git a/tests/auto/declarative/qdeclarativeloader/data/GreenRect.qml b/tests/auto/declarative/qdeclarativeloader/data/GreenRect.qml index d9d020d1c7..9b8f770a48 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/GreenRect.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/GreenRect.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeloader/data/NoResize.qml b/tests/auto/declarative/qdeclarativeloader/data/NoResize.qml index c2215e688c..72cd3b9f0e 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/NoResize.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/NoResize.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeloader/data/NoResizeGraphicsWidget.qml b/tests/auto/declarative/qdeclarativeloader/data/NoResizeGraphicsWidget.qml index 065001a0db..0cff50643b 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/NoResizeGraphicsWidget.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/NoResizeGraphicsWidget.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeloader/data/Rect120x60.qml b/tests/auto/declarative/qdeclarativeloader/data/Rect120x60.qml index 44b7ecb64f..d808c518b5 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/Rect120x60.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/Rect120x60.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeloader/data/SetSourceComponent.qml b/tests/auto/declarative/qdeclarativeloader/data/SetSourceComponent.qml index 32c2d6b18e..d99dd01f35 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/SetSourceComponent.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/SetSourceComponent.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeloader/data/SizeGraphicsWidgetToLoader.qml b/tests/auto/declarative/qdeclarativeloader/data/SizeGraphicsWidgetToLoader.qml index 2907697921..81610ad3c7 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/SizeGraphicsWidgetToLoader.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/SizeGraphicsWidgetToLoader.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Loader { diff --git a/tests/auto/declarative/qdeclarativeloader/data/SizeLoaderToGraphicsWidget.qml b/tests/auto/declarative/qdeclarativeloader/data/SizeLoaderToGraphicsWidget.qml index 00a4fbeeb8..a801a42d03 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/SizeLoaderToGraphicsWidget.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/SizeLoaderToGraphicsWidget.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Loader { diff --git a/tests/auto/declarative/qdeclarativeloader/data/SizeToItem.qml b/tests/auto/declarative/qdeclarativeloader/data/SizeToItem.qml index 2f9fbc5462..77aa8d9f78 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/SizeToItem.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/SizeToItem.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Loader { diff --git a/tests/auto/declarative/qdeclarativeloader/data/SizeToLoader.qml b/tests/auto/declarative/qdeclarativeloader/data/SizeToLoader.qml index 397b5e7ecf..0098927736 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/SizeToLoader.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/SizeToLoader.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Loader { diff --git a/tests/auto/declarative/qdeclarativeloader/data/VmeError.qml b/tests/auto/declarative/qdeclarativeloader/data/VmeError.qml index be4185e518..633f03d182 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/VmeError.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/VmeError.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeloader/data/crash.qml b/tests/auto/declarative/qdeclarativeloader/data/crash.qml index d7df51daec..db9abca6cc 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/crash.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/crash.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeloader/data/differentorigin.qml b/tests/auto/declarative/qdeclarativeloader/data/differentorigin.qml index 922f841ad5..b32558b0e6 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/differentorigin.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/differentorigin.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Loader { source: "http://evil.place/evil.qml" } diff --git a/tests/auto/declarative/qdeclarativeloader/data/nonItem.qml b/tests/auto/declarative/qdeclarativeloader/data/nonItem.qml index aaccfbfd6f..5ce003d45e 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/nonItem.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/nonItem.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Loader { diff --git a/tests/auto/declarative/qdeclarativeloader/data/sameorigin-load.qml b/tests/auto/declarative/qdeclarativeloader/data/sameorigin-load.qml index 4ad29f0b03..812c1be5e8 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/sameorigin-load.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/sameorigin-load.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { } diff --git a/tests/auto/declarative/qdeclarativeloader/data/sameorigin.qml b/tests/auto/declarative/qdeclarativeloader/data/sameorigin.qml index 8a087a216e..91732a1a6c 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/sameorigin.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/sameorigin.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Loader { source: "sameorigin-load.qml" } diff --git a/tests/auto/declarative/qdeclarativeloader/data/vmeErrors.qml b/tests/auto/declarative/qdeclarativeloader/data/vmeErrors.qml index 708277cab5..ae33e00ba4 100644 --- a/tests/auto/declarative/qdeclarativeloader/data/vmeErrors.qml +++ b/tests/auto/declarative/qdeclarativeloader/data/vmeErrors.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Loader { diff --git a/tests/auto/declarative/qdeclarativemoduleplugin/data/works.qml b/tests/auto/declarative/qdeclarativemoduleplugin/data/works.qml index 27f0d74be1..f29ae24ea2 100644 --- a/tests/auto/declarative/qdeclarativemoduleplugin/data/works.qml +++ b/tests/auto/declarative/qdeclarativemoduleplugin/data/works.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 com.nokia.AutoTestQmlPluginType 1.0 MyPluginType { value: 123 } diff --git a/tests/auto/declarative/qdeclarativemousearea/data/clickandhold.qml b/tests/auto/declarative/qdeclarativemousearea/data/clickandhold.qml index c77cdb4abc..f926daa64f 100644 --- a/tests/auto/declarative/qdeclarativemousearea/data/clickandhold.qml +++ b/tests/auto/declarative/qdeclarativemousearea/data/clickandhold.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativemousearea/data/dragging.qml b/tests/auto/declarative/qdeclarativemousearea/data/dragging.qml index c35eb87ff1..a28f04943d 100644 --- a/tests/auto/declarative/qdeclarativemousearea/data/dragging.qml +++ b/tests/auto/declarative/qdeclarativemousearea/data/dragging.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: whiteRect diff --git a/tests/auto/declarative/qdeclarativemousearea/data/dragproperties.qml b/tests/auto/declarative/qdeclarativemousearea/data/dragproperties.qml index f4489268e7..ba15250bb0 100644 --- a/tests/auto/declarative/qdeclarativemousearea/data/dragproperties.qml +++ b/tests/auto/declarative/qdeclarativemousearea/data/dragproperties.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: whiteRect diff --git a/tests/auto/declarative/qdeclarativemousearea/data/dragreset.qml b/tests/auto/declarative/qdeclarativemousearea/data/dragreset.qml index 163d1c2854..789125b5dc 100644 --- a/tests/auto/declarative/qdeclarativemousearea/data/dragreset.qml +++ b/tests/auto/declarative/qdeclarativemousearea/data/dragreset.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: whiteRect diff --git a/tests/auto/declarative/qdeclarativemousearea/data/rejectEvent.qml b/tests/auto/declarative/qdeclarativemousearea/data/rejectEvent.qml index adbfc0822b..c01e9383ca 100644 --- a/tests/auto/declarative/qdeclarativemousearea/data/rejectEvent.qml +++ b/tests/auto/declarative/qdeclarativemousearea/data/rejectEvent.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativemousearea/data/updateMousePosOnClick.qml b/tests/auto/declarative/qdeclarativemousearea/data/updateMousePosOnClick.qml index 759f57eda7..600849975d 100644 --- a/tests/auto/declarative/qdeclarativemousearea/data/updateMousePosOnClick.qml +++ b/tests/auto/declarative/qdeclarativemousearea/data/updateMousePosOnClick.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativemousearea/data/updateMousePosOnResize.qml b/tests/auto/declarative/qdeclarativemousearea/data/updateMousePosOnResize.qml index 1506bf3f2c..2a2b905b4c 100644 --- a/tests/auto/declarative/qdeclarativemousearea/data/updateMousePosOnResize.qml +++ b/tests/auto/declarative/qdeclarativemousearea/data/updateMousePosOnResize.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativeparticles/data/particlemotiontest.qml b/tests/auto/declarative/qdeclarativeparticles/data/particlemotiontest.qml index 8714909a7b..ec8f4524d7 100644 --- a/tests/auto/declarative/qdeclarativeparticles/data/particlemotiontest.qml +++ b/tests/auto/declarative/qdeclarativeparticles/data/particlemotiontest.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import Qt.labs.particles 1.0 diff --git a/tests/auto/declarative/qdeclarativeparticles/data/particlestest.qml b/tests/auto/declarative/qdeclarativeparticles/data/particlestest.qml index 7da6518b6b..af15665b2b 100644 --- a/tests/auto/declarative/qdeclarativeparticles/data/particlestest.qml +++ b/tests/auto/declarative/qdeclarativeparticles/data/particlestest.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import Qt.labs.particles 1.0 diff --git a/tests/auto/declarative/qdeclarativepathview/data/datamodel.qml b/tests/auto/declarative/qdeclarativepathview/data/datamodel.qml index c94e7e8e91..a5c3772efa 100644 --- a/tests/auto/declarative/qdeclarativepathview/data/datamodel.qml +++ b/tests/auto/declarative/qdeclarativepathview/data/datamodel.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 PathView { diff --git a/tests/auto/declarative/qdeclarativepathview/data/displaypath.qml b/tests/auto/declarative/qdeclarativepathview/data/displaypath.qml index dfabbc3a7c..c82914f4b9 100644 --- a/tests/auto/declarative/qdeclarativepathview/data/displaypath.qml +++ b/tests/auto/declarative/qdeclarativepathview/data/displaypath.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativepathview/data/pathUpdateOnStartChanged.qml b/tests/auto/declarative/qdeclarativepathview/data/pathUpdateOnStartChanged.qml index 9586ee9eb4..ce0f0c9aca 100644 --- a/tests/auto/declarative/qdeclarativepathview/data/pathUpdateOnStartChanged.qml +++ b/tests/auto/declarative/qdeclarativepathview/data/pathUpdateOnStartChanged.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativepathview/data/pathtest.qml b/tests/auto/declarative/qdeclarativepathview/data/pathtest.qml index 870e9dec8e..caa1586be4 100644 --- a/tests/auto/declarative/qdeclarativepathview/data/pathtest.qml +++ b/tests/auto/declarative/qdeclarativepathview/data/pathtest.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Path { diff --git a/tests/auto/declarative/qdeclarativepathview/data/pathview0.qml b/tests/auto/declarative/qdeclarativepathview/data/pathview0.qml index ab1a60bf49..a3afd38dc9 100644 --- a/tests/auto/declarative/qdeclarativepathview/data/pathview0.qml +++ b/tests/auto/declarative/qdeclarativepathview/data/pathview0.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativepathview/data/pathview1.qml b/tests/auto/declarative/qdeclarativepathview/data/pathview1.qml index c8ae7d87f0..c3d2f914db 100644 --- a/tests/auto/declarative/qdeclarativepathview/data/pathview1.qml +++ b/tests/auto/declarative/qdeclarativepathview/data/pathview1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 PathView { diff --git a/tests/auto/declarative/qdeclarativepathview/data/pathview2.qml b/tests/auto/declarative/qdeclarativepathview/data/pathview2.qml index 1991f6ea40..2ce66a2385 100644 --- a/tests/auto/declarative/qdeclarativepathview/data/pathview2.qml +++ b/tests/auto/declarative/qdeclarativepathview/data/pathview2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 PathView { diff --git a/tests/auto/declarative/qdeclarativepathview/data/pathview3.qml b/tests/auto/declarative/qdeclarativepathview/data/pathview3.qml index 8c42e87851..066c5317f0 100644 --- a/tests/auto/declarative/qdeclarativepathview/data/pathview3.qml +++ b/tests/auto/declarative/qdeclarativepathview/data/pathview3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 PathView { diff --git a/tests/auto/declarative/qdeclarativepathview/data/pathview_package.qml b/tests/auto/declarative/qdeclarativepathview/data/pathview_package.qml index 3a68aacbc0..082da13ad6 100644 --- a/tests/auto/declarative/qdeclarativepathview/data/pathview_package.qml +++ b/tests/auto/declarative/qdeclarativepathview/data/pathview_package.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativepathview/data/propertychanges.qml b/tests/auto/declarative/qdeclarativepathview/data/propertychanges.qml index 33b85a5a6e..6cc9d2a82c 100644 --- a/tests/auto/declarative/qdeclarativepathview/data/propertychanges.qml +++ b/tests/auto/declarative/qdeclarativepathview/data/propertychanges.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/flowtest.qml b/tests/auto/declarative/qdeclarativepositioners/data/flowtest.qml index 8ed8d6a475..3ba015dde1 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/flowtest.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/flowtest.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/grid-animated.qml b/tests/auto/declarative/qdeclarativepositioners/data/grid-animated.qml index c6518925cf..3a56be60d7 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/grid-animated.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/grid-animated.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/grid-spacing.qml b/tests/auto/declarative/qdeclarativepositioners/data/grid-spacing.qml index 1add47da52..e098812580 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/grid-spacing.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/grid-spacing.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/grid-toptobottom.qml b/tests/auto/declarative/qdeclarativepositioners/data/grid-toptobottom.qml index 3ac60c08f5..8799366d4e 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/grid-toptobottom.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/grid-toptobottom.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/gridtest.qml b/tests/auto/declarative/qdeclarativepositioners/data/gridtest.qml index e67d27e586..ab7238a647 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/gridtest.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/gridtest.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/gridzerocolumns.qml b/tests/auto/declarative/qdeclarativepositioners/data/gridzerocolumns.qml index 001d99a802..8e11f4e0dd 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/gridzerocolumns.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/gridzerocolumns.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/horizontal-animated.qml b/tests/auto/declarative/qdeclarativepositioners/data/horizontal-animated.qml index e3f3951f94..20a6258af3 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/horizontal-animated.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/horizontal-animated.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/horizontal-spacing.qml b/tests/auto/declarative/qdeclarativepositioners/data/horizontal-spacing.qml index af3ca2fb6a..0e368c1368 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/horizontal-spacing.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/horizontal-spacing.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/horizontal.qml b/tests/auto/declarative/qdeclarativepositioners/data/horizontal.qml index 0a4cb9e48e..71ad6ecceb 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/horizontal.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/horizontal.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/propertychangestest.qml b/tests/auto/declarative/qdeclarativepositioners/data/propertychangestest.qml index 0d57b2c85b..a53ff824e2 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/propertychangestest.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/propertychangestest.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Grid { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/repeatertest.qml b/tests/auto/declarative/qdeclarativepositioners/data/repeatertest.qml index a46ad75c33..531d716534 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/repeatertest.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/repeatertest.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/vertical-animated.qml b/tests/auto/declarative/qdeclarativepositioners/data/vertical-animated.qml index 3f23724152..1499c1e9c7 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/vertical-animated.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/vertical-animated.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/vertical-spacing.qml b/tests/auto/declarative/qdeclarativepositioners/data/vertical-spacing.qml index 7446048b57..f7e853a538 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/vertical-spacing.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/vertical-spacing.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativepositioners/data/vertical.qml b/tests/auto/declarative/qdeclarativepositioners/data/vertical.qml index 856930a83e..9e3d6abbeb 100644 --- a/tests/auto/declarative/qdeclarativepositioners/data/vertical.qml +++ b/tests/auto/declarative/qdeclarativepositioners/data/vertical.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeproperty/data/TestType.qml b/tests/auto/declarative/qdeclarativeproperty/data/TestType.qml index 24ca1ca319..2177ae204d 100644 --- a/tests/auto/declarative/qdeclarativeproperty/data/TestType.qml +++ b/tests/auto/declarative/qdeclarativeproperty/data/TestType.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeproperty/data/readSynthesizedObject.qml b/tests/auto/declarative/qdeclarativeproperty/data/readSynthesizedObject.qml index fd1d3796d1..0918e86d5e 100644 --- a/tests/auto/declarative/qdeclarativeproperty/data/readSynthesizedObject.qml +++ b/tests/auto/declarative/qdeclarativeproperty/data/readSynthesizedObject.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/atob.qml b/tests/auto/declarative/qdeclarativeqt/data/atob.qml index 5ba011baa3..8355fa5785 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/atob.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/atob.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/btoa.qml b/tests/auto/declarative/qdeclarativeqt/data/btoa.qml index bacebd0609..c2993ffc2b 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/btoa.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/btoa.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/consoleLog.qml b/tests/auto/declarative/qdeclarativeqt/data/consoleLog.qml index eca5e9de86..aa9e92a60d 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/consoleLog.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/consoleLog.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/createComponent.qml b/tests/auto/declarative/qdeclarativeqt/data/createComponent.qml index 64ab2abccf..f966931762 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/createComponent.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/createComponent.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/createComponentData.qml b/tests/auto/declarative/qdeclarativeqt/data/createComponentData.qml index 729acf7038..dc3e0d300f 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/createComponentData.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/createComponentData.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/createQmlObject.qml b/tests/auto/declarative/qdeclarativeqt/data/createQmlObject.qml index b25b0c5761..ca3ff22b0b 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/createQmlObject.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/createQmlObject.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativeqt/data/darker.qml b/tests/auto/declarative/qdeclarativeqt/data/darker.qml index 6846a9f62f..738095de79 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/darker.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/darker.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/enums.qml b/tests/auto/declarative/qdeclarativeqt/data/enums.qml index b65553a53b..a0190ccc90 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/enums.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/enums.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/fontFamilies.qml b/tests/auto/declarative/qdeclarativeqt/data/fontFamilies.qml index ff80bc8d9e..e66c7be081 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/fontFamilies.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/fontFamilies.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/formatting.qml b/tests/auto/declarative/qdeclarativeqt/data/formatting.qml index e3a8080b69..7f48639a23 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/formatting.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/formatting.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/hsla.qml b/tests/auto/declarative/qdeclarativeqt/data/hsla.qml index b8b01fdcfc..4ca67a3f69 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/hsla.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/hsla.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/isQtObject.qml b/tests/auto/declarative/qdeclarativeqt/data/isQtObject.qml index ae9c34f731..0f573c403f 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/isQtObject.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/isQtObject.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/lighter.qml b/tests/auto/declarative/qdeclarativeqt/data/lighter.qml index e4fb9f9ddf..ddaf78db29 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/lighter.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/lighter.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/md5.qml b/tests/auto/declarative/qdeclarativeqt/data/md5.qml index f86f45cf17..07f719b49a 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/md5.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/md5.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/openUrlExternally.qml b/tests/auto/declarative/qdeclarativeqt/data/openUrlExternally.qml index b88f3a07a1..3ceb05d4b6 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/openUrlExternally.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/openUrlExternally.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/point.qml b/tests/auto/declarative/qdeclarativeqt/data/point.qml index debba49813..0ada2d543e 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/point.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/point.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/rect.qml b/tests/auto/declarative/qdeclarativeqt/data/rect.qml index 6de1723bbf..fd3862898c 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/rect.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/rect.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/rgba.qml b/tests/auto/declarative/qdeclarativeqt/data/rgba.qml index 48cbd68fdd..16606cd25d 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/rgba.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/rgba.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/size.qml b/tests/auto/declarative/qdeclarativeqt/data/size.qml index c2c1625682..afcfb62939 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/size.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/size.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/tint.qml b/tests/auto/declarative/qdeclarativeqt/data/tint.qml index 34d9eb9400..25e7051215 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/tint.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/tint.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativeqt/data/vector.qml b/tests/auto/declarative/qdeclarativeqt/data/vector.qml index da7c611fd8..b7708f5b89 100644 --- a/tests/auto/declarative/qdeclarativeqt/data/vector.qml +++ b/tests/auto/declarative/qdeclarativeqt/data/vector.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativerepeater/data/intmodel.qml b/tests/auto/declarative/qdeclarativerepeater/data/intmodel.qml index 2c68138fb1..9cd03c472e 100644 --- a/tests/auto/declarative/qdeclarativerepeater/data/intmodel.qml +++ b/tests/auto/declarative/qdeclarativerepeater/data/intmodel.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativerepeater/data/itemlist.qml b/tests/auto/declarative/qdeclarativerepeater/data/itemlist.qml index d8dc0c8954..e8dd8cce18 100644 --- a/tests/auto/declarative/qdeclarativerepeater/data/itemlist.qml +++ b/tests/auto/declarative/qdeclarativerepeater/data/itemlist.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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$ -** -****************************************************************************/ - // This example demonstrates placing items in a view using // a VisualItemModel diff --git a/tests/auto/declarative/qdeclarativerepeater/data/objlist.qml b/tests/auto/declarative/qdeclarativerepeater/data/objlist.qml index 38e60d5cfa..e1bd2e2d89 100644 --- a/tests/auto/declarative/qdeclarativerepeater/data/objlist.qml +++ b/tests/auto/declarative/qdeclarativerepeater/data/objlist.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativerepeater/data/properties.qml b/tests/auto/declarative/qdeclarativerepeater/data/properties.qml index f3ee621ea0..34bbde04c3 100644 --- a/tests/auto/declarative/qdeclarativerepeater/data/properties.qml +++ b/tests/auto/declarative/qdeclarativerepeater/data/properties.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Row { diff --git a/tests/auto/declarative/qdeclarativerepeater/data/repeater1.qml b/tests/auto/declarative/qdeclarativerepeater/data/repeater1.qml index 61d659531d..3047435aa7 100644 --- a/tests/auto/declarative/qdeclarativerepeater/data/repeater1.qml +++ b/tests/auto/declarative/qdeclarativerepeater/data/repeater1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativerepeater/data/repeater2.qml b/tests/auto/declarative/qdeclarativerepeater/data/repeater2.qml index 59a190a3fb..c8b863c08e 100644 --- a/tests/auto/declarative/qdeclarativerepeater/data/repeater2.qml +++ b/tests/auto/declarative/qdeclarativerepeater/data/repeater2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimation1.qml b/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimation1.qml index 66c69b95da..1de5f16abe 100644 --- a/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimation1.qml +++ b/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimation1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 SmoothedAnimation {} diff --git a/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimation2.qml b/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimation2.qml index f3e3819871..544e7e9584 100644 --- a/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimation2.qml +++ b/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimation2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 SmoothedAnimation { diff --git a/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimation3.qml b/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimation3.qml index 8e7503dc69..c1f3af0478 100644 --- a/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimation3.qml +++ b/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimation3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 SmoothedAnimation { diff --git a/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimationBehavior.qml b/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimationBehavior.qml index 3de504f096..3afeb7b2a5 100644 --- a/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimationBehavior.qml +++ b/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimationBehavior.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimationValueSource.qml b/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimationValueSource.qml index cbaff36d72..53429e2685 100644 --- a/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimationValueSource.qml +++ b/tests/auto/declarative/qdeclarativesmoothedanimation/data/smoothedanimationValueSource.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollow1.qml b/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollow1.qml index eb027b6a5e..8c9d8ad256 100644 --- a/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollow1.qml +++ b/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollow1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 SmoothedFollow {} diff --git a/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollow2.qml b/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollow2.qml index 18be6edbf8..a634302056 100644 --- a/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollow2.qml +++ b/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollow2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 SmoothedFollow { diff --git a/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollow3.qml b/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollow3.qml index 4832f9b7e2..c60da7f49f 100644 --- a/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollow3.qml +++ b/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollow3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 SmoothedFollow { diff --git a/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollowDisabled.qml b/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollowDisabled.qml index c8872120e9..486bdee693 100644 --- a/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollowDisabled.qml +++ b/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollowDisabled.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollowValueSource.qml b/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollowValueSource.qml index 58a41f469f..2e01d74be7 100644 --- a/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollowValueSource.qml +++ b/tests/auto/declarative/qdeclarativesmoothedfollow/data/smoothedfollowValueSource.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativespringfollow/data/springfollow1.qml b/tests/auto/declarative/qdeclarativespringfollow/data/springfollow1.qml index 515542998a..8528cfa840 100644 --- a/tests/auto/declarative/qdeclarativespringfollow/data/springfollow1.qml +++ b/tests/auto/declarative/qdeclarativespringfollow/data/springfollow1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 SpringFollow { diff --git a/tests/auto/declarative/qdeclarativespringfollow/data/springfollow2.qml b/tests/auto/declarative/qdeclarativespringfollow/data/springfollow2.qml index aeed81955f..31a740affb 100644 --- a/tests/auto/declarative/qdeclarativespringfollow/data/springfollow2.qml +++ b/tests/auto/declarative/qdeclarativespringfollow/data/springfollow2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 SpringFollow { diff --git a/tests/auto/declarative/qdeclarativespringfollow/data/springfollow3.qml b/tests/auto/declarative/qdeclarativespringfollow/data/springfollow3.qml index d0d8696d2e..0fa4aa9cf0 100644 --- a/tests/auto/declarative/qdeclarativespringfollow/data/springfollow3.qml +++ b/tests/auto/declarative/qdeclarativespringfollow/data/springfollow3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 SpringFollow { diff --git a/tests/auto/declarative/qdeclarativestates/data/ExtendedRectangle.qml b/tests/auto/declarative/qdeclarativestates/data/ExtendedRectangle.qml index 5f80d657a3..28e083ce6f 100644 --- a/tests/auto/declarative/qdeclarativestates/data/ExtendedRectangle.qml +++ b/tests/auto/declarative/qdeclarativestates/data/ExtendedRectangle.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: extendedRect diff --git a/tests/auto/declarative/qdeclarativestates/data/Implementation/MyType.qml b/tests/auto/declarative/qdeclarativestates/data/Implementation/MyType.qml index 2dbaafae02..1872de87a2 100644 --- a/tests/auto/declarative/qdeclarativestates/data/Implementation/MyType.qml +++ b/tests/auto/declarative/qdeclarativestates/data/Implementation/MyType.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativestates/data/anchorChanges1.qml b/tests/auto/declarative/qdeclarativestates/data/anchorChanges1.qml index edc3a9e175..e9c9d67a67 100644 --- a/tests/auto/declarative/qdeclarativestates/data/anchorChanges1.qml +++ b/tests/auto/declarative/qdeclarativestates/data/anchorChanges1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativestates/data/anchorChanges2.qml b/tests/auto/declarative/qdeclarativestates/data/anchorChanges2.qml index a74964fd5e..cee2ce55d3 100644 --- a/tests/auto/declarative/qdeclarativestates/data/anchorChanges2.qml +++ b/tests/auto/declarative/qdeclarativestates/data/anchorChanges2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativestates/data/anchorChanges3.qml b/tests/auto/declarative/qdeclarativestates/data/anchorChanges3.qml index fe2813185c..54dc34b545 100644 --- a/tests/auto/declarative/qdeclarativestates/data/anchorChanges3.qml +++ b/tests/auto/declarative/qdeclarativestates/data/anchorChanges3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativestates/data/anchorChanges4.qml b/tests/auto/declarative/qdeclarativestates/data/anchorChanges4.qml index ae0cd0fe1e..885c3ceb25 100644 --- a/tests/auto/declarative/qdeclarativestates/data/anchorChanges4.qml +++ b/tests/auto/declarative/qdeclarativestates/data/anchorChanges4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativestates/data/anchorChanges5.qml b/tests/auto/declarative/qdeclarativestates/data/anchorChanges5.qml index be6bb8b796..c3db72e718 100644 --- a/tests/auto/declarative/qdeclarativestates/data/anchorChanges5.qml +++ b/tests/auto/declarative/qdeclarativestates/data/anchorChanges5.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativestates/data/anchorChangesCrash.qml b/tests/auto/declarative/qdeclarativestates/data/anchorChangesCrash.qml index cf0cbef4ed..861ef8f22d 100644 --- a/tests/auto/declarative/qdeclarativestates/data/anchorChangesCrash.qml +++ b/tests/auto/declarative/qdeclarativestates/data/anchorChangesCrash.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativestates/data/autoStateAtStartupRestoreBug.qml b/tests/auto/declarative/qdeclarativestates/data/autoStateAtStartupRestoreBug.qml index 3dd22e463e..37e1e5a72f 100644 --- a/tests/auto/declarative/qdeclarativestates/data/autoStateAtStartupRestoreBug.qml +++ b/tests/auto/declarative/qdeclarativestates/data/autoStateAtStartupRestoreBug.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativestates/data/basicBinding.qml b/tests/auto/declarative/qdeclarativestates/data/basicBinding.qml index f1853bb820..d559691cbd 100644 --- a/tests/auto/declarative/qdeclarativestates/data/basicBinding.qml +++ b/tests/auto/declarative/qdeclarativestates/data/basicBinding.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/basicBinding2.qml b/tests/auto/declarative/qdeclarativestates/data/basicBinding2.qml index 297b6bc08e..a429b2475e 100644 --- a/tests/auto/declarative/qdeclarativestates/data/basicBinding2.qml +++ b/tests/auto/declarative/qdeclarativestates/data/basicBinding2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/basicBinding3.qml b/tests/auto/declarative/qdeclarativestates/data/basicBinding3.qml index e010e7ec36..26405d9979 100644 --- a/tests/auto/declarative/qdeclarativestates/data/basicBinding3.qml +++ b/tests/auto/declarative/qdeclarativestates/data/basicBinding3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/basicBinding4.qml b/tests/auto/declarative/qdeclarativestates/data/basicBinding4.qml index ad986ef576..153a2c1687 100644 --- a/tests/auto/declarative/qdeclarativestates/data/basicBinding4.qml +++ b/tests/auto/declarative/qdeclarativestates/data/basicBinding4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/basicChanges.qml b/tests/auto/declarative/qdeclarativestates/data/basicChanges.qml index 9a5217eae6..fca791676e 100644 --- a/tests/auto/declarative/qdeclarativestates/data/basicChanges.qml +++ b/tests/auto/declarative/qdeclarativestates/data/basicChanges.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/basicChanges2.qml b/tests/auto/declarative/qdeclarativestates/data/basicChanges2.qml index 4890fdfdd1..72bd23e400 100644 --- a/tests/auto/declarative/qdeclarativestates/data/basicChanges2.qml +++ b/tests/auto/declarative/qdeclarativestates/data/basicChanges2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/basicChanges3.qml b/tests/auto/declarative/qdeclarativestates/data/basicChanges3.qml index 0c3cf6df1f..4fb1274e40 100644 --- a/tests/auto/declarative/qdeclarativestates/data/basicChanges3.qml +++ b/tests/auto/declarative/qdeclarativestates/data/basicChanges3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/basicChanges4.qml b/tests/auto/declarative/qdeclarativestates/data/basicChanges4.qml index 4455824de8..b2f02c91fa 100644 --- a/tests/auto/declarative/qdeclarativestates/data/basicChanges4.qml +++ b/tests/auto/declarative/qdeclarativestates/data/basicChanges4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativestates/data/basicExtension.qml b/tests/auto/declarative/qdeclarativestates/data/basicExtension.qml index e5093a53f7..abfe71a9c6 100644 --- a/tests/auto/declarative/qdeclarativestates/data/basicExtension.qml +++ b/tests/auto/declarative/qdeclarativestates/data/basicExtension.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/deleting.qml b/tests/auto/declarative/qdeclarativestates/data/deleting.qml index 15745f62f4..a8a66cb858 100644 --- a/tests/auto/declarative/qdeclarativestates/data/deleting.qml +++ b/tests/auto/declarative/qdeclarativestates/data/deleting.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/deletingState.qml b/tests/auto/declarative/qdeclarativestates/data/deletingState.qml index 4ca3b379ec..fadb7d922c 100644 --- a/tests/auto/declarative/qdeclarativestates/data/deletingState.qml +++ b/tests/auto/declarative/qdeclarativestates/data/deletingState.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/explicit.qml b/tests/auto/declarative/qdeclarativestates/data/explicit.qml index eff5e835d7..718b16987c 100644 --- a/tests/auto/declarative/qdeclarativestates/data/explicit.qml +++ b/tests/auto/declarative/qdeclarativestates/data/explicit.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/fakeExtension.qml b/tests/auto/declarative/qdeclarativestates/data/fakeExtension.qml index 422cb3df3d..44397b543c 100644 --- a/tests/auto/declarative/qdeclarativestates/data/fakeExtension.qml +++ b/tests/auto/declarative/qdeclarativestates/data/fakeExtension.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/illegalObj.qml b/tests/auto/declarative/qdeclarativestates/data/illegalObj.qml index 55d3e5eb12..26d0f502c2 100644 --- a/tests/auto/declarative/qdeclarativestates/data/illegalObj.qml +++ b/tests/auto/declarative/qdeclarativestates/data/illegalObj.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativestates/data/illegalTempState.qml b/tests/auto/declarative/qdeclarativestates/data/illegalTempState.qml index d60cf1560c..13cab18637 100644 --- a/tests/auto/declarative/qdeclarativestates/data/illegalTempState.qml +++ b/tests/auto/declarative/qdeclarativestates/data/illegalTempState.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativestates/data/legalTempState.qml b/tests/auto/declarative/qdeclarativestates/data/legalTempState.qml index 7e3c427bec..f757da095b 100644 --- a/tests/auto/declarative/qdeclarativestates/data/legalTempState.qml +++ b/tests/auto/declarative/qdeclarativestates/data/legalTempState.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativestates/data/nonExistantProp.qml b/tests/auto/declarative/qdeclarativestates/data/nonExistantProp.qml index ab8ba48510..db9b017fe7 100644 --- a/tests/auto/declarative/qdeclarativestates/data/nonExistantProp.qml +++ b/tests/auto/declarative/qdeclarativestates/data/nonExistantProp.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/parentChange1.qml b/tests/auto/declarative/qdeclarativestates/data/parentChange1.qml index ef8f67f21e..8b0e3bf18c 100644 --- a/tests/auto/declarative/qdeclarativestates/data/parentChange1.qml +++ b/tests/auto/declarative/qdeclarativestates/data/parentChange1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativestates/data/parentChange2.qml b/tests/auto/declarative/qdeclarativestates/data/parentChange2.qml index 3b03e0f830..3a14dbe76a 100644 --- a/tests/auto/declarative/qdeclarativestates/data/parentChange2.qml +++ b/tests/auto/declarative/qdeclarativestates/data/parentChange2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativestates/data/parentChange3.qml b/tests/auto/declarative/qdeclarativestates/data/parentChange3.qml index a1915a6cb2..17c07e8413 100644 --- a/tests/auto/declarative/qdeclarativestates/data/parentChange3.qml +++ b/tests/auto/declarative/qdeclarativestates/data/parentChange3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativestates/data/parentChange4.qml b/tests/auto/declarative/qdeclarativestates/data/parentChange4.qml index 5f7e1fbd2f..11d0831a4f 100644 --- a/tests/auto/declarative/qdeclarativestates/data/parentChange4.qml +++ b/tests/auto/declarative/qdeclarativestates/data/parentChange4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativestates/data/parentChange5.qml b/tests/auto/declarative/qdeclarativestates/data/parentChange5.qml index 145df1d7f3..329d2777cd 100644 --- a/tests/auto/declarative/qdeclarativestates/data/parentChange5.qml +++ b/tests/auto/declarative/qdeclarativestates/data/parentChange5.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativestates/data/propertyErrors.qml b/tests/auto/declarative/qdeclarativestates/data/propertyErrors.qml index 9b0f5d471d..807eec9f5a 100644 --- a/tests/auto/declarative/qdeclarativestates/data/propertyErrors.qml +++ b/tests/auto/declarative/qdeclarativestates/data/propertyErrors.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/reset.qml b/tests/auto/declarative/qdeclarativestates/data/reset.qml index 968619fa02..5725320be5 100644 --- a/tests/auto/declarative/qdeclarativestates/data/reset.qml +++ b/tests/auto/declarative/qdeclarativestates/data/reset.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativestates/data/restoreEntryValues.qml b/tests/auto/declarative/qdeclarativestates/data/restoreEntryValues.qml index 07463a24ae..621adf033b 100644 --- a/tests/auto/declarative/qdeclarativestates/data/restoreEntryValues.qml +++ b/tests/auto/declarative/qdeclarativestates/data/restoreEntryValues.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/script.qml b/tests/auto/declarative/qdeclarativestates/data/script.qml index c16f3e6406..cdb6be1a49 100644 --- a/tests/auto/declarative/qdeclarativestates/data/script.qml +++ b/tests/auto/declarative/qdeclarativestates/data/script.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: myRectangle diff --git a/tests/auto/declarative/qdeclarativestates/data/signalOverride.qml b/tests/auto/declarative/qdeclarativestates/data/signalOverride.qml index a94b5d1256..c4ab96cf18 100644 --- a/tests/auto/declarative/qdeclarativestates/data/signalOverride.qml +++ b/tests/auto/declarative/qdeclarativestates/data/signalOverride.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import Qt.test 1.0 diff --git a/tests/auto/declarative/qdeclarativestates/data/signalOverride2.qml b/tests/auto/declarative/qdeclarativestates/data/signalOverride2.qml index d14c11e32c..65a8cea840 100644 --- a/tests/auto/declarative/qdeclarativestates/data/signalOverride2.qml +++ b/tests/auto/declarative/qdeclarativestates/data/signalOverride2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import Qt.test 1.0 diff --git a/tests/auto/declarative/qdeclarativestates/data/signalOverrideCrash.qml b/tests/auto/declarative/qdeclarativestates/data/signalOverrideCrash.qml index 297c97fa92..8a0b51a4fe 100644 --- a/tests/auto/declarative/qdeclarativestates/data/signalOverrideCrash.qml +++ b/tests/auto/declarative/qdeclarativestates/data/signalOverrideCrash.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import Qt.test 1.0 diff --git a/tests/auto/declarative/qdeclarativestates/data/signalOverrideCrash2.qml b/tests/auto/declarative/qdeclarativestates/data/signalOverrideCrash2.qml index b65bd77d89..2215ee4ced 100644 --- a/tests/auto/declarative/qdeclarativestates/data/signalOverrideCrash2.qml +++ b/tests/auto/declarative/qdeclarativestates/data/signalOverrideCrash2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativestates/data/unnamedWhen.qml b/tests/auto/declarative/qdeclarativestates/data/unnamedWhen.qml index fecec9b983..a70840c86e 100644 --- a/tests/auto/declarative/qdeclarativestates/data/unnamedWhen.qml +++ b/tests/auto/declarative/qdeclarativestates/data/unnamedWhen.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativestates/data/urlResolution.qml b/tests/auto/declarative/qdeclarativestates/data/urlResolution.qml index 4dabcf264f..8995b5654f 100644 --- a/tests/auto/declarative/qdeclarativestates/data/urlResolution.qml +++ b/tests/auto/declarative/qdeclarativestates/data/urlResolution.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import "Implementation" diff --git a/tests/auto/declarative/qdeclarativestates/data/whenOrdering.qml b/tests/auto/declarative/qdeclarativestates/data/whenOrdering.qml index f752eecec9..08d0795d66 100644 --- a/tests/auto/declarative/qdeclarativestates/data/whenOrdering.qml +++ b/tests/auto/declarative/qdeclarativestates/data/whenOrdering.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativetext/data/embeddedImagesLocal.qml b/tests/auto/declarative/qdeclarativetext/data/embeddedImagesLocal.qml index 95028a10ad..877222fa61 100644 --- a/tests/auto/declarative/qdeclarativetext/data/embeddedImagesLocal.qml +++ b/tests/auto/declarative/qdeclarativetext/data/embeddedImagesLocal.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Text { diff --git a/tests/auto/declarative/qdeclarativetext/data/embeddedImagesLocalError.qml b/tests/auto/declarative/qdeclarativetext/data/embeddedImagesLocalError.qml index d119deb1ed..abc707711d 100644 --- a/tests/auto/declarative/qdeclarativetext/data/embeddedImagesLocalError.qml +++ b/tests/auto/declarative/qdeclarativetext/data/embeddedImagesLocalError.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Text { diff --git a/tests/auto/declarative/qdeclarativetext/data/embeddedImagesRemote.qml b/tests/auto/declarative/qdeclarativetext/data/embeddedImagesRemote.qml index ed32651d28..b6ca3e360c 100644 --- a/tests/auto/declarative/qdeclarativetext/data/embeddedImagesRemote.qml +++ b/tests/auto/declarative/qdeclarativetext/data/embeddedImagesRemote.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Text { diff --git a/tests/auto/declarative/qdeclarativetext/data/embeddedImagesRemoteError.qml b/tests/auto/declarative/qdeclarativetext/data/embeddedImagesRemoteError.qml index 85fc2ebb2c..fbfce9ad0c 100644 --- a/tests/auto/declarative/qdeclarativetext/data/embeddedImagesRemoteError.qml +++ b/tests/auto/declarative/qdeclarativetext/data/embeddedImagesRemoteError.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Text { diff --git a/tests/auto/declarative/qdeclarativetextedit/data/cursorTest.qml b/tests/auto/declarative/qdeclarativetextedit/data/cursorTest.qml index 7aa66c03b4..586e606952 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/cursorTest.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/cursorTest.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: 300; color: "white" diff --git a/tests/auto/declarative/qdeclarativetextedit/data/geometrySignals.qml b/tests/auto/declarative/qdeclarativetextedit/data/geometrySignals.qml index cb7d0cc98f..b39ba5b8a4 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/geometrySignals.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/geometrySignals.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativetextedit/data/http/ErrItem.qml b/tests/auto/declarative/qdeclarativetextedit/data/http/ErrItem.qml index 5456c0d94c..b5c807e011 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/http/ErrItem.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/http/ErrItem.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item{ diff --git a/tests/auto/declarative/qdeclarativetextedit/data/http/NormItem.qml b/tests/auto/declarative/qdeclarativetextedit/data/http/NormItem.qml index 8d8d61ad24..df843d8013 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/http/NormItem.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/http/NormItem.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTest.qml b/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTest.qml index 221ea05773..1b41f8f8b3 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTest.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTest.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: 300; color: "white" diff --git a/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTestFail1.qml b/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTestFail1.qml index 5becfb1f40..51be3cfdbe 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTestFail1.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTestFail1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: 300; color: "white" diff --git a/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTestFail2.qml b/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTestFail2.qml index 9eb49800a4..30c3fbd73b 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTestFail2.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTestFail2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: 300; color: "white" diff --git a/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTestPass.qml b/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTestPass.qml index 1cf77c38fa..a1ca58ab6d 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTestPass.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/http/cursorHttpTestPass.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: 300; color: "white" diff --git a/tests/auto/declarative/qdeclarativetextedit/data/httpfail/FailItem.qml b/tests/auto/declarative/qdeclarativetextedit/data/httpfail/FailItem.qml index 8c624a96bd..8dfac482c9 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/httpfail/FailItem.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/httpfail/FailItem.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativetextedit/data/httpslow/WaitItem.qml b/tests/auto/declarative/qdeclarativetextedit/data/httpslow/WaitItem.qml index 8c624a96bd..8dfac482c9 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/httpslow/WaitItem.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/httpslow/WaitItem.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativetextedit/data/inputmethodhints.qml b/tests/auto/declarative/qdeclarativetextedit/data/inputmethodhints.qml index 1bed6ed943..8067edb225 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/inputmethodhints.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/inputmethodhints.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 TextEdit { diff --git a/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_default.qml b/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_default.qml index 152614a729..f1cf86cd4e 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_default.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_default.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 TextEdit { diff --git a/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_false.qml b/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_false.qml index 152614a729..f1cf86cd4e 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_false.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_false.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 TextEdit { diff --git a/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_true.qml b/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_true.qml index e862ee79d6..90383b9418 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_true.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/mouseselection_true.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 TextEdit { diff --git a/tests/auto/declarative/qdeclarativetextedit/data/navigation.qml b/tests/auto/declarative/qdeclarativetextedit/data/navigation.qml index de8f6f0f58..7772687708 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/navigation.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/navigation.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativetextedit/data/readOnly.qml b/tests/auto/declarative/qdeclarativetextedit/data/readOnly.qml index e2478ae2f1..a68e4b4c9c 100644 --- a/tests/auto/declarative/qdeclarativetextedit/data/readOnly.qml +++ b/tests/auto/declarative/qdeclarativetextedit/data/readOnly.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativetextinput/data/cursorTest.qml b/tests/auto/declarative/qdeclarativetextinput/data/cursorTest.qml index 5bf68c68b4..f0d1be5300 100644 --- a/tests/auto/declarative/qdeclarativetextinput/data/cursorTest.qml +++ b/tests/auto/declarative/qdeclarativetextinput/data/cursorTest.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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: 300; color: "white" diff --git a/tests/auto/declarative/qdeclarativetextinput/data/echoMode.qml b/tests/auto/declarative/qdeclarativetextinput/data/echoMode.qml index b6e9943e76..66a2017510 100644 --- a/tests/auto/declarative/qdeclarativetextinput/data/echoMode.qml +++ b/tests/auto/declarative/qdeclarativetextinput/data/echoMode.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativetextinput/data/geometrySignals.qml b/tests/auto/declarative/qdeclarativetextinput/data/geometrySignals.qml index 0fd4226b58..a9b50feae2 100644 --- a/tests/auto/declarative/qdeclarativetextinput/data/geometrySignals.qml +++ b/tests/auto/declarative/qdeclarativetextinput/data/geometrySignals.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativetextinput/data/inputmethodhints.qml b/tests/auto/declarative/qdeclarativetextinput/data/inputmethodhints.qml index fe083d1342..da6b81f60e 100644 --- a/tests/auto/declarative/qdeclarativetextinput/data/inputmethodhints.qml +++ b/tests/auto/declarative/qdeclarativetextinput/data/inputmethodhints.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 TextInput { diff --git a/tests/auto/declarative/qdeclarativetextinput/data/masks.qml b/tests/auto/declarative/qdeclarativetextinput/data/masks.qml index 8b19afa672..141c243668 100644 --- a/tests/auto/declarative/qdeclarativetextinput/data/masks.qml +++ b/tests/auto/declarative/qdeclarativetextinput/data/masks.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 TextInput{ diff --git a/tests/auto/declarative/qdeclarativetextinput/data/maxLength.qml b/tests/auto/declarative/qdeclarativetextinput/data/maxLength.qml index ca156882c3..c3d59941ad 100644 --- a/tests/auto/declarative/qdeclarativetextinput/data/maxLength.qml +++ b/tests/auto/declarative/qdeclarativetextinput/data/maxLength.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 TextInput{ diff --git a/tests/auto/declarative/qdeclarativetextinput/data/navigation.qml b/tests/auto/declarative/qdeclarativetextinput/data/navigation.qml index 7f50841b03..58866b73f8 100644 --- a/tests/auto/declarative/qdeclarativetextinput/data/navigation.qml +++ b/tests/auto/declarative/qdeclarativetextinput/data/navigation.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativetextinput/data/readOnly.qml b/tests/auto/declarative/qdeclarativetextinput/data/readOnly.qml index 424b95d006..b10ea8155c 100644 --- a/tests/auto/declarative/qdeclarativetextinput/data/readOnly.qml +++ b/tests/auto/declarative/qdeclarativetextinput/data/readOnly.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativetextinput/data/validators.qml b/tests/auto/declarative/qdeclarativetextinput/data/validators.qml index 6482d64c74..4b1ba270ef 100644 --- a/tests/auto/declarative/qdeclarativetextinput/data/validators.qml +++ b/tests/auto/declarative/qdeclarativetextinput/data/validators.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/autoBindingRemoval.2.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/autoBindingRemoval.2.qml index 4cec4bc882..ce2e82d0f8 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/autoBindingRemoval.2.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/autoBindingRemoval.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/autoBindingRemoval.3.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/autoBindingRemoval.3.qml index 02ad992082..d431b4ae08 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/autoBindingRemoval.3.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/autoBindingRemoval.3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/autoBindingRemoval.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/autoBindingRemoval.qml index b292889bbc..a8a72f515b 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/autoBindingRemoval.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/autoBindingRemoval.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/bindingAssignment.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/bindingAssignment.qml index 200379c8f0..a65218669b 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/bindingAssignment.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/bindingAssignment.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/bindingConflict.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/bindingConflict.qml index 72d63cd161..fd25c9f0a7 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/bindingConflict.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/bindingConflict.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/bindingRead.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/bindingRead.qml index 3bc79b824d..538d776fba 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/bindingRead.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/bindingRead.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/bindingVariantCopy.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/bindingVariantCopy.qml index fda8d5091e..3a48c8bdb1 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/bindingVariantCopy.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/bindingVariantCopy.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/conflicting.1.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/conflicting.1.qml index 6ab2f4e58f..52591b1b30 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/conflicting.1.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/conflicting.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/conflicting.2.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/conflicting.2.qml index 8f10397c9f..35005fea11 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/conflicting.2.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/conflicting.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/conflicting.3.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/conflicting.3.qml index 200d062799..4ae45a49d0 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/conflicting.3.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/conflicting.3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/deletedObject.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/deletedObject.qml index a8b300c5ee..69b5bfd65d 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/deletedObject.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/deletedObject.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 import "deletedObject.js" as JS diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/enums.1.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/enums.1.qml index cc9b72d71d..cb01a80669 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/enums.1.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/enums.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/enums.2.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/enums.2.qml index e000376e0c..93f1ed59bc 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/enums.2.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/enums.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/enums.3.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/enums.3.qml index b27c3f280c..b6767b0581 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/enums.3.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/enums.3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/enums.4.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/enums.4.qml index b73cf05fb3..4227ebf8c2 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/enums.4.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/enums.4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 as MyQt diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/enums.5.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/enums.5.qml index 78dbf2aadf..a66e9d6689 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/enums.5.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/enums.5.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 as MyQt diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/font_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/font_read.qml index fbd4024cee..d73bb132d3 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/font_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/font_read.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.2.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.2.qml index 97494ca39a..b559389efb 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.2.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.3.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.3.qml index 7d13f5d936..913ac50738 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.3.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.4.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.4.qml index 3f9718a8e8..2ec69d7281 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.4.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.5.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.5.qml index c1d6a30e7e..cc51c31c5a 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.5.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.5.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import Test 1.0 diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.qml index 3636100d92..ff4d0a1004 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/font_write.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/matrix4x4_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/matrix4x4_read.qml index 510190e231..6c4a68258c 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/matrix4x4_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/matrix4x4_read.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/matrix4x4_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/matrix4x4_write.qml index e3ac187111..2a9f154d6f 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/matrix4x4_write.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/matrix4x4_write.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/point_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/point_read.qml index f7f6bd57ba..4bb6c5384c 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/point_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/point_read.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/point_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/point_write.qml index 05a38812d9..063525a6f0 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/point_write.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/point_write.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/pointf_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/pointf_read.qml index 202ef26270..0eab6daabe 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/pointf_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/pointf_read.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/pointf_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/pointf_write.qml index 5f1086bbea..9ee3fc1bda 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/pointf_write.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/pointf_write.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/quaternion_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/quaternion_read.qml index 2f99b5dc7e..d1a21dc926 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/quaternion_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/quaternion_read.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/quaternion_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/quaternion_write.qml index c233a8b64d..0c3e5afd98 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/quaternion_write.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/quaternion_write.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/rect_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/rect_read.qml index 5a3840fc7b..c3b37a7099 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/rect_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/rect_read.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/rect_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/rect_write.qml index a5521bf93d..8add45305c 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/rect_write.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/rect_write.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/rectf_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/rectf_read.qml index 27e18b295c..6ff3ce30bf 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/rectf_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/rectf_read.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/rectf_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/rectf_write.qml index 7dc5fdbeb2..1e6ff4ff90 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/rectf_write.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/rectf_write.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/returnValues.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/returnValues.qml index b6212cd864..0615300693 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/returnValues.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/returnValues.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/scriptAccess.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/scriptAccess.qml index 4e58ff8335..e962ab09a9 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/scriptAccess.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/scriptAccess.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import Test 1.0 diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/scriptVariantCopy.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/scriptVariantCopy.qml index 490946cd24..42fccfac5a 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/scriptVariantCopy.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/scriptVariantCopy.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/size_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/size_read.qml index 3e90a86c62..a49fd9f760 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/size_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/size_read.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/size_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/size_write.qml index 51569c69a2..2f9d10e45f 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/size_write.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/size_write.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/sizef_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/sizef_read.qml index f724f6329d..96cd425f17 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/sizef_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/sizef_read.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/sizef_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/sizef_write.qml index 5216dbad5b..f16f0bdf93 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/sizef_write.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/sizef_write.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_read.qml index 51994fe865..7f708a0899 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_read.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror.qml index 15917c91f6..3254557014 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror2.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror2.qml index 79fc33b1da..656d718b05 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror2.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror3.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror3.qml index 2a4e8b25fb..b8e3f0d41b 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror3.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror4.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror4.qml index 14e7a75f9a..045fc5149f 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror4.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/sizereadonly_writeerror4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/staticAssignment.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/staticAssignment.qml index 6edaa351ea..b687f89eef 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/staticAssignment.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/staticAssignment.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/valueInterceptors.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/valueInterceptors.qml index ba56fb7c78..0897847d2d 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/valueInterceptors.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/valueInterceptors.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/valueSources.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/valueSources.qml index 564e670abf..717f3502c0 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/valueSources.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/valueSources.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/varAssignment.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/varAssignment.qml index c9ff511dab..e4715aba4a 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/varAssignment.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/varAssignment.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/vector2d_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/vector2d_read.qml index e8d2ee5e3c..fc315f7abf 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/vector2d_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/vector2d_read.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/vector2d_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/vector2d_write.qml index ca6760aa2f..f0e35ff200 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/vector2d_write.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/vector2d_write.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/vector3d_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/vector3d_read.qml index 20e3a46153..f1e876dbb9 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/vector3d_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/vector3d_read.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/vector3d_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/vector3d_write.qml index 77b7ebf2c1..9c1bf7620a 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/vector3d_write.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/vector3d_write.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/vector4d_read.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/vector4d_read.qml index 4e636f2cf5..f9d5d6053e 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/vector4d_read.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/vector4d_read.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativevaluetypes/data/vector4d_write.qml b/tests/auto/declarative/qdeclarativevaluetypes/data/vector4d_write.qml index 66639a56d5..548698126d 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/data/vector4d_write.qml +++ b/tests/auto/declarative/qdeclarativevaluetypes/data/vector4d_write.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyTypeObject { diff --git a/tests/auto/declarative/qdeclarativeview/data/resizemodedeclarativeitem.qml b/tests/auto/declarative/qdeclarativeview/data/resizemodedeclarativeitem.qml index 09435b8d39..27c8454ae1 100644 --- a/tests/auto/declarative/qdeclarativeview/data/resizemodedeclarativeitem.qml +++ b/tests/auto/declarative/qdeclarativeview/data/resizemodedeclarativeitem.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { width: 200 diff --git a/tests/auto/declarative/qdeclarativeview/data/resizemodegraphicswidget.qml b/tests/auto/declarative/qdeclarativeview/data/resizemodegraphicswidget.qml index 92f15b7c2b..964810c895 100644 --- a/tests/auto/declarative/qdeclarativeview/data/resizemodegraphicswidget.qml +++ b/tests/auto/declarative/qdeclarativeview/data/resizemodegraphicswidget.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QGraphicsWidget { width: 200 diff --git a/tests/auto/declarative/qdeclarativeviewer/data/orientation.qml b/tests/auto/declarative/qdeclarativeviewer/data/orientation.qml index 70c046d31c..687fac64fa 100644 --- a/tests/auto/declarative/qdeclarativeviewer/data/orientation.qml +++ b/tests/auto/declarative/qdeclarativeviewer/data/orientation.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { color: "black" diff --git a/tests/auto/declarative/qdeclarativevisualdatamodel/data/objectlist.qml b/tests/auto/declarative/qdeclarativevisualdatamodel/data/objectlist.qml index f91f5ab440..f5198c90d2 100644 --- a/tests/auto/declarative/qdeclarativevisualdatamodel/data/objectlist.qml +++ b/tests/auto/declarative/qdeclarativevisualdatamodel/data/objectlist.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 ListView { diff --git a/tests/auto/declarative/qdeclarativevisualdatamodel/data/visualdatamodel.qml b/tests/auto/declarative/qdeclarativevisualdatamodel/data/visualdatamodel.qml index e2f0a84fe5..d70f82b93b 100644 --- a/tests/auto/declarative/qdeclarativevisualdatamodel/data/visualdatamodel.qml +++ b/tests/auto/declarative/qdeclarativevisualdatamodel/data/visualdatamodel.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 VisualDataModel { diff --git a/tests/auto/declarative/qdeclarativewebview/data/basic.qml b/tests/auto/declarative/qdeclarativewebview/data/basic.qml index 1f6a07d7ad..a5a8d34381 100644 --- a/tests/auto/declarative/qdeclarativewebview/data/basic.qml +++ b/tests/auto/declarative/qdeclarativewebview/data/basic.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qdeclarativewebview/data/elements.qml b/tests/auto/declarative/qdeclarativewebview/data/elements.qml index 33900e9730..5af76ed322 100644 --- a/tests/auto/declarative/qdeclarativewebview/data/elements.qml +++ b/tests/auto/declarative/qdeclarativewebview/data/elements.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qdeclarativewebview/data/javaScript.qml b/tests/auto/declarative/qdeclarativewebview/data/javaScript.qml index 0326910852..4141166a48 100644 --- a/tests/auto/declarative/qdeclarativewebview/data/javaScript.qml +++ b/tests/auto/declarative/qdeclarativewebview/data/javaScript.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qdeclarativewebview/data/loadError.qml b/tests/auto/declarative/qdeclarativewebview/data/loadError.qml index ec51d97c00..2061b5f938 100644 --- a/tests/auto/declarative/qdeclarativewebview/data/loadError.qml +++ b/tests/auto/declarative/qdeclarativewebview/data/loadError.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qdeclarativewebview/data/newwindows.qml b/tests/auto/declarative/qdeclarativewebview/data/newwindows.qml index 5b9275fe94..d066c07a23 100644 --- a/tests/auto/declarative/qdeclarativewebview/data/newwindows.qml +++ b/tests/auto/declarative/qdeclarativewebview/data/newwindows.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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$ -** -****************************************************************************/ - // Demonstrates opening new WebViews from HTML import Qt 4.7 diff --git a/tests/auto/declarative/qdeclarativewebview/data/pixelCache.qml b/tests/auto/declarative/qdeclarativewebview/data/pixelCache.qml index c3f9865e70..08e4d65719 100644 --- a/tests/auto/declarative/qdeclarativewebview/data/pixelCache.qml +++ b/tests/auto/declarative/qdeclarativewebview/data/pixelCache.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Test 1.0 MyWebView { diff --git a/tests/auto/declarative/qdeclarativewebview/data/propertychanges.qml b/tests/auto/declarative/qdeclarativewebview/data/propertychanges.qml index a259b2f14f..45684ff88e 100644 --- a/tests/auto/declarative/qdeclarativewebview/data/propertychanges.qml +++ b/tests/auto/declarative/qdeclarativewebview/data/propertychanges.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qdeclarativewebview/data/sethtml.qml b/tests/auto/declarative/qdeclarativewebview/data/sethtml.qml index e31aceb84b..b14bcf9a9d 100644 --- a/tests/auto/declarative/qdeclarativewebview/data/sethtml.qml +++ b/tests/auto/declarative/qdeclarativewebview/data/sethtml.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qdeclarativeworkerscript/data/worker.qml b/tests/auto/declarative/qdeclarativeworkerscript/data/worker.qml index 605e88e0e9..5c7a5ff26e 100644 --- a/tests/auto/declarative/qdeclarativeworkerscript/data/worker.qml +++ b/tests/auto/declarative/qdeclarativeworkerscript/data/worker.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 WorkerScript { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/abort.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/abort.qml index 162ebd741d..24e4071a60 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/abort.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/abort.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/abort_opened.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/abort_opened.qml index 2e10633df2..e78ce637a8 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/abort_opened.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/abort_opened.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/abort_unsent.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/abort_unsent.qml index f744407201..79d1355aec 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/abort_unsent.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/abort_unsent.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/attr.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/attr.qml index 499ce9d82b..81d8e1d8e2 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/attr.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/attr.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/callbackException.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/callbackException.qml index fe297ac606..cee07d6de6 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/callbackException.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/callbackException.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/cdata.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/cdata.qml index 3402f2a3f4..49bfebd1d6 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/cdata.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/cdata.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/constructor.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/constructor.qml index 66b3700861..ab033a5c75 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/constructor.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/constructor.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/defaultState.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/defaultState.qml index e8ba391530..d66f28302f 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/defaultState.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/defaultState.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/document.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/document.qml index 0de74c985e..1df43ef11d 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/document.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/document.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/domExceptionCodes.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/domExceptionCodes.qml index 2f523e1591..827ff3fbc1 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/domExceptionCodes.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/domExceptionCodes.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/element.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/element.qml index 324a9f6530..e7a3fb46eb 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/element.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/element.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders.qml index 540d7c3bd3..157ae81bd1 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders_args.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders_args.qml index 5cfad3d774..700822460c 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders_args.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders_args.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders_sent.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders_sent.qml index 6ce816afc9..ff587104db 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders_sent.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders_sent.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders_unsent.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders_unsent.qml index 0a59125b3d..d6256ed75f 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders_unsent.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getAllResponseHeaders_unsent.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader.qml index ae5fc18d42..0f3cdef509 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader_args.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader_args.qml index 5d7ee7c2e8..a7a8bba0b9 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader_args.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader_args.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader_sent.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader_sent.qml index 0a303ba145..fc0f7573cd 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader_sent.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader_sent.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader_unsent.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader_unsent.qml index c58a966c29..c5507a80b0 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader_unsent.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/getResponseHeader_unsent.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/instanceStateValues.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/instanceStateValues.qml index 28ca698555..d3cc8451a5 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/instanceStateValues.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/instanceStateValues.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/invalidMethodUsage.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/invalidMethodUsage.qml index 6a4bd22884..8c603a40da 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/invalidMethodUsage.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/invalidMethodUsage.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open.qml index 4a6b9aeca6..24bde60658 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_arg_count.1.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_arg_count.1.qml index c42da32add..86a6ac9517 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_arg_count.1.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_arg_count.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_arg_count.2.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_arg_count.2.qml index 90be5b9b1a..198219c7f6 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_arg_count.2.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_arg_count.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_invalid_method.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_invalid_method.qml index 8c335a0874..dacc484d5e 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_invalid_method.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_invalid_method.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_sync.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_sync.qml index 8ac0d07d17..d38380b130 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_sync.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_sync.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_user.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_user.qml index fd6bfe4c79..2c072e4cf3 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_user.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_user.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_username.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_username.qml index fe9c124e58..825ad60d6f 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_username.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_username.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/redirectError.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/redirectError.qml index 9808367db8..cb8f86916d 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/redirectError.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/redirectError.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/redirectRecur.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/redirectRecur.qml index 5eef86ddc3..f895a8c26d 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/redirectRecur.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/redirectRecur.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/redirects.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/redirects.qml index 7c8a5f06ed..268966e9c9 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/redirects.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/redirects.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/responseText.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/responseText.qml index 3539b983d7..22a9b96d10 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/responseText.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/responseText.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/responseXML_invalid.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/responseXML_invalid.qml index 0ec5598b81..d754921179 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/responseXML_invalid.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/responseXML_invalid.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_alreadySent.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_alreadySent.qml index 30a61f4223..8f69a94487 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_alreadySent.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_alreadySent.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.1.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.1.qml index de83dc4baa..7ab53d39a1 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.1.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.2.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.2.qml index 481cd9d9ae..3a48e288c7 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.2.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.3.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.3.qml index e31f321199..c68b821018 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.3.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.4.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.4.qml index d920c4e15d..8fee2cd050 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.4.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.5.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.5.qml index 220d8347e6..ea214fa148 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.5.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.5.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.6.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.6.qml index b6cfc982fb..524622ca74 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.6.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.6.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.7.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.7.qml index a74544d447..a4828cd677 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.7.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_data.7.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_ignoreData.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_ignoreData.qml index 400b0b8dcb..a1f46e2ada 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_ignoreData.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_ignoreData.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_unsent.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_unsent.qml index 76d86f4933..0efa40a5c5 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_unsent.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/send_unsent.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader.qml index 681ee8e974..b252f4a3a1 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_args.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_args.qml index 85498dc527..e83cb72ce6 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_args.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_args.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_illegalName.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_illegalName.qml index a95e68eb22..3f9041c1b0 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_illegalName.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_illegalName.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_sent.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_sent.qml index 9af90d9cb7..b15b4045cb 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_sent.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_sent.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_unsent.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_unsent.qml index 9d638e75df..aadc580b0a 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_unsent.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/setRequestHeader_unsent.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/staticStateValues.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/staticStateValues.qml index a41efce11b..97d42ac515 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/staticStateValues.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/staticStateValues.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/status.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/status.qml index dd54328b9b..e28add2af3 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/status.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/status.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/statusText.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/statusText.qml index 012c6a810d..a44c6bab7a 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/statusText.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/statusText.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/text.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/text.qml index 75f94f756b..63bfb083c0 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/text.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/text.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/utf16.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/utf16.qml index f2fa80d3ca..a54ef4a9af 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/utf16.qml +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/data/utf16.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 QtObject { diff --git a/tests/auto/declarative/qdeclarativexmllistmodel/data/model.qml b/tests/auto/declarative/qdeclarativexmllistmodel/data/model.qml index 64ab9f0f50..83541938ad 100644 --- a/tests/auto/declarative/qdeclarativexmllistmodel/data/model.qml +++ b/tests/auto/declarative/qdeclarativexmllistmodel/data/model.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 XmlListModel { diff --git a/tests/auto/declarative/qdeclarativexmllistmodel/data/model2.qml b/tests/auto/declarative/qdeclarativexmllistmodel/data/model2.qml index f247839ab0..09077b6b58 100644 --- a/tests/auto/declarative/qdeclarativexmllistmodel/data/model2.qml +++ b/tests/auto/declarative/qdeclarativexmllistmodel/data/model2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 XmlListModel { diff --git a/tests/auto/declarative/qdeclarativexmllistmodel/data/propertychanges.qml b/tests/auto/declarative/qdeclarativexmllistmodel/data/propertychanges.qml index 7fc4565722..b014aa3ec4 100644 --- a/tests/auto/declarative/qdeclarativexmllistmodel/data/propertychanges.qml +++ b/tests/auto/declarative/qdeclarativexmllistmodel/data/propertychanges.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 XmlListModel { diff --git a/tests/auto/declarative/qdeclarativexmllistmodel/data/recipes.qml b/tests/auto/declarative/qdeclarativexmllistmodel/data/recipes.qml index eb2da9f790..59b8ddc002 100644 --- a/tests/auto/declarative/qdeclarativexmllistmodel/data/recipes.qml +++ b/tests/auto/declarative/qdeclarativexmllistmodel/data/recipes.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 XmlListModel { diff --git a/tests/auto/declarative/qdeclarativexmllistmodel/data/roleErrors.qml b/tests/auto/declarative/qdeclarativexmllistmodel/data/roleErrors.qml index c043d73575..a9059635f1 100644 --- a/tests/auto/declarative/qdeclarativexmllistmodel/data/roleErrors.qml +++ b/tests/auto/declarative/qdeclarativexmllistmodel/data/roleErrors.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 XmlListModel { diff --git a/tests/auto/declarative/qdeclarativexmllistmodel/data/roleKeys.qml b/tests/auto/declarative/qdeclarativexmllistmodel/data/roleKeys.qml index 4a37a778d9..eaf5f0a675 100644 --- a/tests/auto/declarative/qdeclarativexmllistmodel/data/roleKeys.qml +++ b/tests/auto/declarative/qdeclarativexmllistmodel/data/roleKeys.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 XmlListModel { diff --git a/tests/auto/declarative/qdeclarativexmllistmodel/data/unique.qml b/tests/auto/declarative/qdeclarativexmllistmodel/data/unique.qml index ad75ba491a..3aa7b1f368 100644 --- a/tests/auto/declarative/qdeclarativexmllistmodel/data/unique.qml +++ b/tests/auto/declarative/qdeclarativexmllistmodel/data/unique.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 XmlListModel { diff --git a/tests/auto/declarative/qmlvisual/ListView/basic1.qml b/tests/auto/declarative/qmlvisual/ListView/basic1.qml index 7828738c47..c67aaaaa37 100644 --- a/tests/auto/declarative/qmlvisual/ListView/basic1.qml +++ b/tests/auto/declarative/qmlvisual/ListView/basic1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/ListView/basic2.qml b/tests/auto/declarative/qmlvisual/ListView/basic2.qml index 8b794704ef..73c1b9a9cb 100644 --- a/tests/auto/declarative/qmlvisual/ListView/basic2.qml +++ b/tests/auto/declarative/qmlvisual/ListView/basic2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/ListView/basic3.qml b/tests/auto/declarative/qmlvisual/ListView/basic3.qml index 2c8796fc05..44f74a540d 100644 --- a/tests/auto/declarative/qmlvisual/ListView/basic3.qml +++ b/tests/auto/declarative/qmlvisual/ListView/basic3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/ListView/basic4.qml b/tests/auto/declarative/qmlvisual/ListView/basic4.qml index 8f1da97bde..e5d097bfdd 100644 --- a/tests/auto/declarative/qmlvisual/ListView/basic4.qml +++ b/tests/auto/declarative/qmlvisual/ListView/basic4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic1.qml b/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic1.qml index eccc0976f1..3373247c7c 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic1.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic2.qml b/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic2.qml index 2e6a649352..20b889d5fe 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic2.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic3.qml b/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic3.qml index f2e25d8584..f49de2f03d 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic3.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic4.qml b/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic4.qml index 5cf0795c92..1ea5547e26 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic4.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.qml b/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.qml index 9b911929ce..829fbb3e1b 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.qml b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.qml index 995c5bcb45..f47179d977 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data-X11/basic1.qml b/tests/auto/declarative/qmlvisual/ListView/data-X11/basic1.qml index f5064034b7..b291ea4766 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data-X11/basic1.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data-X11/basic1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data-X11/basic2.qml b/tests/auto/declarative/qmlvisual/ListView/data-X11/basic2.qml index e071297029..e32e9e691c 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data-X11/basic2.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data-X11/basic2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data-X11/basic3.qml b/tests/auto/declarative/qmlvisual/ListView/data-X11/basic3.qml index 0fd7c0bdeb..ed0c53bc70 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data-X11/basic3.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data-X11/basic3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data-X11/basic4.qml b/tests/auto/declarative/qmlvisual/ListView/data-X11/basic4.qml index 14d5deef32..a70b741c03 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data-X11/basic4.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data-X11/basic4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic1.qml b/tests/auto/declarative/qmlvisual/ListView/data/basic1.qml index e74a3348de..7aadf36853 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data/basic1.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data/basic1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic2.qml b/tests/auto/declarative/qmlvisual/ListView/data/basic2.qml index af8650897e..5624d6b6af 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data/basic2.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data/basic2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic3.qml b/tests/auto/declarative/qmlvisual/ListView/data/basic3.qml index 38d41d44ec..16a8329822 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data/basic3.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data/basic3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic4.qml b/tests/auto/declarative/qmlvisual/ListView/data/basic4.qml index cbc0b8dc3b..23cc2555b2 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data/basic4.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data/basic4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.qml b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.qml index 9b911929ce..829fbb3e1b 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.qml b/tests/auto/declarative/qmlvisual/ListView/data/listview.qml index f48a956179..bf640297eb 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data/listview.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data/listview.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/ListView/itemlist.qml b/tests/auto/declarative/qmlvisual/ListView/itemlist.qml index 9f18e96dcb..2a0039727a 100644 --- a/tests/auto/declarative/qmlvisual/ListView/itemlist.qml +++ b/tests/auto/declarative/qmlvisual/ListView/itemlist.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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$ -** -****************************************************************************/ - // This example demonstrates placing items in a view using // a VisualItemModel diff --git a/tests/auto/declarative/qmlvisual/ListView/listview.qml b/tests/auto/declarative/qmlvisual/ListView/listview.qml index 3f962c8037..6e0b47a78c 100644 --- a/tests/auto/declarative/qmlvisual/ListView/listview.qml +++ b/tests/auto/declarative/qmlvisual/ListView/listview.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.qml b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.qml index 7a4fedbf12..08cb46bcc7 100644 --- a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.qml +++ b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/Package_Views/packageviews.qml b/tests/auto/declarative/qmlvisual/Package_Views/packageviews.qml index 471d56eaae..9db0f0df0e 100644 --- a/tests/auto/declarative/qmlvisual/Package_Views/packageviews.qml +++ b/tests/auto/declarative/qmlvisual/Package_Views/packageviews.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/animation/bindinganimation/bindinganimation.qml b/tests/auto/declarative/qmlvisual/animation/bindinganimation/bindinganimation.qml index 30b1b8fad9..406e10b74f 100644 --- a/tests/auto/declarative/qmlvisual/animation/bindinganimation/bindinganimation.qml +++ b/tests/auto/declarative/qmlvisual/animation/bindinganimation/bindinganimation.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.qml b/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.qml index d18b3e9048..dbe02761d2 100644 --- a/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.qml +++ b/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/animation/colorAnimation/colorAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/colorAnimation/colorAnimation-visual.qml index ed0296d7de..49730fc426 100644 --- a/tests/auto/declarative/qmlvisual/animation/colorAnimation/colorAnimation-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/colorAnimation/colorAnimation-visual.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data/colorAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/colorAnimation/data/colorAnimation-visual.qml index 2d09d56dcf..9611d279de 100644 --- a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data/colorAnimation-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/colorAnimation/data/colorAnimation-visual.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/animation/easing/data/easing.qml b/tests/auto/declarative/qmlvisual/animation/easing/data/easing.qml index 7be45b2b91..5923222df9 100644 --- a/tests/auto/declarative/qmlvisual/animation/easing/data/easing.qml +++ b/tests/auto/declarative/qmlvisual/animation/easing/data/easing.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/animation/easing/easing.qml b/tests/auto/declarative/qmlvisual/animation/easing/easing.qml index e5224e3ac1..d42f0698c5 100644 --- a/tests/auto/declarative/qmlvisual/animation/easing/easing.qml +++ b/tests/auto/declarative/qmlvisual/animation/easing/easing.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/animation/loop/data/loop.qml b/tests/auto/declarative/qmlvisual/animation/loop/data/loop.qml index 67481f77c7..58d0b26565 100644 --- a/tests/auto/declarative/qmlvisual/animation/loop/data/loop.qml +++ b/tests/auto/declarative/qmlvisual/animation/loop/data/loop.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/animation/loop/loop.qml b/tests/auto/declarative/qmlvisual/animation/loop/loop.qml index d77f4e1d95..78fbc683d9 100644 --- a/tests/auto/declarative/qmlvisual/animation/loop/loop.qml +++ b/tests/auto/declarative/qmlvisual/animation/loop/loop.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/animation/parallelAnimation/data/parallelAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/parallelAnimation/data/parallelAnimation-visual.qml index e038fe8e90..8fd59449ac 100644 --- a/tests/auto/declarative/qmlvisual/animation/parallelAnimation/data/parallelAnimation-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/parallelAnimation/data/parallelAnimation-visual.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/animation/parallelAnimation/parallelAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/parallelAnimation/parallelAnimation-visual.qml index 38d25cbe3a..7e0374c7c1 100644 --- a/tests/auto/declarative/qmlvisual/animation/parallelAnimation/parallelAnimation-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/parallelAnimation/parallelAnimation-visual.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 /* diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.qml index 13a1337401..edefd01014 100644 --- a/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation/parentAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/parentAnimation/parentAnimation-visual.qml index ca301be6ff..b30281dca9 100644 --- a/tests/auto/declarative/qmlvisual/animation/parentAnimation/parentAnimation-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/parentAnimation/parentAnimation-visual.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 /* diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.qml b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.qml index c1ee2594bb..9e1b923867 100644 --- a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.qml +++ b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/parentAnimation2.qml b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/parentAnimation2.qml index 7449ae51ee..dfab108abf 100644 --- a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/parentAnimation2.qml +++ b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/parentAnimation2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 /* diff --git a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.qml index e07d42b5ee..8e1e1d7636 100644 --- a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/pauseAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/pauseAnimation-visual.qml index d3b01a1b70..cc9a639d50 100644 --- a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/pauseAnimation-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/pauseAnimation-visual.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 /* diff --git a/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.qml b/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.qml index 975bbe982a..36b39fa678 100644 --- a/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/animation/propertyAction/propertyAction-visual.qml b/tests/auto/declarative/qmlvisual/animation/propertyAction/propertyAction-visual.qml index 5134ca88cc..89c2c5be28 100644 --- a/tests/auto/declarative/qmlvisual/animation/propertyAction/propertyAction-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/propertyAction/propertyAction-visual.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 /* diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.qml b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.qml index af83a96a17..dc8e2e211d 100644 --- a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.qml +++ b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.qml b/tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.qml index 73c0f473c4..f1a3ef7de0 100644 --- a/tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.qml +++ b/tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.qml b/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.qml index 3bd79eeee8..b4ee569de4 100644 --- a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.qml +++ b/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/animation/reanchor/reanchor.qml b/tests/auto/declarative/qmlvisual/animation/reanchor/reanchor.qml index 8128be4bdf..7a10db1ed1 100644 --- a/tests/auto/declarative/qmlvisual/animation/reanchor/reanchor.qml +++ b/tests/auto/declarative/qmlvisual/animation/reanchor/reanchor.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.qml b/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.qml index 0f81257472..d1de5d089f 100644 --- a/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/animation/scriptAction/scriptAction-visual.qml b/tests/auto/declarative/qmlvisual/animation/scriptAction/scriptAction-visual.qml index c28cc1a665..5008356d1c 100644 --- a/tests/auto/declarative/qmlvisual/animation/scriptAction/scriptAction-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/scriptAction/scriptAction-visual.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 /* diff --git a/tests/auto/declarative/qmlvisual/fillmode/data/fillmode.qml b/tests/auto/declarative/qmlvisual/fillmode/data/fillmode.qml index c8d0d4e3cd..b1871ce4e0 100644 --- a/tests/auto/declarative/qmlvisual/fillmode/data/fillmode.qml +++ b/tests/auto/declarative/qmlvisual/fillmode/data/fillmode.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/fillmode/fillmode.qml b/tests/auto/declarative/qmlvisual/fillmode/fillmode.qml index d7d703c51e..817ccc002e 100644 --- a/tests/auto/declarative/qmlvisual/fillmode/fillmode.qml +++ b/tests/auto/declarative/qmlvisual/fillmode/fillmode.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 /* diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.qml b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.qml index 51bcfb1d86..ee9a550b02 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test2.qml b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test2.qml index 20176205ce..5d84bfee0f 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test2.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.qml b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.qml index 390af47e0c..cd73a3c4a0 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.qml b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.qml index 71dfab7584..8d3620056a 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test2.qml b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test2.qml index 5eed43f61a..813665d950 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test2.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.qml b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.qml index aec90da6b3..0fba4517ee 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test.qml b/tests/auto/declarative/qmlvisual/focusscope/data/test.qml index 26536e8bd2..460ba1aa6e 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/data/test.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/data/test.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test2.qml b/tests/auto/declarative/qmlvisual/focusscope/data/test2.qml index 826a762297..03ece10d13 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/data/test2.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/data/test2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test3.qml b/tests/auto/declarative/qmlvisual/focusscope/data/test3.qml index 3ec0e86902..dd48e39802 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/data/test3.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/data/test3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/focusscope/test.qml b/tests/auto/declarative/qmlvisual/focusscope/test.qml index 1bbb5ba470..d83bad47d3 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/test.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/test.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/focusscope/test2.qml b/tests/auto/declarative/qmlvisual/focusscope/test2.qml index 919a8cb41a..7a6ed839ee 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/test2.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/test2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/focusscope/test3.qml b/tests/auto/declarative/qmlvisual/focusscope/test3.qml index 65310b1b83..7535c31bd4 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/test3.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/test3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated-smooth.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated-smooth.qml index cb3181e484..fdb4da340f 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated-smooth.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated-smooth.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import "content" diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated.qml index b07777c0d7..730aeca230 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import "content" diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/borders.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/borders.qml index ab77110bfe..89561282c4 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/borders.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/borders.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/MyBorderImage.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/MyBorderImage.qml index 575a9b696d..ce0c38c156 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/MyBorderImage.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/MyBorderImage.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.qml index dfe14cbcd2..e974234b6f 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.qml index 4c839506da..630a6d2ec7 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/borders.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/borders.qml index 86d05cbfe0..eb40fcb5ee 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/borders.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/borders.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.qml index 35d2ef9bf1..289af88601 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.qml index 3b659b264d..a5ca4511ed 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-horizontal.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-horizontal.qml index 6e7725a13b..175a891f37 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-horizontal.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-horizontal.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-vertical.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-vertical.qml index 15cc0c97a4..d845353d2f 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-vertical.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-vertical.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.qml index 4a33bcf9f8..d2d46e45e9 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test_flipable_resize.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test_flipable_resize.qml index 75282a733b..d1a5ade01f 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test_flipable_resize.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test_flipable_resize.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/test-flipable.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/test-flipable.qml index f0b394911f..da76ff98fc 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/test-flipable.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/test-flipable.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/test_flipable_resize.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/test_flipable_resize.qml index 6c00ab8c1f..fa68753cb1 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/test_flipable_resize.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/test_flipable_resize.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { //realWindow width: 370 diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.qml b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.qml index 66af525e55..67aa10a0db 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.qml b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.qml index 7b88b349ff..1c90af9750 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview.qml b/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview.qml index c8db1a9866..1b0bd65354 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview2.qml b/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview2.qml index 1e6c1e2b7a..30e2424d7a 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview2.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.qml b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.qml index a487acee04..b88bd8341e 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.qml b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.qml index c79c1bf314..307fef68f6 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.qml b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.qml index a33134d75e..433fd82242 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/drag.qml b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/drag.qml index b5776dd045..676264549b 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/drag.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/drag.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 /* diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-flickable.qml b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-flickable.qml index 701d9f6f64..e223f5e710 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-flickable.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-flickable.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-visual.qml b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-visual.qml index 325c54dcfa..a6861880cd 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-visual.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-visual.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 /* diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.qml b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.qml index 5a9b8dde1c..463edf8fd6 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/particles.qml b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/particles.qml index 041652db1f..1b64376293 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/particles.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/particles.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import Qt.labs.particles 1.0 diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.qml b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.qml index 3d3f8f11d2..54ef8586ec 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.qml b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.qml index 4b64e2e278..9595a5cc5b 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview-2.qml b/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview-2.qml index 5fffc20330..aed6380d54 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview-2.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview-2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview.qml b/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview.qml index 49a66265f5..3bcab5aa2b 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.qml b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.qml index de57148e53..4b36e166ab 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/usingRepeater.qml b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/usingRepeater.qml index 671eeb0302..b293d702a9 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/usingRepeater.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/usingRepeater.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/dynamic.qml b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/dynamic.qml index 1629020b18..5981b12db9 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/dynamic.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/dynamic.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/usingRepeater.qml b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/usingRepeater.qml index c01daff4b4..91895c26ad 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/usingRepeater.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/usingRepeater.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item{ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.qml b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.qml index 8cc5bc1893..2500ef0d3f 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/smoothedanimation.qml b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/smoothedanimation.qml index c78ebf16f1..d17233e5d6 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/smoothedanimation.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/smoothedanimation.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/smoothedfollow.qml b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/smoothedfollow.qml index 255437e87b..7ca0ca5ac8 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/smoothedfollow.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/smoothedfollow.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/clock.qml b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/clock.qml index 4c9d121e26..d98176379f 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/clock.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/clock.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.qml b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.qml index 91af2b503b..5da471e04c 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.qml b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.qml index 6d911c9850..e7e5b3c48b 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/follow.qml b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/follow.qml index 9921ac0263..cabdce7248 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/follow.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/follow.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data-X11/parentanchor.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data-X11/parentanchor.qml index c0ccc12a35..880609b674 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data-X11/parentanchor.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data-X11/parentanchor.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data/parentanchor.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data/parentanchor.qml index c0ccc12a35..880609b674 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data/parentanchor.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data/parentanchor.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml index 1b82af3d68..f04aa6616f 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide.qml index 27d3bad330..9439f73210 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.qml index 3341ecfeaa..3e34f04ef0 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/multilength.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/multilength.qml index 11d4ad5320..76c2ee1d87 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/multilength.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/multilength.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.qml index bdc57ce6ad..d46051422c 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.qml index cd235c85c6..ee06b1a998 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide.qml index e71abf2cc3..3b8ae0c0f7 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.qml index e623078557..27fbaf4c1f 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide.qml index 278c4d6f5a..a4bf45259e 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide2.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide2.qml index 2db265af36..1058b04d3d 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide2.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/multilength.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/multilength.qml index 80c47ee7ed..2b9c85c916 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/multilength.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/multilength.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext.qml index af5fe331de..a39c340e8c 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext.qml index 3f64037b57..8529b926b6 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.qml index b6bcd7c319..bf3aea6133 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.qml index 9bcc3cd49a..4a87240d55 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext.qml index cb3d30633c..d948e4a494 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext.qml index 0f1d044507..d10cfd3d1b 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml index 69ef4217c6..686dd2cdd3 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { resources: [ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.qml index 481a16c0dd..1241d14342 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.qml index f435c29729..f1099c8721 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.qml index 08b868a304..1f5b365470 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.qml index 2cc82b4c34..ef9ba33b1b 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/qt-669.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/qt-669.qml index af74ae2382..5926e0455b 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/qt-669.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/qt-669.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.qml index 3297c93ed6..2e755a4f30 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/qt-669.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/qt-669.qml index bb09eadf4a..277b9fceaa 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/qt-669.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/qt-669.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/wrap.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/wrap.qml index 53e99cdbfe..abb446423c 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/wrap.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/wrap.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml index 19415e6125..31f24ec048 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml index eee0adb170..1de2f4f7a7 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { resources: [ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.qml index 2f905f8409..208d05f203 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.qml index 4b45fcebb0..b5a48373e3 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.qml index 18ef7095cf..a0351e87fd 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.qml index 24eea504cc..cdc5153eda 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.qml index f55c211b45..a1d998fc46 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.qml index c94a33a6bb..707734ab1d 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/hAlign.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/hAlign.qml index 18ef7095cf..a0351e87fd 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/hAlign.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/hAlign.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml index 7f228a6a7d..5a12e2ea01 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item{ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml index f9fc2bfef6..08df173b42 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item{ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/usingLineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/usingLineEdit.qml index 5420c2a81e..24658660d0 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/usingLineEdit.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/usingLineEdit.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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{ diff --git a/tests/auto/declarative/qmlvisual/rect/GradientRect.qml b/tests/auto/declarative/qmlvisual/rect/GradientRect.qml index 5e242f0b3e..0272f847f7 100644 --- a/tests/auto/declarative/qmlvisual/rect/GradientRect.qml +++ b/tests/auto/declarative/qmlvisual/rect/GradientRect.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qmlvisual/rect/MyRect.qml b/tests/auto/declarative/qmlvisual/rect/MyRect.qml index 4680561f80..7a315e8dac 100644 --- a/tests/auto/declarative/qmlvisual/rect/MyRect.qml +++ b/tests/auto/declarative/qmlvisual/rect/MyRect.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Item { diff --git a/tests/auto/declarative/qmlvisual/rect/data/rect-painting.qml b/tests/auto/declarative/qmlvisual/rect/data/rect-painting.qml index 7dc1365dcd..7c42d1366a 100644 --- a/tests/auto/declarative/qmlvisual/rect/data/rect-painting.qml +++ b/tests/auto/declarative/qmlvisual/rect/data/rect-painting.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/rect/rect-painting.qml b/tests/auto/declarative/qmlvisual/rect/rect-painting.qml index 6d5526c00a..6abb03d7e2 100644 --- a/tests/auto/declarative/qmlvisual/rect/rect-painting.qml +++ b/tests/auto/declarative/qmlvisual/rect/rect-painting.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/repeater/basic1.qml b/tests/auto/declarative/qmlvisual/repeater/basic1.qml index c42412567f..3d31324b76 100644 --- a/tests/auto/declarative/qmlvisual/repeater/basic1.qml +++ b/tests/auto/declarative/qmlvisual/repeater/basic1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/repeater/basic2.qml b/tests/auto/declarative/qmlvisual/repeater/basic2.qml index 54cfe106c4..9cad9eb40f 100644 --- a/tests/auto/declarative/qmlvisual/repeater/basic2.qml +++ b/tests/auto/declarative/qmlvisual/repeater/basic2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/repeater/basic3.qml b/tests/auto/declarative/qmlvisual/repeater/basic3.qml index 4b67b7f967..634641277a 100644 --- a/tests/auto/declarative/qmlvisual/repeater/basic3.qml +++ b/tests/auto/declarative/qmlvisual/repeater/basic3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/repeater/basic4.qml b/tests/auto/declarative/qmlvisual/repeater/basic4.qml index 66c2c83b5b..817d4387fc 100644 --- a/tests/auto/declarative/qmlvisual/repeater/basic4.qml +++ b/tests/auto/declarative/qmlvisual/repeater/basic4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 { diff --git a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic1.qml b/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic1.qml index b38b3039c7..d11a9ddc64 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic1.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic2.qml b/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic2.qml index fd81159385..9b36f60165 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic2.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic3.qml b/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic3.qml index 382f884e83..9752b72400 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic3.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic4.qml b/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic4.qml index 9f4fcd0ed4..8492621d27 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic4.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic1.qml b/tests/auto/declarative/qmlvisual/repeater/data-X11/basic1.qml index a3af095370..f9880f830f 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic1.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data-X11/basic1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic2.qml b/tests/auto/declarative/qmlvisual/repeater/data-X11/basic2.qml index ecd7a0d2ad..cc980e1ec0 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic2.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data-X11/basic2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic3.qml b/tests/auto/declarative/qmlvisual/repeater/data-X11/basic3.qml index 03c108f293..e395dde5ca 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic3.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data-X11/basic3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic4.qml b/tests/auto/declarative/qmlvisual/repeater/data-X11/basic4.qml index e353576da0..b0dc6b80c8 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic4.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data-X11/basic4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/repeater/data/basic1.qml b/tests/auto/declarative/qmlvisual/repeater/data/basic1.qml index 61c3c5dd20..f0950d71af 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data/basic1.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data/basic1.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/repeater/data/basic2.qml b/tests/auto/declarative/qmlvisual/repeater/data/basic2.qml index 748a47c146..fcf3feebce 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data/basic2.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data/basic2.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/repeater/data/basic3.qml b/tests/auto/declarative/qmlvisual/repeater/data/basic3.qml index 94dea47e6d..8447aca3b9 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data/basic3.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data/basic3.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/repeater/data/basic4.qml b/tests/auto/declarative/qmlvisual/repeater/data/basic4.qml index 554f4ecbdb..eeb60fa218 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data/basic4.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data/basic4.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/selftest_noimages/data/selftest_noimages.qml b/tests/auto/declarative/qmlvisual/selftest_noimages/data/selftest_noimages.qml index fdec474bf6..70ee988ca7 100644 --- a/tests/auto/declarative/qmlvisual/selftest_noimages/data/selftest_noimages.qml +++ b/tests/auto/declarative/qmlvisual/selftest_noimages/data/selftest_noimages.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/selftest_noimages/selftest_noimages.qml b/tests/auto/declarative/qmlvisual/selftest_noimages/selftest_noimages.qml index 538fcfe40b..cd4dab1f1d 100644 --- a/tests/auto/declarative/qmlvisual/selftest_noimages/selftest_noimages.qml +++ b/tests/auto/declarative/qmlvisual/selftest_noimages/selftest_noimages.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 Text { property string error: "not pressed" diff --git a/tests/auto/declarative/qmlvisual/webview/autosize/autosize.qml b/tests/auto/declarative/qmlvisual/webview/autosize/autosize.qml index d9b56c78b4..c4a502eb68 100644 --- a/tests/auto/declarative/qmlvisual/webview/autosize/autosize.qml +++ b/tests/auto/declarative/qmlvisual/webview/autosize/autosize.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.qml b/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.qml index 41465909bd..612213877f 100644 --- a/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.qml +++ b/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.qml b/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.qml index 41465909bd..612213877f 100644 --- a/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.qml +++ b/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/javascript/data/evaluateJavaScript.qml b/tests/auto/declarative/qmlvisual/webview/javascript/data/evaluateJavaScript.qml index 6bc512d0a4..bfe40da256 100644 --- a/tests/auto/declarative/qmlvisual/webview/javascript/data/evaluateJavaScript.qml +++ b/tests/auto/declarative/qmlvisual/webview/javascript/data/evaluateJavaScript.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/javascript/data/windowObjects.qml b/tests/auto/declarative/qmlvisual/webview/javascript/data/windowObjects.qml index 9e81afdc9d..07aa13d2d6 100644 --- a/tests/auto/declarative/qmlvisual/webview/javascript/data/windowObjects.qml +++ b/tests/auto/declarative/qmlvisual/webview/javascript/data/windowObjects.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/javascript/evaluateJavaScript.qml b/tests/auto/declarative/qmlvisual/webview/javascript/evaluateJavaScript.qml index 5c66738ae5..4a72d7f27e 100644 --- a/tests/auto/declarative/qmlvisual/webview/javascript/evaluateJavaScript.qml +++ b/tests/auto/declarative/qmlvisual/webview/javascript/evaluateJavaScript.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qmlvisual/webview/javascript/windowObjects.qml b/tests/auto/declarative/qmlvisual/webview/javascript/windowObjects.qml index 082ddf33c0..4006b475f7 100644 --- a/tests/auto/declarative/qmlvisual/webview/javascript/windowObjects.qml +++ b/tests/auto/declarative/qmlvisual/webview/javascript/windowObjects.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qmlvisual/webview/settings/data/fontFamily.qml b/tests/auto/declarative/qmlvisual/webview/settings/data/fontFamily.qml index b4efd1109f..34d11166e5 100644 --- a/tests/auto/declarative/qmlvisual/webview/settings/data/fontFamily.qml +++ b/tests/auto/declarative/qmlvisual/webview/settings/data/fontFamily.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/settings/data/fontSize.qml b/tests/auto/declarative/qmlvisual/webview/settings/data/fontSize.qml index 61f73a7265..efe38755e8 100644 --- a/tests/auto/declarative/qmlvisual/webview/settings/data/fontSize.qml +++ b/tests/auto/declarative/qmlvisual/webview/settings/data/fontSize.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/settings/data/noAutoLoadImages.qml b/tests/auto/declarative/qmlvisual/webview/settings/data/noAutoLoadImages.qml index 59f72af59a..624a16bd20 100644 --- a/tests/auto/declarative/qmlvisual/webview/settings/data/noAutoLoadImages.qml +++ b/tests/auto/declarative/qmlvisual/webview/settings/data/noAutoLoadImages.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/settings/data/setFontFamily.qml b/tests/auto/declarative/qmlvisual/webview/settings/data/setFontFamily.qml index 19fd47f7bf..414d64fbe8 100644 --- a/tests/auto/declarative/qmlvisual/webview/settings/data/setFontFamily.qml +++ b/tests/auto/declarative/qmlvisual/webview/settings/data/setFontFamily.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/settings/fontFamily.qml b/tests/auto/declarative/qmlvisual/webview/settings/fontFamily.qml index 36d41774b5..2f68f24897 100644 --- a/tests/auto/declarative/qmlvisual/webview/settings/fontFamily.qml +++ b/tests/auto/declarative/qmlvisual/webview/settings/fontFamily.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qmlvisual/webview/settings/fontSize.qml b/tests/auto/declarative/qmlvisual/webview/settings/fontSize.qml index c031c87e9c..c017cd98cd 100644 --- a/tests/auto/declarative/qmlvisual/webview/settings/fontSize.qml +++ b/tests/auto/declarative/qmlvisual/webview/settings/fontSize.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qmlvisual/webview/settings/noAutoLoadImages.qml b/tests/auto/declarative/qmlvisual/webview/settings/noAutoLoadImages.qml index 274cea3a40..4f8d3b27a0 100644 --- a/tests/auto/declarative/qmlvisual/webview/settings/noAutoLoadImages.qml +++ b/tests/auto/declarative/qmlvisual/webview/settings/noAutoLoadImages.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qmlvisual/webview/settings/setFontFamily.qml b/tests/auto/declarative/qmlvisual/webview/settings/setFontFamily.qml index 226c799dcb..42220e4c7d 100644 --- a/tests/auto/declarative/qmlvisual/webview/settings/setFontFamily.qml +++ b/tests/auto/declarative/qmlvisual/webview/settings/setFontFamily.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/data/pageWidth.qml b/tests/auto/declarative/qmlvisual/webview/zooming/data/pageWidth.qml index e3ccd033ef..2e60b7ff89 100644 --- a/tests/auto/declarative/qmlvisual/webview/zooming/data/pageWidth.qml +++ b/tests/auto/declarative/qmlvisual/webview/zooming/data/pageWidth.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/data/renderControl.qml b/tests/auto/declarative/qmlvisual/webview/zooming/data/renderControl.qml index 9abf9ca3d9..464e009094 100644 --- a/tests/auto/declarative/qmlvisual/webview/zooming/data/renderControl.qml +++ b/tests/auto/declarative/qmlvisual/webview/zooming/data/renderControl.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/data/resolution.qml b/tests/auto/declarative/qmlvisual/webview/zooming/data/resolution.qml index 8cc7c0ecc5..edf80401fa 100644 --- a/tests/auto/declarative/qmlvisual/webview/zooming/data/resolution.qml +++ b/tests/auto/declarative/qmlvisual/webview/zooming/data/resolution.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/data/zoomTextOnly.qml b/tests/auto/declarative/qmlvisual/webview/zooming/data/zoomTextOnly.qml index 762ad7dbd1..4aab708248 100644 --- a/tests/auto/declarative/qmlvisual/webview/zooming/data/zoomTextOnly.qml +++ b/tests/auto/declarative/qmlvisual/webview/zooming/data/zoomTextOnly.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/data/zooming.qml b/tests/auto/declarative/qmlvisual/webview/zooming/data/zooming.qml index 6700686b42..080d4d05b6 100644 --- a/tests/auto/declarative/qmlvisual/webview/zooming/data/zooming.qml +++ b/tests/auto/declarative/qmlvisual/webview/zooming/data/zooming.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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.VisualTest 4.7 VisualTest { diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/pageWidth.qml b/tests/auto/declarative/qmlvisual/webview/zooming/pageWidth.qml index b104cfc0d4..c9e3c02571 100644 --- a/tests/auto/declarative/qmlvisual/webview/zooming/pageWidth.qml +++ b/tests/auto/declarative/qmlvisual/webview/zooming/pageWidth.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/renderControl.qml b/tests/auto/declarative/qmlvisual/webview/zooming/renderControl.qml index 765a29dbd2..81746060bb 100644 --- a/tests/auto/declarative/qmlvisual/webview/zooming/renderControl.qml +++ b/tests/auto/declarative/qmlvisual/webview/zooming/renderControl.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/resolution.qml b/tests/auto/declarative/qmlvisual/webview/zooming/resolution.qml index aa4da43cfe..b2638f9031 100644 --- a/tests/auto/declarative/qmlvisual/webview/zooming/resolution.qml +++ b/tests/auto/declarative/qmlvisual/webview/zooming/resolution.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/zoomTextOnly.qml b/tests/auto/declarative/qmlvisual/webview/zooming/zoomTextOnly.qml index 943f654655..bf7f9ff93f 100644 --- a/tests/auto/declarative/qmlvisual/webview/zooming/zoomTextOnly.qml +++ b/tests/auto/declarative/qmlvisual/webview/zooming/zoomTextOnly.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import org.webkit 1.0 diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/zooming.qml b/tests/auto/declarative/qmlvisual/webview/zooming/zooming.qml index 8d51e4c10a..5b4dd7af44 100644 --- a/tests/auto/declarative/qmlvisual/webview/zooming/zooming.qml +++ b/tests/auto/declarative/qmlvisual/webview/zooming/zooming.qml @@ -1,44 +1,3 @@ -/**************************************************************************** -** -** 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 import org.webkit 1.0 -- cgit v1.2.1 From 0fb9856548bdf08c0f51536eaf994af189e62f8d Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Mon, 24 May 2010 12:36:39 +1000 Subject: Make compile: include script module for test --- .../declarative/qdeclarativexmllistmodel/qdeclarativexmllistmodel.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativexmllistmodel/qdeclarativexmllistmodel.pro b/tests/auto/declarative/qdeclarativexmllistmodel/qdeclarativexmllistmodel.pro index 1bf1c58ab2..7c006f10ca 100644 --- a/tests/auto/declarative/qdeclarativexmllistmodel/qdeclarativexmllistmodel.pro +++ b/tests/auto/declarative/qdeclarativexmllistmodel/qdeclarativexmllistmodel.pro @@ -1,5 +1,5 @@ load(qttest_p4) -contains(QT_CONFIG,declarative): QT += declarative gui +contains(QT_CONFIG,declarative): QT += declarative script gui contains(QT_CONFIG,xmlpatterns) { QT += xmlpatterns DEFINES += QTEST_XMLPATTERNS -- cgit v1.2.1 From ff27b0e6a7161db17335dc4aa8724cae75cec39c Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Mon, 24 May 2010 13:09:43 +1000 Subject: Check QML files for license headers too. (but not test data - no test data has license headers) --- tests/auto/headers/tst_headers.cpp | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/headers/tst_headers.cpp b/tests/auto/headers/tst_headers.cpp index 12c5843740..0538607498 100644 --- a/tests/auto/headers/tst_headers.cpp +++ b/tests/auto/headers/tst_headers.cpp @@ -64,7 +64,8 @@ private: const QStringList dirFilters, const QRegExp &exclude); static QStringList getHeaders(const QString &path); - static QStringList getSourceFiles(const QString &path); + static QStringList getQmlFiles(const QString &path); + static QStringList getCppFiles(const QString &path); static QStringList getQDocFiles(const QString &path); void allSourceFilesData(); @@ -107,11 +108,16 @@ QStringList tst_Headers::getHeaders(const QString &path) return getFiles(path, QStringList("*.h"), QRegExp("^(?!ui_)")); } -QStringList tst_Headers::getSourceFiles(const QString &path) +QStringList tst_Headers::getCppFiles(const QString &path) { return getFiles(path, QStringList("*.cpp"), QRegExp("^(?!(moc_|qrc_))")); } +QStringList tst_Headers::getQmlFiles(const QString &path) +{ + return getFiles(path, QStringList("*.qml"), QRegExp(".")); +} + QStringList tst_Headers::getQDocFiles(const QString &path) { return getFiles(path, QStringList("*.qdoc"), QRegExp(".")); @@ -153,7 +159,9 @@ void tst_Headers::allSourceFilesData() }; for (int i = 0; i < sizeof(subdirs) / sizeof(subdirs[0]); ++i) { - sourceFiles << getSourceFiles(qtSrcDir + subdirs[i]); + sourceFiles << getCppFiles(qtSrcDir + subdirs[i]); + if (subdirs[i] != QLatin1String("/tests")) + sourceFiles << getQmlFiles(qtSrcDir + subdirs[i]); sourceFiles << getHeaders(qtSrcDir + subdirs[i]); sourceFiles << getQDocFiles(qtSrcDir + subdirs[i]); } -- cgit v1.2.1 From 06fbba775078def95f28139483f8645a00941fe5 Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Mon, 24 May 2010 15:14:41 +1000 Subject: Fix visual tests after rename of the qml executable. --- tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp b/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp index f105692c52..71dc451619 100644 --- a/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp +++ b/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp @@ -81,11 +81,11 @@ QString tst_qmlvisual::viewer() QString qmlruntime; #if defined(Q_WS_MAC) - qmlruntime = QDir(binaries).absoluteFilePath("qml.app/Contents/MacOS/qml"); + qmlruntime = QDir(binaries).absoluteFilePath("QMLViewer.app/Contents/MacOS/QMLViewer"); #elif defined(Q_WS_WIN) || defined(Q_WS_S60) - qmlruntime = QDir(binaries).absoluteFilePath("qml.exe"); + qmlruntime = QDir(binaries).absoluteFilePath("qmlviewer.exe"); #else - qmlruntime = QDir(binaries).absoluteFilePath("qml"); + qmlruntime = QDir(binaries).absoluteFilePath("qmlviewer"); #endif return qmlruntime; -- cgit v1.2.1 From 180e2ce2cca53f2c395e8dc9213d714c396c4555 Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Mon, 24 May 2010 15:40:29 +1000 Subject: Don't crash when assigning a Behavior to a grouped property. Task-number: QTBUG-10799 Reviewed-by: Aaron Kennedy --- .../qdeclarativebehaviors/data/groupedPropertyCrash.qml | 10 ++++++++++ .../qdeclarativebehaviors/tst_qdeclarativebehaviors.cpp | 10 ++++++++++ 2 files changed, 20 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativebehaviors/data/groupedPropertyCrash.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/groupedPropertyCrash.qml b/tests/auto/declarative/qdeclarativebehaviors/data/groupedPropertyCrash.qml new file mode 100644 index 0000000000..c052366717 --- /dev/null +++ b/tests/auto/declarative/qdeclarativebehaviors/data/groupedPropertyCrash.qml @@ -0,0 +1,10 @@ +import Qt 4.7 + +Rectangle { + width: 200 + height: 200 + Text { + Behavior on anchors.verticalCenterOffset { NumberAnimation { duration: 300; } } + text: "Hello World" + } +} diff --git a/tests/auto/declarative/qdeclarativebehaviors/tst_qdeclarativebehaviors.cpp b/tests/auto/declarative/qdeclarativebehaviors/tst_qdeclarativebehaviors.cpp index 1dc4b533d8..45e53042b6 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/tst_qdeclarativebehaviors.cpp +++ b/tests/auto/declarative/qdeclarativebehaviors/tst_qdeclarativebehaviors.cpp @@ -72,6 +72,7 @@ private slots: void disabled(); void dontStart(); void startup(); + void groupedPropertyCrash(); }; void tst_qdeclarativebehaviors::simpleBehavior() @@ -351,6 +352,15 @@ void tst_qdeclarativebehaviors::startup() } } +//QTBUG-10799 +void tst_qdeclarativebehaviors::groupedPropertyCrash() +{ + QDeclarativeEngine engine; + QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/groupedPropertyCrash.qml")); + QDeclarativeRectangle *rect = qobject_cast(c.create()); + QVERIFY(rect); //don't crash +} + QTEST_MAIN(tst_qdeclarativebehaviors) #include "tst_qdeclarativebehaviors.moc" -- cgit v1.2.1 From 82e5ad18fdde7fba4146f28dec897328ec331dff Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Mon, 24 May 2010 16:36:56 +1000 Subject: Be slightly more verbose on assigning undefined in binding. Task-number: QTBUG-10303 --- .../qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp | 10 +++++----- .../declarative/qdeclarativeengine/tst_qdeclarativeengine.cpp | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp index 9a8ad647fe..e75abacc11 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp +++ b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp @@ -564,7 +564,7 @@ void tst_qdeclarativeecmascript::deferredPropertiesErrors() QVERIFY(object->objectProperty() == 0); QVERIFY(object->objectProperty2() == 0); - QString warning = component.url().toString() + ":6: Unable to assign [undefined] to QObject*"; + QString warning = component.url().toString() + ":6: Unable to assign [undefined] to QObject* objectProperty"; QTest::ignoreMessage(QtWarningMsg, qPrintable(warning)); qmlExecuteDeferred(object); @@ -642,8 +642,8 @@ void tst_qdeclarativeecmascript::enums() { QDeclarativeComponent component(&engine, TEST_FILE("enums.2.qml")); - QString warning1 = component.url().toString() + ":5: Unable to assign [undefined] to int"; - QString warning2 = component.url().toString() + ":6: Unable to assign [undefined] to int"; + QString warning1 = component.url().toString() + ":5: Unable to assign [undefined] to int a"; + QString warning2 = component.url().toString() + ":6: Unable to assign [undefined] to int b"; QTest::ignoreMessage(QtWarningMsg, qPrintable(warning1)); QTest::ignoreMessage(QtWarningMsg, qPrintable(warning2)); @@ -754,7 +754,7 @@ void tst_qdeclarativeecmascript::nonExistantAttachedObject() { QDeclarativeComponent component(&engine, TEST_FILE("nonExistantAttachedObject.qml")); - QString warning = component.url().toString() + ":4: Unable to assign [undefined] to QString"; + QString warning = component.url().toString() + ":4: Unable to assign [undefined] to QString stringProperty"; QTest::ignoreMessage(QtWarningMsg, qPrintable(warning)); QObject *object = component.create(); @@ -1001,7 +1001,7 @@ void tst_qdeclarativeecmascript::scriptErrors() 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"; + 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\""; diff --git a/tests/auto/declarative/qdeclarativeengine/tst_qdeclarativeengine.cpp b/tests/auto/declarative/qdeclarativeengine/tst_qdeclarativeengine.cpp index b0db7710b4..0aebea1bdb 100644 --- a/tests/auto/declarative/qdeclarativeengine/tst_qdeclarativeengine.cpp +++ b/tests/auto/declarative/qdeclarativeengine/tst_qdeclarativeengine.cpp @@ -266,7 +266,7 @@ void tst_qdeclarativeengine::outputWarningsToStandardError() delete o; QCOMPARE(warnings.count(), 1); - QCOMPARE(warnings.at(0), QLatin1String(":1: Unable to assign [undefined] to int")); + QCOMPARE(warnings.at(0), QLatin1String(":1: Unable to assign [undefined] to int a")); warnings.clear(); -- cgit v1.2.1 From 1079096a57112d9615812771adba18d2e9297320 Mon Sep 17 00:00:00 2001 From: Alan Alpert Date: Mon, 24 May 2010 20:02:57 +1000 Subject: Added autotest for Component.createObject() without Qt.createComponent() Also augmented the docs for both functions a little. Task-number: QTBUG-10926 --- .../qdeclarativecomponent/data/createObject.qml | 16 +++++++++++++ .../tst_qdeclarativecomponent.cpp | 28 ++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativecomponent/data/createObject.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativecomponent/data/createObject.qml b/tests/auto/declarative/qdeclarativecomponent/data/createObject.qml new file mode 100644 index 0000000000..4ee1e75c89 --- /dev/null +++ b/tests/auto/declarative/qdeclarativecomponent/data/createObject.qml @@ -0,0 +1,16 @@ +import Qt 4.7 + +Item{ + id: root + property QtObject qobject : null + property QtObject declarativeitem : null + property QtObject graphicswidget: null + Component{id: a; QtObject{} } + Component{id: b; Item{} } + Component{id: c; QGraphicsWidget{} } + Component.onCompleted: { + root.qobject = a.createObject(root); + root.declarativeitem = b.createObject(root); + root.graphicswidget = c.createObject(root); + } +} diff --git a/tests/auto/declarative/qdeclarativecomponent/tst_qdeclarativecomponent.cpp b/tests/auto/declarative/qdeclarativecomponent/tst_qdeclarativecomponent.cpp index c9e304cc26..faa1c212cd 100644 --- a/tests/auto/declarative/qdeclarativecomponent/tst_qdeclarativecomponent.cpp +++ b/tests/auto/declarative/qdeclarativecomponent/tst_qdeclarativecomponent.cpp @@ -39,7 +39,9 @@ ** ****************************************************************************/ #include +#include +#include #include #include @@ -51,6 +53,7 @@ public: private slots: void loadEmptyUrl(); + void qmlCreateObject(); private: QDeclarativeEngine engine; @@ -70,6 +73,31 @@ void tst_qdeclarativecomponent::loadEmptyUrl() QCOMPARE(error.description(), QLatin1String("Invalid empty URL")); } +void tst_qdeclarativecomponent::qmlCreateObject() +{ + QDeclarativeEngine engine; + QDeclarativeComponent component(&engine, QUrl::fromLocalFile(SRCDIR "/data/createObject.qml")); + QObject *object = component.create(); + QVERIFY(object != 0); + + QObject *testObject1 = object->property("qobject").value(); + QVERIFY(testObject1); + QVERIFY(testObject1->parent() == object); + + QObject *testObject2 = object->property("declarativeitem").value(); + QVERIFY(testObject2); + QVERIFY(testObject2->parent() == object); + QCOMPARE(testObject2->metaObject()->className(), "QDeclarativeItem"); + + //Note that QGraphicsObjects are not exposed to QML for instantiation, and so can't be used in a component directly + //Also this is actually the extended type QDeclarativeGraphicsWidget, but it still doesn't inherit QDeclarativeItem + QGraphicsObject *testObject3 = qobject_cast(object->property("graphicswidget").value()); + QVERIFY(testObject3); + QVERIFY(testObject3->parent() == object); + QVERIFY(testObject3->parentItem() == qobject_cast(object)); + QCOMPARE(testObject3->metaObject()->className(), "QDeclarativeGraphicsWidget"); +} + QTEST_MAIN(tst_qdeclarativecomponent) #include "tst_qdeclarativecomponent.moc" -- cgit v1.2.1 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(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp index 4befc4c0c8..b07849dc59 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 v1.2.1 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 --- .../auto/declarative/qdeclarativeecmascript/data/eval.qml | 2 +- .../declarative/qdeclarativeecmascript/data/function.qml | 3 ++- .../qdeclarativeecmascript/data/libraryScriptAssert.js | 2 +- .../qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp | 15 ++++++++++----- 4 files changed, 14 insertions(+), 8 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/eval.qml b/tests/auto/declarative/qdeclarativeecmascript/data/eval.qml index bc2df98964..faa510680a 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 b435f5812e..e524189ca7 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 3ffdb339ad..a20fc2855b 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 e75abacc11..217ed11883 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 v1.2.1 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. --- .../auto/declarative/qdeclarativeecmascript/data/eval.qml | 2 +- .../declarative/qdeclarativeecmascript/data/function.qml | 3 +-- .../qdeclarativeecmascript/data/libraryScriptAssert.js | 2 +- .../qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp | 15 +++++---------- 4 files changed, 8 insertions(+), 14 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/eval.qml b/tests/auto/declarative/qdeclarativeecmascript/data/eval.qml index faa510680a..bc2df98964 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 e524189ca7..b435f5812e 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 a20fc2855b..3ffdb339ad 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 217ed11883..e75abacc11 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 v1.2.1 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(-) (limited to 'tests/auto') diff --git a/tests/auto/bic/gen.sh b/tests/auto/bic/gen.sh index 7bcad24000..8005880317 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 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(-) (limited to 'tests/auto') diff --git a/tests/auto/qabstractprintdialog/tst_qabstractprintdialog.cpp b/tests/auto/qabstractprintdialog/tst_qabstractprintdialog.cpp index 15f427ca2f..0700e9e652 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 b1ff425e3f..e52e1b5290 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 v1.2.1 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 --- .../tst_qdeclarativetextedit.cpp | 85 +++++++++++++++++---- .../tst_qdeclarativetextinput.cpp | 86 ++++++++++++++++++---- 2 files changed, 140 insertions(+), 31 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp index b07849dc59..2b6f2aa1c3 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 ac80edb464..b3e16c49c7 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 v1.2.1 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". --- tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext.qml | 2 +- tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext.qml | 2 +- tests/auto/declarative/qmlvisual/qdeclarativetextedit/wrap.qml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext.qml index d948e4a494..73dd4d7844 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 d10cfd3d1b..b41b93a31a 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 abb446423c..a1dc5bf17f 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 v1.2.1 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 --- .../auto/declarative/qdeclarativeanchors/data/hvCenter.qml | 11 +++++++++++ .../qdeclarativeanchors/tst_qdeclarativeanchors.cpp | 14 ++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativeanchors/data/hvCenter.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeanchors/data/hvCenter.qml b/tests/auto/declarative/qdeclarativeanchors/data/hvCenter.qml new file mode 100644 index 0000000000..7cd4f264f6 --- /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 e169fa2116..22f7966cf7 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 v1.2.1 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 --- .../qdeclarativetextedit/tst_qdeclarativetextedit.cpp | 9 +++++++++ .../qdeclarativetextinput/tst_qdeclarativetextinput.cpp | 9 +++++++++ 2 files changed, 18 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp index 2b6f2aa1c3..0df28d02e8 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 b3e16c49c7..155223d9a7 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 v1.2.1 From dc9602f6bb805751beb3b7963398679d12753e53 Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Wed, 26 May 2010 14:47:11 +1000 Subject: Allow js files with '.pragma library' to be used from WorkerScript --- .../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 ++++++++++++++++++---- 7 files changed, 76 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 (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeworkerscript/data/BaseWorker.qml b/tests/auto/declarative/qdeclarativeworkerscript/data/BaseWorker.qml new file mode 100644 index 0000000000..d275ca8511 --- /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 09199de9be..90aae263a1 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 0000000000..14f6f178ae --- /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 0000000000..cb3b6d3398 --- /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 5c7a5ff26e..1a20098ef7 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 0000000000..3b720ef473 --- /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 a1dae24770..7a4315a050 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 v1.2.1 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 --- tests/auto/qxmlstream/tst_qxmlstream.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qxmlstream/tst_qxmlstream.cpp b/tests/auto/qxmlstream/tst_qxmlstream.cpp index 3c5358c36c..f93d4fc6d1 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 v1.2.1 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(-) (limited to 'tests/auto') diff --git a/tests/auto/qxmlstream/qxmlstream.pro b/tests/auto/qxmlstream/qxmlstream.pro index ac03d421d1..f82a7b3dba 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 f93d4fc6d1..7d5e3b7f8c 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 v1.2.1 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(-) (limited to 'tests/auto') diff --git a/tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp b/tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp index dac631b632..1f65ae75ff 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 v1.2.1 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(-) (limited to 'tests/auto') diff --git a/tests/auto/qaccessibility/tst_qaccessibility.cpp b/tests/auto/qaccessibility/tst_qaccessibility.cpp index e5a332a4bd..cea259c84a 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 v1.2.1 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 --- .../tst_qsortfilterproxymodel.cpp | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qsortfilterproxymodel/tst_qsortfilterproxymodel.cpp b/tests/auto/qsortfilterproxymodel/tst_qsortfilterproxymodel.cpp index 992c95e4c0..53fefeedc8 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 v1.2.1 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 --- tests/auto/qgraphicsscene/tst_qgraphicsscene.cpp | 43 ++++++++++++++++++++++++ 1 file changed, 43 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qgraphicsscene/tst_qgraphicsscene.cpp b/tests/auto/qgraphicsscene/tst_qgraphicsscene.cpp index a15522263c..67a41ca81a 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 v1.2.1 From 724ed689cdec252ffb33b496fceb6ce4f81125dd Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Wed, 26 May 2010 14:05:58 +0200 Subject: escape backslashes this makes windows-style path specs *ugly*. that's intentional. :-P --- .../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 +- 22 files changed, 44 insertions(+), 44 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/parserstress/parserstress.pro b/tests/auto/declarative/parserstress/parserstress.pro index a95a8556d4..3a675e410c 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 4698b2b795..d4dcda8804 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 4092fc8e23..c528c93cba 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 e33c04d43b..1b30beb302 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 9ef557d3ba..d32ed4c794 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 5a66883fdf..36929b9399 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 faaa927450..70c93ce2fb 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 93599f482e..20385142c1 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 31bb76948d..401c9ebfc6 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 8da2942048..2171c3ed91 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 4654f4da1a..b441569e5a 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 7bc9f59521..d57f2d1b02 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 cfdc89be5d..687aae2b56 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 43d73ae252..e015f95ec1 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 5e089e403f..ad66ee863d 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 30e5901d7c..a8ec4785b3 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 7bf3852414..b9ece3849c 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 0200f3ef08..1d6993ab52 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 e1afd22ecb..d555067f88 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 cd5e6e7824..62c0c875a2 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 bcffb64322..5c069c598d 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 61e275dec8..f3124a31e0 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 } -- cgit v1.2.1 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. --- tests/auto/qvarlengtharray/tst_qvarlengtharray.cpp | 297 +++++++++++++++++++++ 1 file changed, 297 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qvarlengtharray/tst_qvarlengtharray.cpp b/tests/auto/qvarlengtharray/tst_qvarlengtharray.cpp index 1c43069eca..0b7dc131cd 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 v1.2.1 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(-) (limited to 'tests/auto') diff --git a/tests/auto/qvarlengtharray/tst_qvarlengtharray.cpp b/tests/auto/qvarlengtharray/tst_qvarlengtharray.cpp index 0b7dc131cd..39805e1c04 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 v1.2.1 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 --- tests/auto/declarative/qdeclarativepathview/data/pathview0.qml | 6 ++++-- .../declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp | 6 ++++++ 2 files changed, 10 insertions(+), 2 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativepathview/data/pathview0.qml b/tests/auto/declarative/qdeclarativepathview/data/pathview0.qml index a3afd38dc9..895620524d 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 f32a6c7796..dffc7ac35c 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 v1.2.1 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 --- tests/auto/qscriptcontext/tst_qscriptcontext.cpp | 45 ++++++++++++++++++++++++ 1 file changed, 45 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qscriptcontext/tst_qscriptcontext.cpp b/tests/auto/qscriptcontext/tst_qscriptcontext.cpp index 100e195f42..617c183206 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 v1.2.1 From a38cb0dbec7238903c62e8a08ecd6faecb58e9b2 Mon Sep 17 00:00:00 2001 From: Liang Qi 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(+) (limited to 'tests/auto') diff --git a/tests/auto/qtextcodec/tst_qtextcodec.cpp b/tests/auto/qtextcodec/tst_qtextcodec.cpp index aa97e8706a..149efae7f5 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 v1.2.1 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 --- tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp | 29 ++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp b/tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp index 300afc3ffe..5547b02820 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 v1.2.1 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 --- .../qdeclarativetextedit/tst_qdeclarativetextedit.cpp | 13 +++++++++++-- .../qdeclarativetextinput/tst_qdeclarativetextinput.cpp | 13 +++++++++++-- 2 files changed, 22 insertions(+), 4 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp index 0df28d02e8..d3e3c3aed2 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 155223d9a7..c01cfa59f8 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 v1.2.1 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(+) (limited to 'tests/auto') diff --git a/tests/auto/qmetaobject/tst_qmetaobject.cpp b/tests/auto/qmetaobject/tst_qmetaobject.cpp index c0b1303f00..b6d4558465 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 v1.2.1 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(-) (limited to 'tests/auto') diff --git a/tests/auto/qtextcodec/tst_qtextcodec.cpp b/tests/auto/qtextcodec/tst_qtextcodec.cpp index c91201e43a..0946c93ed5 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 v1.2.1 From 9228b527f2fa95aad7f34cbc44905fb8b371bbf7 Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Fri, 28 May 2010 15:43:28 +0200 Subject: test QMultiMap::operator+= and QMultiHash::operator+= --- tests/auto/qhash/tst_qhash.cpp | 20 ++++++++++++++++++++ tests/auto/qmap/tst_qmap.cpp | 20 ++++++++++++++++++++ 2 files changed, 40 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qhash/tst_qhash.cpp b/tests/auto/qhash/tst_qhash.cpp index 59576d9470..3a7b54acce 100644 --- a/tests/auto/qhash/tst_qhash.cpp +++ b/tests/auto/qhash/tst_qhash.cpp @@ -1154,6 +1154,26 @@ void tst_QHash::qmultihash_specific() QVERIFY(i.key() == 9); QVERIFY(i.value() == 98); } + + { + QMultiHash map1; + map1.insert(42, 1); + map1.insert(10, 2); + map1.insert(48, 3); + QMultiHash map2; + map2.insert(8, 4); + map2.insert(42, 5); + map2.insert(95, 12); + + map1+=map2; + map2.insert(42, 1); + map2.insert(10, 2); + map2.insert(48, 3); + QCOMPARE(map1.count(), map2.count()); + QVERIFY(map1.remove(42,5)); + QVERIFY(map2.remove(42,5)); + QVERIFY(map1 == map2); + } } template diff --git a/tests/auto/qmap/tst_qmap.cpp b/tests/auto/qmap/tst_qmap.cpp index d3ed76dcd4..a1b8de72fd 100644 --- a/tests/auto/qmap/tst_qmap.cpp +++ b/tests/auto/qmap/tst_qmap.cpp @@ -837,6 +837,26 @@ void tst_QMap::qmultimap_specific() QVERIFY(i.key() == 9); QVERIFY(i.value() == 98); } + + { + QMultiMap map1; + map1.insert(42, 1); + map1.insert(10, 2); + map1.insert(48, 3); + QMultiMap map2; + map2.insert(8, 4); + map2.insert(42, 5); + map2.insert(95, 12); + + map1+=map2; + map2.insert(42, 1); + map2.insert(10, 2); + map2.insert(48, 3); + QCOMPARE(map1.count(), map2.count()); + QVERIFY(map1.remove(42,5)); + QVERIFY(map2.remove(42,5)); + QVERIFY(map1 == map2); + } } QTEST_APPLESS_MAIN(tst_QMap) -- cgit v1.2.1 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 --- .../qdeclarativetextedit/MultilineEdit.qml | 74 ++++++++++++++++++++++ .../qdeclarativetextedit/usingMultilineEdit.qml | 13 ++++ .../qmlvisual/qdeclarativetextinput/LineEdit.qml | 4 +- 3 files changed, 89 insertions(+), 2 deletions(-) create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/MultilineEdit.qml create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/MultilineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/MultilineEdit.qml new file mode 100644 index 0000000000..0273282f14 --- /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 0000000000..47b48d8601 --- /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 31f24ec048..cc0ad3cb1b 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 v1.2.1 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 --- .../tst_qdeclarativetextedit.cpp | 39 +++++---------- .../tst_qdeclarativetextinput.cpp | 55 +++++++--------------- .../qdeclarativetextedit/MultilineEdit.qml | 3 +- .../qmlvisual/qdeclarativetextinput/LineEdit.qml | 3 +- 4 files changed, 31 insertions(+), 69 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp index d3e3c3aed2..47c5b6377e 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 c01cfa59f8..54bb9c1e03 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 0273282f14..53538cb91b 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 cc0ad3cb1b..69f57c68f3 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 v1.2.1 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(-) (limited to 'tests/auto') diff --git a/tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp b/tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp index dac631b632..1f65ae75ff 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 v1.2.1 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 --- .../auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp | 26 ++++++++++++++++------ 1 file changed, 19 insertions(+), 7 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp b/tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp index 1f65ae75ff..dc071ab564 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 v1.2.1 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. --- .../auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp | 26 ++++++---------------- 1 file changed, 7 insertions(+), 19 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp b/tests/auto/qtipc/qsharedmemory/tst_qsharedmemory.cpp index dc071ab564..1f65ae75ff 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 v1.2.1 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 --- tests/auto/qtextlayout/tst_qtextlayout.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qtextlayout/tst_qtextlayout.cpp b/tests/auto/qtextlayout/tst_qtextlayout.cpp index caf9bd3f00..b67dc30883 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 v1.2.1 From 50958288e4493920f18ef9f9b062e01bd4782239 Mon Sep 17 00:00:00 2001 From: Peter Hartmann Date: Mon, 31 May 2010 13:08:33 +0200 Subject: QNetworkCookie: do not accept cookies with non-alNum domain do not accept a cookie whose domain attribute cannot be converted to an ACE domain. Reviewed-by: Thiago Macieira Task-number: QTBUG-11029 --- tests/auto/qnetworkcookie/tst_qnetworkcookie.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qnetworkcookie/tst_qnetworkcookie.cpp b/tests/auto/qnetworkcookie/tst_qnetworkcookie.cpp index 5854ae114a..72d8eda570 100644 --- a/tests/auto/qnetworkcookie/tst_qnetworkcookie.cpp +++ b/tests/auto/qnetworkcookie/tst_qnetworkcookie.cpp @@ -693,6 +693,12 @@ void tst_QNetworkCookie::parseMultipleCookies_data() cookieA.setPath("/foo"); list = QList() << cookieA << cookieB; QTest::newRow("real-3") << "a=b; expires=Mar 10 07:00:00 2009 GMT, Tue; path=/foo\nc=d; expires=Fri Mar 20 07:00:00 2009 GMT" << list; + + // do not accept cookies with non-alphanumeric characters in domain field (QTBUG-11029) + cookie = QNetworkCookie("NonAlphNumDomName", "NonAlphNumDomValue"); + cookie.setDomain("!@#$%^&*();:."); // the ';' is actually problematic, because it is a separator + list = QList(); + QTest::newRow("domain-non-alpha-numeric") << "NonAlphNumDomName=NonAlphNumDomValue; domain=!@#$%^&*()" << list; } void tst_QNetworkCookie::parseMultipleCookies() -- cgit v1.2.1 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 --- tests/auto/qtextlayout/tst_qtextlayout.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qtextlayout/tst_qtextlayout.cpp b/tests/auto/qtextlayout/tst_qtextlayout.cpp index b67dc30883..1a5f493a01 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 v1.2.1 From 57a1049b86044ed28909b297412724b066453790 Mon Sep 17 00:00:00 2001 From: Eskil Abrahamsen Blomfeldt Date: Mon, 31 May 2010 13:57:46 +0200 Subject: Removed bogus autotest QFontMetrics::bearingIncludedInBoundingRect The assumption that italic text is wider than unstyled text is wrong, and will fail for some fonts. The only way to test this would be to create a custom font for it, but the test is not useful enough to warrant this, so it's been removed. --- tests/auto/qfontmetrics/tst_qfontmetrics.cpp | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qfontmetrics/tst_qfontmetrics.cpp b/tests/auto/qfontmetrics/tst_qfontmetrics.cpp index 46f2b155b8..6c91c7bf2b 100644 --- a/tests/auto/qfontmetrics/tst_qfontmetrics.cpp +++ b/tests/auto/qfontmetrics/tst_qfontmetrics.cpp @@ -73,7 +73,6 @@ private slots: void averageCharWidth(); void elidedMultiLength(); void elidedMultiLengthF(); - void bearingIncludedInBoundingRect(); }; tst_QFontMetrics::tst_QFontMetrics() @@ -251,16 +250,5 @@ void tst_QFontMetrics::elidedMultiLengthF() elidedMultiLength_helper(); } -void tst_QFontMetrics::bearingIncludedInBoundingRect() -{ - QFont font; - font.setItalic(true); - QRect brectItalic = QFontMetrics(font).boundingRect("ITALIC"); - font.setItalic(false); - QRect brectNormal = QFontMetrics(font).boundingRect("ITALIC"); - - QVERIFY(brectItalic.width() > brectNormal.width()); -} - QTEST_MAIN(tst_QFontMetrics) #include "tst_qfontmetrics.moc" -- cgit v1.2.1 From 032fb3d54eaaa1fa36ec45b37f5f7356b1137830 Mon Sep 17 00:00:00 2001 From: Jocelyn Turcotte Date: Tue, 25 May 2010 20:19:14 +0200 Subject: Add the Qt::TextBypassShaping flag. This allows quick layouting especially with Windows fonts which contain heavy OpenType logic. On regular latin text the visual compromize is the loss of kerning, justification, capitalization, word spacing and letter spacing support. Reviewed-by: Simon Hausmann Reviewed-by: Eskil --- tests/auto/qfontmetrics/tst_qfontmetrics.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qfontmetrics/tst_qfontmetrics.cpp b/tests/auto/qfontmetrics/tst_qfontmetrics.cpp index 5d73764dbb..81e064e84e 100644 --- a/tests/auto/qfontmetrics/tst_qfontmetrics.cpp +++ b/tests/auto/qfontmetrics/tst_qfontmetrics.cpp @@ -71,6 +71,7 @@ private slots: void elidedText(); void veryNarrowElidedText(); void averageCharWidth(); + void bypassShaping(); void elidedMultiLength(); void elidedMultiLengthF(); void bearingIncludedInBoundingRect(); @@ -219,6 +220,20 @@ void tst_QFontMetrics::averageCharWidth() QVERIFY(fmf.averageCharWidth() != 0); } +void tst_QFontMetrics::bypassShaping() +{ + QFont f; + QFontMetrics fm(f); + QString text = " A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z"; + int textWidth = fm.width(text, -1, Qt::TextBypassShaping); + QVERIFY(textWidth != 0); + int charsWidth = 0; + for (int i = 0; i < text.size(); ++i) + charsWidth += fm.width(text[i]); + // This assertion is needed in QtWebKit's WebCore::Font::offsetForPositionForSimpleText + QCOMPARE(textWidth, charsWidth); +} + template void elidedMultiLength_helper() { QString text1 = "Long Text 1\x9cShorter\x9csmall"; -- cgit v1.2.1 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(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp index 54bb9c1e03..c943c89ae2 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 v1.2.1 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 --- .../tst_qdeclarativelistview.cpp | 48 ++++++++++++++++++++++ 1 file changed, 48 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp b/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp index 203760e469..2aef9bb02d 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 v1.2.1 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 (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativetextinput/data/positionAt.qml b/tests/auto/declarative/qdeclarativetextinput/data/positionAt.qml new file mode 100644 index 0000000000..2800351caa --- /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 v1.2.1 From 8d6ac1a041eb26f635914b1c356f47e50cdfdc98 Mon Sep 17 00:00:00 2001 From: Roberto Raggi Date: Tue, 1 Jun 2010 12:38:18 +0200 Subject: Defines whether the cursor should keep its current position. Defines whether the cursor should keep its position when text gets inserted at the current position of the cursor. For example, we don't want QTextCursor to extend the selection when inserting characters at the end of an extra selection representing a user-type but we do want the selection to grow when rewriting a region of code (e.g. when using our QuickFix engine). Task-number: QTBUG-11075 Reviewed-by: mae --- tests/auto/qtextcursor/tst_qtextcursor.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qtextcursor/tst_qtextcursor.cpp b/tests/auto/qtextcursor/tst_qtextcursor.cpp index d44ce72020..99babac8a0 100644 --- a/tests/auto/qtextcursor/tst_qtextcursor.cpp +++ b/tests/auto/qtextcursor/tst_qtextcursor.cpp @@ -226,9 +226,9 @@ void tst_QTextCursor::navigation1() cursor.movePosition(QTextCursor::End); cursor.insertBlock(); { - int oldPos = cursor.position(); - cursor.movePosition(QTextCursor::End); - QVERIFY(cursor.position() == oldPos); + int oldPos = cursor.position(); + cursor.movePosition(QTextCursor::End); + QVERIFY(cursor.position() == oldPos); } QVERIFY(cursor.atBlockStart()); QVERIFY(cursor.position() == 9); @@ -1699,8 +1699,10 @@ void tst_QTextCursor::adjustCursorsOnInsert() QCOMPARE(selection.position(), posAfter+1); doc->undo(); + selection.setKeepPositionOnInsert(true); cursor.setPosition(posAfter); cursor.insertText(QLatin1String("x")); + selection.setKeepPositionOnInsert(false); QCOMPARE(selection.anchor(), posBefore); QCOMPARE(selection.position(), posAfter); doc->undo(); -- cgit v1.2.1 From ff57057bc6844eb3c10ab0eadff292a10ef493f8 Mon Sep 17 00:00:00 2001 From: Eskil Abrahamsen Blomfeldt Date: Tue, 1 Jun 2010 13:31:18 +0200 Subject: Speed up QStaticText with affine transformation on GL2 engine Since the OpenGL2 paint engine supports transforming the prerendered glyphs rather than rasterizing the glyphs with the transformation applied, we don't need to recalculate the QStaticText layout whenever the transformation changes. This means that we can do fast animated transforms for QStaticText on this paint engine. A quick test yields something like 100x speed-up on Windows. This also give visually better results, as we previously would animate the hinting of the glyphs, thus causing jittering. The autotest has been updated to reflect the fact that drawText() and drawStaticText() now go through identical paths on GL, also when transforms are set on the painter. However, the scale was changed in one test, because it was so great that drawText() would fall back to paths. With QStaticText the idea is speed, so you'll get a poor, but fast result instead, which is better than tricking people. Reviewed-by: Samuel --- tests/auto/qstatictext/tst_qstatictext.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qstatictext/tst_qstatictext.cpp b/tests/auto/qstatictext/tst_qstatictext.cpp index c7801acd1c..1d166f49e5 100644 --- a/tests/auto/qstatictext/tst_qstatictext.cpp +++ b/tests/auto/qstatictext/tst_qstatictext.cpp @@ -324,8 +324,7 @@ bool tst_QStaticText::supportsTransformations() const QPaintEngine::Type type = engine->type(); - if (type == QPaintEngine::OpenGL2 - || type == QPaintEngine::OpenGL + if (type == QPaintEngine::OpenGL #if !defined Q_WS_WIN || type == QPaintEngine::Raster #endif @@ -471,7 +470,7 @@ void tst_QStaticText::transformationChanged() p.drawText(QRectF(0, 0, 1000, 1000), 0, "Lorem ipsum dolor sit amet, consectetur adipiscing elit."); - p.scale(7.0, 5.0); + p.scale(2.0, 2.5); p.drawText(QRectF(0, 0, 1000, 1000), 0, "Lorem ipsum dolor sit amet, consectetur adipiscing elit."); } @@ -487,7 +486,7 @@ void tst_QStaticText::transformationChanged() p.drawStaticText(QPointF(0, 0), text); - p.scale(7.0, 5.0); + p.scale(2.0, 2.5); p.drawStaticText(QPointF(0, 0), text); } -- cgit v1.2.1 From e891abddfe42699a8c2c9a583b91269237e17008 Mon Sep 17 00:00:00 2001 From: Joona Petrell Date: Tue, 1 Jun 2010 14:50:59 +1000 Subject: Take into account platform differences in input panel support Task-number: Reviewed-by: Warwick Allison --- .../tst_qdeclarativetextedit.cpp | 83 ++++++++++++++++++---- .../tst_qdeclarativetextinput.cpp | 83 ++++++++++++++++++---- 2 files changed, 136 insertions(+), 30 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp index 47c5b6377e..fbab30e7cf 100644 --- a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp +++ b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp @@ -50,6 +50,7 @@ #include #include #include +#include #include #include #include @@ -86,7 +87,8 @@ private slots: void delegateLoading(); void navigation(); void readOnly(); - void sendRequestSoftwareInputPanelEvent(); + void openInputPanelOnClick(); + void openInputPanelOnFocus(); void geometrySignals(); private: void simulateKey(QDeclarativeView *, int key); @@ -817,14 +819,14 @@ public: bool closeInputPanelReceived; }; -void tst_qdeclarativetextedit::sendRequestSoftwareInputPanelEvent() +void tst_qdeclarativetextedit::openInputPanelOnClick() { QGraphicsScene scene; QGraphicsView view(&scene); MyInputContext ic; view.setInputContext(&ic); QDeclarativeTextEdit edit; - QSignalSpy inputPanelonFocusSpy(&edit, SIGNAL(showInputPanelOnFocusChanged(bool))); + QSignalSpy focusOnPressSpy(&edit, SIGNAL(focusOnPressChanged(bool))); edit.setText("Hello world"); edit.setPos(0, 0); scene.addItem(&edit); @@ -834,7 +836,58 @@ void tst_qdeclarativetextedit::sendRequestSoftwareInputPanelEvent() QTest::qWaitForWindowShown(&view); QTRY_COMPARE(QApplication::activeWindow(), static_cast(&view)); - QVERIFY(edit.showInputPanelOnFocus()); + QDeclarativeItemPrivate* pri = QDeclarativeItemPrivate::get(&edit); + QDeclarativeTextEditPrivate *editPrivate = static_cast(pri); + + // input panel on click + editPrivate->showInputPanelOnFocus = false; + + QStyle::RequestSoftwareInputPanel behavior = QStyle::RequestSoftwareInputPanel( + view.style()->styleHint(QStyle::SH_RequestSoftwareInputPanel)); + QTest::mouseClick(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(edit.scenePos())); + QApplication::processEvents(); + if (behavior == QStyle::RSIP_OnMouseClickAndAlreadyFocused) { + QCOMPARE(ic.openInputPanelReceived, false); + QTest::mouseClick(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(edit.scenePos())); + QApplication::processEvents(); + QCOMPARE(ic.openInputPanelReceived, true); + } else if (behavior == QStyle::RSIP_OnMouseClick) { + QCOMPARE(ic.openInputPanelReceived, true); + } + ic.openInputPanelReceived = false; + + // focus should not cause input panels to open or close + edit.setFocus(false); + edit.setFocus(true); + edit.setFocus(false); + edit.setFocus(true); + edit.setFocus(false); + QCOMPARE(ic.openInputPanelReceived, false); + QCOMPARE(ic.closeInputPanelReceived, false); +} + +void tst_qdeclarativetextedit::openInputPanelOnFocus() +{ + QGraphicsScene scene; + QGraphicsView view(&scene); + MyInputContext ic; + view.setInputContext(&ic); + QDeclarativeTextEdit edit; + QSignalSpy focusOnPressSpy(&edit, SIGNAL(focusOnPressChanged(bool))); + edit.setText("Hello world"); + edit.setPos(0, 0); + scene.addItem(&edit); + view.show(); + qApp->setAutoSipEnabled(true); + QApplication::setActiveWindow(&view); + QTest::qWaitForWindowShown(&view); + QTRY_COMPARE(QApplication::activeWindow(), static_cast(&view)); + + QDeclarativeItemPrivate* pri = QDeclarativeItemPrivate::get(&edit); + QDeclarativeTextEditPrivate *editPrivate = static_cast(pri); + editPrivate->showInputPanelOnFocus = true; + + QVERIFY(edit.focusOnPress()); QCOMPARE(ic.openInputPanelReceived, false); QCOMPARE(ic.closeInputPanelReceived, false); @@ -867,9 +920,9 @@ void tst_qdeclarativetextedit::sendRequestSoftwareInputPanelEvent() QCOMPARE(ic.closeInputPanelReceived, true); ic.closeInputPanelReceived = false; - // no input panel events if showInputPanelOnFocus is false - edit.setShowInputPanelOnFocus(false); - QCOMPARE(inputPanelonFocusSpy.count(),1); + // no automatic input panel events if focusOnPress is false + edit.setFocusOnPress(false); + QCOMPARE(focusOnPressSpy.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); @@ -877,8 +930,8 @@ void tst_qdeclarativetextedit::sendRequestSoftwareInputPanelEvent() QCOMPARE(ic.openInputPanelReceived, false); QCOMPARE(ic.closeInputPanelReceived, false); - edit.setShowInputPanelOnFocus(false); - QCOMPARE(inputPanelonFocusSpy.count(),1); + edit.setFocusOnPress(false); + QCOMPARE(focusOnPressSpy.count(),1); // one show input panel event when openSoftwareInputPanel is called edit.openSoftwareInputPanel(); @@ -892,14 +945,17 @@ void tst_qdeclarativetextedit::sendRequestSoftwareInputPanelEvent() QCOMPARE(ic.closeInputPanelReceived, true); ic.openInputPanelReceived = false; - // set showInputPanelOnFocus back to true - edit.setShowInputPanelOnFocus(true); - QCOMPARE(inputPanelonFocusSpy.count(),2); + // set focusOnPress back to true + edit.setFocusOnPress(true); + QCOMPARE(focusOnPressSpy.count(),2); edit.setFocus(false); QCOMPARE(ic.openInputPanelReceived, false); QCOMPARE(ic.closeInputPanelReceived, true); ic.closeInputPanelReceived = false; + edit.setFocusOnPress(true); + QCOMPARE(focusOnPressSpy.count(),2); + // active window focus reason should not cause input panel to open QGraphicsObject * editObject = qobject_cast(&edit); editObject->setFocus(Qt::ActiveWindowFocusReason); @@ -910,9 +966,6 @@ void tst_qdeclarativetextedit::sendRequestSoftwareInputPanelEvent() edit.setFocus(true); QCOMPARE(ic.openInputPanelReceived, false); QCOMPARE(ic.closeInputPanelReceived, false); - - 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 c943c89ae2..3cb4da0052 100644 --- a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp +++ b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp @@ -45,6 +45,7 @@ #include #include #include +#include #include #include #include @@ -74,7 +75,8 @@ private slots: void navigation(); void readOnly(); - void sendRequestSoftwareInputPanelEvent(); + void openInputPanelOnClick(); + void openInputPanelOnFocus(); void setHAlignClearCache(); void focusOutClearSelection(); @@ -763,14 +765,14 @@ public: bool closeInputPanelReceived; }; -void tst_qdeclarativetextinput::sendRequestSoftwareInputPanelEvent() +void tst_qdeclarativetextinput::openInputPanelOnClick() { QGraphicsScene scene; QGraphicsView view(&scene); MyInputContext ic; view.setInputContext(&ic); QDeclarativeTextInput input; - QSignalSpy inputPanelonFocusSpy(&input, SIGNAL(showInputPanelOnFocusChanged(bool))); + QSignalSpy focusOnPressSpy(&input, SIGNAL(focusOnPressChanged(bool))); input.setText("Hello world"); input.setPos(0, 0); scene.addItem(&input); @@ -780,7 +782,58 @@ void tst_qdeclarativetextinput::sendRequestSoftwareInputPanelEvent() QTest::qWaitForWindowShown(&view); QTRY_COMPARE(QApplication::activeWindow(), static_cast(&view)); - QVERIFY(input.showInputPanelOnFocus()); + QDeclarativeItemPrivate* pri = QDeclarativeItemPrivate::get(&input); + QDeclarativeTextInputPrivate *inputPrivate = static_cast(pri); + + // input panel on click + inputPrivate->showInputPanelOnFocus = false; + + QStyle::RequestSoftwareInputPanel behavior = QStyle::RequestSoftwareInputPanel( + view.style()->styleHint(QStyle::SH_RequestSoftwareInputPanel)); + QTest::mouseClick(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(input.scenePos())); + QApplication::processEvents(); + if (behavior == QStyle::RSIP_OnMouseClickAndAlreadyFocused) { + QCOMPARE(ic.openInputPanelReceived, false); + QTest::mouseClick(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(input.scenePos())); + QApplication::processEvents(); + QCOMPARE(ic.openInputPanelReceived, true); + } else if (behavior == QStyle::RSIP_OnMouseClick) { + QCOMPARE(ic.openInputPanelReceived, true); + } + ic.openInputPanelReceived = false; + + // focus should not cause input panels to open or close + input.setFocus(false); + input.setFocus(true); + input.setFocus(false); + input.setFocus(true); + input.setFocus(false); + QCOMPARE(ic.openInputPanelReceived, false); + QCOMPARE(ic.closeInputPanelReceived, false); +} + +void tst_qdeclarativetextinput::openInputPanelOnFocus() +{ + QGraphicsScene scene; + QGraphicsView view(&scene); + MyInputContext ic; + view.setInputContext(&ic); + QDeclarativeTextInput input; + QSignalSpy focusOnPressSpy(&input, SIGNAL(focusOnPressChanged(bool))); + input.setText("Hello world"); + input.setPos(0, 0); + scene.addItem(&input); + view.show(); + qApp->setAutoSipEnabled(true); + QApplication::setActiveWindow(&view); + QTest::qWaitForWindowShown(&view); + QTRY_COMPARE(QApplication::activeWindow(), static_cast(&view)); + + QDeclarativeItemPrivate* pri = QDeclarativeItemPrivate::get(&input); + QDeclarativeTextInputPrivate *inputPrivate = static_cast(pri); + inputPrivate->showInputPanelOnFocus = true; + + QVERIFY(input.focusOnPress()); QCOMPARE(ic.openInputPanelReceived, false); QCOMPARE(ic.closeInputPanelReceived, false); @@ -813,9 +866,9 @@ void tst_qdeclarativetextinput::sendRequestSoftwareInputPanelEvent() QCOMPARE(ic.closeInputPanelReceived, true); ic.closeInputPanelReceived = false; - // no input panel events if showInputPanelOnFocus is false - input.setShowInputPanelOnFocus(false); - QCOMPARE(inputPanelonFocusSpy.count(),1); + // no automatic input panel events if focusOnPress is false + input.setFocusOnPress(false); + QCOMPARE(focusOnPressSpy.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); @@ -823,8 +876,8 @@ void tst_qdeclarativetextinput::sendRequestSoftwareInputPanelEvent() QCOMPARE(ic.openInputPanelReceived, false); QCOMPARE(ic.closeInputPanelReceived, false); - input.setShowInputPanelOnFocus(false); - QCOMPARE(inputPanelonFocusSpy.count(),1); + input.setFocusOnPress(false); + QCOMPARE(focusOnPressSpy.count(),1); // one show input panel event when openSoftwareInputPanel is called input.openSoftwareInputPanel(); @@ -838,14 +891,17 @@ void tst_qdeclarativetextinput::sendRequestSoftwareInputPanelEvent() QCOMPARE(ic.closeInputPanelReceived, true); ic.openInputPanelReceived = false; - // set showInputPanelOnFocus back to true - input.setShowInputPanelOnFocus(true); - QCOMPARE(inputPanelonFocusSpy.count(),2); + // set focusOnPress back to true + input.setFocusOnPress(true); + QCOMPARE(focusOnPressSpy.count(),2); input.setFocus(false); QCOMPARE(ic.openInputPanelReceived, false); QCOMPARE(ic.closeInputPanelReceived, true); ic.closeInputPanelReceived = false; + input.setFocusOnPress(true); + QCOMPARE(focusOnPressSpy.count(),2); + // active window focus reason should not cause input panel to open QGraphicsObject * inputObject = qobject_cast(&input); inputObject->setFocus(Qt::ActiveWindowFocusReason); @@ -856,9 +912,6 @@ void tst_qdeclarativetextinput::sendRequestSoftwareInputPanelEvent() input.setFocus(true); QCOMPARE(ic.openInputPanelReceived, false); QCOMPARE(ic.closeInputPanelReceived, false); - - input.setShowInputPanelOnFocus(true); - QCOMPARE(inputPanelonFocusSpy.count(),2); } class MyTextInput : public QDeclarativeTextInput -- cgit v1.2.1 From 74232ac426d9911417e880334292925f47f0df1e Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Wed, 2 Jun 2010 17:19:22 +1000 Subject: QML viewer now supports TopUp, TopDown, RightUp and LeftUp orientations instead of Portrait/Landscape. The new orientations are named the same as the orientations in the QtMobility sensors module. Task-number: QTBUG-11106 Reviewed-by: akennedy --- .../declarative/qdeclarativeviewer/data/orientation.qml | 17 +++++++++++++---- .../qdeclarativeviewer/tst_qdeclarativeviewer.cpp | 4 ++-- 2 files changed, 15 insertions(+), 6 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeviewer/data/orientation.qml b/tests/auto/declarative/qdeclarativeviewer/data/orientation.qml index 687fac64fa..be911a3698 100644 --- a/tests/auto/declarative/qdeclarativeviewer/data/orientation.qml +++ b/tests/auto/declarative/qdeclarativeviewer/data/orientation.qml @@ -1,10 +1,19 @@ import Qt 4.7 Rectangle { color: "black" - width: (runtime.orientation == Orientation.Landscape) ? 300 : 200 - height: (runtime.orientation == Orientation.Landscape) ? 200 : 300 + width: (runtime.orientation == Orientation.RightUp || runtime.orientation == Orientation.LeftUp) ? 300 : 200 + height: (runtime.orientation == Orientation.RightUp || runtime.orientation == Orientation.LeftUp) ? 200 : 300 Text { - text: runtime.orientation == Orientation.Landscape ? "Landscape" : "Portrait" + text: { + if (runtime.orientation == Orientation.TopUp) + return "TopUp" + if (runtime.orientation == Orientation.TopDown) + return "TopDown" + if (runtime.orientation == Orientation.LeftUp) + return "LeftUp" + if (runtime.orientation == Orientation.RightUp) + return "RightUp" + } color: "white" } -} \ No newline at end of file +} diff --git a/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp b/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp index 9429dc9fdc..f296d9eff6 100644 --- a/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp +++ b/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp @@ -82,7 +82,7 @@ void tst_QDeclarativeViewer::orientation() QCOMPARE(viewer->size(), QSize(200, 300+viewer->menuBar()->height())); QCOMPARE(viewer->size(), viewer->sizeHint()); - viewer->toggleOrientation(); + viewer->rotateOrientation(); qApp->processEvents(); QCOMPARE(rootItem->width(), 300.0); @@ -92,7 +92,7 @@ void tst_QDeclarativeViewer::orientation() QCOMPARE(viewer->size(), QSize(300, 200+viewer->menuBar()->height())); QCOMPARE(viewer->size(), viewer->sizeHint()); - viewer->toggleOrientation(); + viewer->rotateOrientation(); qApp->processEvents(); QCOMPARE(rootItem->width(), 200.0); -- cgit v1.2.1 From 0f16c7ce8dcd6f4905d14875088c55148e41366a Mon Sep 17 00:00:00 2001 From: Peter Hartmann Date: Tue, 1 Jun 2010 16:50:55 +0200 Subject: QSslCertificate: support large serial numbers We were calling an OpenSSL function that returned a long for the serial number; sometimes serial numbers are too big to fit into a long (up to 20 octets). In that case, do not convert the serial number to decimal, but just output the hexadecimal value. Reviewed-by: Zeno Albisser Task-number: QTBUG-9973 --- .../more-certificates/cert-large-serial-number.pem | 14 ++++++++++++++ tests/auto/qsslcertificate/tst_qsslcertificate.cpp | 13 +++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 tests/auto/qsslcertificate/more-certificates/cert-large-serial-number.pem (limited to 'tests/auto') diff --git a/tests/auto/qsslcertificate/more-certificates/cert-large-serial-number.pem b/tests/auto/qsslcertificate/more-certificates/cert-large-serial-number.pem new file mode 100644 index 0000000000..ecb6c35632 --- /dev/null +++ b/tests/auto/qsslcertificate/more-certificates/cert-large-serial-number.pem @@ -0,0 +1,14 @@ +-----BEGIN CERTIFICATE----- +MIICGjCCAYMCFAECAwQFBgcICRCqu8zd7v8XGBkgMA0GCSqGSIb3DQEBBQUAMEwx +CzAJBgNVBAYTAkdCMRIwEAYDVQQIEwlCZXJrc2hpcmUxEDAOBgNVBAcTB05ld2J1 +cnkxFzAVBgNVBAoTDk15IENvbXBhbnkgTHRkMB4XDTEwMDYwMTE1MDI0MVoXDTEx +MDYwMTE1MDI0MVowTDELMAkGA1UEBhMCR0IxEjAQBgNVBAgTCUJlcmtzaGlyZTEQ +MA4GA1UEBxMHTmV3YnVyeTEXMBUGA1UEChMOTXkgQ29tcGFueSBMdGQwgZ8wDQYJ +KoZIhvcNAQEBBQADgY0AMIGJAoGBAM2q22/WNMmn8cC+5EEYGeICySLmp9W6Ay6e +KHr0Xxp3X3epETuPfvAuxp7rOtkS18EMUegkUj8jw0IMEcbyHKFC/rTCaYOt93Cx +GBXMIChiMPAsFeYzGa/D6xzAkfcRaJRQ+Ek3CDLXPnXfo7xpABXezYcPXAJrgsgB +fWrwHdxzAgMBAAEwDQYJKoZIhvcNAQEFBQADgYEAtlScqSn4IHFLRiQYQdfOgsPi +wdqD1MPZEniQE0Xp8McZ7kuYbGgdEqzeVgMHqitlzkNNtTz+2u37CbFNXDGCTy5D +2JCgZxaAWNkh1w+4VB91HfMwEU0MqvAO7SB31FwbKNaB3gVnua++NL1cAkujyRny +yR3PatYZCfESQ7oZgds= +-----END CERTIFICATE----- diff --git a/tests/auto/qsslcertificate/tst_qsslcertificate.cpp b/tests/auto/qsslcertificate/tst_qsslcertificate.cpp index c76c11fe56..505b8676fe 100644 --- a/tests/auto/qsslcertificate/tst_qsslcertificate.cpp +++ b/tests/auto/qsslcertificate/tst_qsslcertificate.cpp @@ -109,6 +109,7 @@ private slots: void task256066toPem(); void nulInCN(); void nulInSan(); + void largeSerialNumber(); // ### add tests for certificate bundles (multiple certificates concatenated into a single // structure); both PEM and DER formatted #endif @@ -786,6 +787,18 @@ void tst_QSslCertificate::nulInSan() QCOMPARE(dnssan, QString::fromLatin1(realSAN, sizeof realSAN - 1)); } +void tst_QSslCertificate::largeSerialNumber() +{ + QList certList = + QSslCertificate::fromPath(SRCDIR "more-certificates/cert-large-serial-number.pem"); + + QCOMPARE(certList.size(), 1); + + const QSslCertificate &cert = certList.at(0); + QVERIFY(!cert.isNull()); + QCOMPARE(cert.serialNumber(), QByteArray("01:02:03:04:05:06:07:08:09:10:aa:bb:cc:dd:ee:ff:17:18:19:20")); +} + #endif // QT_NO_OPENSSL QTEST_MAIN(tst_QSslCertificate) -- cgit v1.2.1 From 417f3a4ece9403d1eb37ce0ecdf74cf670bdd0ff Mon Sep 17 00:00:00 2001 From: Markus Goetz Date: Wed, 2 Jun 2010 11:56:19 +0200 Subject: QNAM: Improve child deletion order Delete the QNetworkReply children first because they could access the QAbstractNetworkCache that is also a child of the QNetworkAccessManager. Reviewed-by: brad --- .../qnetworkdiskcache/tst_qnetworkdiskcache.cpp | 77 ++++++++++++++++++++++ 1 file changed, 77 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qnetworkdiskcache/tst_qnetworkdiskcache.cpp b/tests/auto/qnetworkdiskcache/tst_qnetworkdiskcache.cpp index 8ce10fbb9c..5bbe8f645e 100644 --- a/tests/auto/qnetworkdiskcache/tst_qnetworkdiskcache.cpp +++ b/tests/auto/qnetworkdiskcache/tst_qnetworkdiskcache.cpp @@ -78,6 +78,56 @@ private slots: void oldCacheVersionFile(); void sync(); + + void crashWhenParentingCache(); +}; + +// FIXME same as in tst_qnetworkreply.cpp .. could be unified +// Does not work for POST/PUT! +class MiniHttpServer: public QTcpServer +{ + Q_OBJECT +public: + QTcpSocket *client; // always the last one that was received + QByteArray dataToTransmit; + QByteArray receivedData; + bool doClose; + bool multiple; + int totalConnections; + + MiniHttpServer(const QByteArray &data) : client(0), dataToTransmit(data), doClose(true), multiple(false), totalConnections(0) + { + listen(); + connect(this, SIGNAL(newConnection()), this, SLOT(doAccept())); + } + +public slots: + void doAccept() + { + client = nextPendingConnection(); + client->setParent(this); + ++totalConnections; + connect(client, SIGNAL(readyRead()), this, SLOT(readyReadSlot())); + } + + void readyReadSlot() + { + receivedData += client->readAll(); + int doubleEndlPos = receivedData.indexOf("\r\n\r\n"); + + if (doubleEndlPos != -1) { + // multiple requests incoming. remove the bytes of the current one + if (multiple) + receivedData.remove(0, doubleEndlPos+4); + + client->write(dataToTransmit); + if (doClose) { + client->disconnectFromHost(); + disconnect(client, 0, this, 0); + client = 0; + } + } + } }; // Subclass that exposes the protected functions. @@ -581,6 +631,33 @@ public: Runner *other; }; +void tst_QNetworkDiskCache::crashWhenParentingCache() +{ + // the trick here is to not send the complete response + // but some data. So we get a readyRead() and it gets tried + // to be saved to the cache + QByteArray data("HTTP/1.0 200 OK\r\nCache-Control: max-age=300\r\nAge: 1\r\nContent-Length: 5\r\n\r\n123"); + MiniHttpServer server(data); + + QNetworkAccessManager *manager = new QNetworkAccessManager(); + QNetworkDiskCache *diskCache = new QNetworkDiskCache(manager); // parent to qnam! + // we expect the temp dir to be cleaned at some point anyway + diskCache->setCacheDirectory(QDir::tempPath() + "/cacheDir_" + QCoreApplication::applicationPid()); + manager->setCache(diskCache); + + QUrl url("http://127.0.0.1:" + QString::number(server.serverPort())); + QNetworkRequest request(url); + // request.setAttribute(QNetworkRequest::CacheLoadControlAttribute, QNetworkRequest::AlwaysNetwork); + QNetworkReply *reply = manager->get(request); // new reply is parented to qnam + + // wait for readyRead of reply! + connect(reply, SIGNAL(readyRead()), &QTestEventLoop::instance(), SLOT(exitLoop())); + QTestEventLoop::instance().enterLoop(5); + QVERIFY(!QTestEventLoop::instance().timeout()); + + delete manager; // crashed before.. +} + void tst_QNetworkDiskCache::sync() { // This tests would be a nice to have, but is currently not supported. -- cgit v1.2.1 From 0fc84aa48ef03c1910dc344e204e7267470305c4 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Wed, 2 Jun 2010 13:23:35 +0200 Subject: Fix failing bypassShaping autotest on the Mac OS X This test relies on integer metrics, so we need to force them for Mac OS X. Reviewed-by: Jocelyn Turcotte --- tests/auto/qfontmetrics/tst_qfontmetrics.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'tests/auto') diff --git a/tests/auto/qfontmetrics/tst_qfontmetrics.cpp b/tests/auto/qfontmetrics/tst_qfontmetrics.cpp index 81e064e84e..2567a415f8 100644 --- a/tests/auto/qfontmetrics/tst_qfontmetrics.cpp +++ b/tests/auto/qfontmetrics/tst_qfontmetrics.cpp @@ -223,6 +223,7 @@ void tst_QFontMetrics::averageCharWidth() void tst_QFontMetrics::bypassShaping() { QFont f; + f.setStyleStrategy(QFont::ForceIntegerMetrics); QFontMetrics fm(f); QString text = " A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z"; int textWidth = fm.width(text, -1, Qt::TextBypassShaping); -- cgit v1.2.1 From 3a72235d7cf2aa953cb32654545c480fd2d08866 Mon Sep 17 00:00:00 2001 From: Gareth Stockwell Date: Mon, 10 May 2010 17:01:57 +0100 Subject: Added tst_QWidget::destroyBackingStoreWhenHidden Task-number: QTBUG-8697 Reviewed-by: Jason Barron --- tests/auto/qwidget/tst_qwidget.cpp | 247 +++++++++++++++++++++++++++++++++++++ 1 file changed, 247 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qwidget/tst_qwidget.cpp b/tests/auto/qwidget/tst_qwidget.cpp index 76e20b997e..f4add5a8b7 100644 --- a/tests/auto/qwidget/tst_qwidget.cpp +++ b/tests/auto/qwidget/tst_qwidget.cpp @@ -385,6 +385,7 @@ private slots: void setGraphicsEffect(); void destroyBackingStore(); + void destroyBackingStoreWhenHidden(); void activateWindow(); @@ -9517,6 +9518,252 @@ void tst_QWidget::destroyBackingStore() #endif } +// Helper function +QWidgetBackingStore* backingStore(QWidget &widget) +{ + QWidgetBackingStore *backingStore = 0; +#ifdef QT_BUILD_INTERNAL + if (QTLWExtra *topExtra = qt_widget_private(&widget)->maybeTopData()) + backingStore = topExtra->backingStore; +#endif + return backingStore; +} + +// Wait for a condition to be true, timing out after 1 second +// This is used following calls to QWidget::show() and QWidget::hide(), which are +// expected to asynchronously trigger native window visibility events. +#define WAIT_AND_VERIFY(condition) \ + do { \ + QTime start = QTime::currentTime(); \ + while (!(condition) && (start.elapsed() < 1000)) { \ + qApp->processEvents(); \ + QTest::qWait(50); \ + } \ + if (!QTest::qVerify((condition), #condition, "", __FILE__, __LINE__)) \ + return; \ + } while (0) + +void tst_QWidget::destroyBackingStoreWhenHidden() +{ +#ifndef QT_BUILD_INTERNAL + QSKIP("Test step requires access to Q_AUTOTEST_EXPORT", SkipAll); +#endif + +#ifndef Q_OS_SYMBIAN + QSKIP("Only Symbian destroys backing store when native window becomes invisible", SkipAll); +#endif + + testWidget->hide(); + QTest::qWait(1000); + + // 1. Single top-level QWidget + { + QWidget w; + w.setAutoFillBackground(true); + w.setPalette(Qt::yellow); + w.setGeometry(0, 0, 100, 100); + w.show(); + QTest::qWaitForWindowShown(&w); + QVERIFY(0 != backingStore(w)); + + w.hide(); + WAIT_AND_VERIFY(0 == backingStore(w)); + + w.show(); + QTest::qWaitForWindowShown(&w); + QVERIFY(0 != backingStore(w)); + } + + // 2. Two top-level widgets + { + QWidget w1; + w1.setGeometry(0, 0, 100, 100); + w1.setAutoFillBackground(true); + w1.setPalette(Qt::red); + w1.show(); + QTest::qWaitForWindowShown(&w1); + QVERIFY(0 != backingStore(w1)); + + QWidget w2; + w2.setGeometry(w1.geometry()); + w1.setAutoFillBackground(true); + w1.setPalette(Qt::blue); + w2.show(); + QTest::qWaitForWindowShown(&w2); + QVERIFY(0 != backingStore(w2)); + + // Check that w1 deleted its backing store when obscured by w2 + QVERIFY(0 == backingStore(w1)); + + w2.move(w2.pos() + QPoint(10, 10)); + + // Check that w1 recreates its backing store when partially revealed + WAIT_AND_VERIFY(0 != backingStore(w1)); + } + + // 3. Native child widget + { + QWidget parent; + parent.setGeometry(0, 0, 100, 100); + parent.setAutoFillBackground(true); + parent.setPalette(Qt::yellow); + + QWidget child(&parent); + child.setAutoFillBackground(true); + child.setPalette(Qt::green); + + QVBoxLayout layout(&parent); + layout.setContentsMargins(10, 10, 10, 10); + layout.addWidget(&child); + parent.setLayout(&layout); + + child.winId(); + + parent.show(); + QTest::qWaitForWindowShown(&parent); + + // Check that child window does not obscure parent window + QVERIFY(!parent.visibleRegion().subtracted(child.visibleRegion()).isEmpty()); + + // Native child widget should share parent's backing store + QWidgetBackingStore *const parentBs = backingStore(parent); + QVERIFY(0 != parentBs); + QVERIFY(0 == backingStore(child)); + + // Set margins to zero so that child widget totally obscures parent + layout.setContentsMargins(0, 0, 0, 0); + + WAIT_AND_VERIFY(parent.visibleRegion().subtracted(child.visibleRegion()).isEmpty()); + + // Backing store should remain unchanged despite child window obscuring + // parent window + QEXPECT_FAIL("", "QTBUG-8697", Continue); + QVERIFY(parentBs == backingStore(parent)); + QVERIFY(0 == backingStore(child)); + } + + // 4. Alien child widget which is made full-screen + { + QWidget parent; + parent.setGeometry(0, 0, 100, 100); + parent.setAutoFillBackground(true); + parent.setPalette(Qt::red); + + QWidget child(&parent); + child.setAutoFillBackground(true); + child.setPalette(Qt::blue); + + QVBoxLayout layout(&parent); + layout.setContentsMargins(10, 10, 10, 10); + layout.addWidget(&child); + parent.setLayout(&layout); + + parent.show(); + QTest::qWaitForWindowShown(&parent); + + // Check that child window does not obscure parent window + QVERIFY(!parent.visibleRegion().subtracted(child.visibleRegion()).isEmpty()); + + // Native child widget should share parent's backing store + QVERIFY(0 != backingStore(parent)); + QVERIFY(0 == backingStore(child)); + + // Make child widget full screen + child.setWindowFlags((child.windowFlags() | Qt::Window) ^ Qt::SubWindow); + child.setWindowState(child.windowState() | Qt::WindowFullScreen); + child.show(); + QTest::qWaitForWindowShown(&child); + + // Check that child window obscures parent window + QVERIFY(parent.visibleRegion().subtracted(child.visibleRegion()).isEmpty()); + + // Now that extent of child widget goes beyond parent's extent, + // a new backing store should be created for the child widget. + QVERIFY(0 != backingStore(child)); + + // Parent is obscured, therefore its backing store should be destroyed + QVERIFY(0 == backingStore(parent)); + + // Disable full screen + child.setWindowFlags(child.windowFlags() ^ (Qt::Window | Qt::SubWindow)); + child.setWindowState(child.windowState() ^ Qt::WindowFullScreen); + child.show(); + QTest::qWaitForWindowShown(&child); + + // Check that parent is now visible again + QVERIFY(!parent.visibleRegion().subtracted(child.visibleRegion()).isEmpty()); + + // Native child widget should once again share parent's backing store + QVERIFY(0 != backingStore(parent)); + QEXPECT_FAIL("", "QTBUG-10643", Continue); + QVERIFY(0 == backingStore(child)); + } + + // 5. Native child widget which is made full-screen + { + QWidget parent; + parent.setGeometry(0, 0, 100, 100); + parent.setAutoFillBackground(true); + parent.setPalette(Qt::red); + + QWidget child(&parent); + child.setAutoFillBackground(true); + child.setPalette(Qt::blue); + + QVBoxLayout layout(&parent); + layout.setContentsMargins(10, 10, 10, 10); + layout.addWidget(&child); + parent.setLayout(&layout); + + child.winId(); + + parent.show(); + QTest::qWaitForWindowShown(&parent); + + // Check that child window does not obscure parent window + QVERIFY(!parent.visibleRegion().subtracted(child.visibleRegion()).isEmpty()); + + // Native child widget should share parent's backing store + QVERIFY(0 != backingStore(parent)); + QVERIFY(0 == backingStore(child)); + + // Make child widget full screen + child.setWindowFlags((child.windowFlags() | Qt::Window) ^ Qt::SubWindow); + child.setWindowState(child.windowState() | Qt::WindowFullScreen); + child.show(); + QTest::qWaitForWindowShown(&child); + + // Ensure that 'window hidden' event is received by parent + qApp->processEvents(); + + // Check that child window obscures parent window + QVERIFY(parent.visibleRegion().subtracted(child.visibleRegion()).isEmpty()); + + // Now that extent of child widget goes beyond parent's extent, + // a new backing store should be created for the child widget. + QVERIFY(0 != backingStore(child)); + + // Parent is obscured, therefore its backing store should be destroyed + QVERIFY(0 == backingStore(parent)); + + // Disable full screen + child.setWindowFlags(child.windowFlags() ^ (Qt::Window | Qt::SubWindow)); + child.setWindowState(child.windowState() ^ Qt::WindowFullScreen); + child.show(); + QTest::qWaitForWindowShown(&child); + + // Check that parent is now visible again + QVERIFY(!parent.visibleRegion().subtracted(child.visibleRegion()).isEmpty()); + + // Native child widget should once again share parent's backing store + QVERIFY(0 != backingStore(parent)); + QEXPECT_FAIL("", "QTBUG-10643", Continue); + QVERIFY(0 == backingStore(child)); + } +} + +#undef WAIT_AND_VERIFY + void tst_QWidget::rectOutsideCoordinatesLimit_task144779() { #ifdef Q_OS_WINCE_WM -- cgit v1.2.1 From d7057e7c1f1a4769c6e9b0e1c54446d5104c1484 Mon Sep 17 00:00:00 2001 From: Gareth Stockwell Date: Tue, 11 May 2010 16:50:00 +0100 Subject: Added reference counting to QWidgetBackingStore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On Symbian, the top-level widget's backing store must be destroyed when it is no longer required, in order to conserve memory. The criteria for destroying the backing store is when neither the TLW nor any of its native descendents (which share the backing store) are visible. In order to implement this requirement, a count must be kept of the number of native widgets which are using the TLW's backing store. This patch provides the mechanism for maintaining this count, and for destroying the backing store when the count is decremented to zero. No calls to either the increment nor decrement functions are made, however, by this code included in this patch; this code will be added to only the Symbian backend by a subsequent patch. Task-number: QTBUG-8697 Reviewed-by: Bjørn Erik Nilsen Reviewed-by: Jason Barron --- tests/auto/qwidget/tst_qwidget.cpp | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qwidget/tst_qwidget.cpp b/tests/auto/qwidget/tst_qwidget.cpp index f4add5a8b7..9369f4a774 100644 --- a/tests/auto/qwidget/tst_qwidget.cpp +++ b/tests/auto/qwidget/tst_qwidget.cpp @@ -9500,9 +9500,7 @@ void tst_QWidget::destroyBackingStore() QTRY_VERIFY(w.numPaintEvents > 0); w.reset(); w.update(); - delete qt_widget_private(&w)->topData()->backingStore; - qt_widget_private(&w)->topData()->backingStore = 0; - qt_widget_private(&w)->topData()->backingStore = new QWidgetBackingStore(&w); + qt_widget_private(&w)->topData()->backingStore.create(&w); w.update(); QApplication::processEvents(); @@ -9524,7 +9522,7 @@ QWidgetBackingStore* backingStore(QWidget &widget) QWidgetBackingStore *backingStore = 0; #ifdef QT_BUILD_INTERNAL if (QTLWExtra *topExtra = qt_widget_private(&widget)->maybeTopData()) - backingStore = topExtra->backingStore; + backingStore = topExtra->backingStore.data(); #endif return backingStore; } @@ -10244,15 +10242,12 @@ class scrollWidgetWBS : public QWidget public: void deleteBackingStore() { - if (static_cast(d_ptr.data())->maybeBackingStore()) { - delete static_cast(d_ptr.data())->topData()->backingStore; - static_cast(d_ptr.data())->topData()->backingStore = 0; - } + static_cast(d_ptr.data())->topData()->backingStore.destroy(); } void enableBackingStore() { if (!static_cast(d_ptr.data())->maybeBackingStore()) { - static_cast(d_ptr.data())->topData()->backingStore = new QWidgetBackingStore(this); + static_cast(d_ptr.data())->topData()->backingStore.create(this); static_cast(d_ptr.data())->invalidateBuffer(this->rect()); repaint(); } -- cgit v1.2.1 From 603ccb3d715b1d6e9969b2df8ab27461f51728fb Mon Sep 17 00:00:00 2001 From: Gareth Stockwell Date: Thu, 13 May 2010 14:11:07 +0100 Subject: Window visibility changes update TLW backing store reference count * When a native window becomes completely invisible, the reference count of the top-level widget's backing store is decremented. * When a previously invisible native window becomes either partially or fully visible: - If the top-level widget has a backing store, its reference count is incremented. - Otherwise, the top-level widget creates a backing store with an initial reference count of 1. Task-number: QTBUG-8697 Reviewed-by: Jason Barron --- tests/auto/qwidget/tst_qwidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/qwidget/tst_qwidget.cpp b/tests/auto/qwidget/tst_qwidget.cpp index 9369f4a774..7d4f8ffa1a 100644 --- a/tests/auto/qwidget/tst_qwidget.cpp +++ b/tests/auto/qwidget/tst_qwidget.cpp @@ -9635,7 +9635,6 @@ void tst_QWidget::destroyBackingStoreWhenHidden() // Backing store should remain unchanged despite child window obscuring // parent window - QEXPECT_FAIL("", "QTBUG-8697", Continue); QVERIFY(parentBs == backingStore(parent)); QVERIFY(0 == backingStore(child)); } @@ -9742,6 +9741,7 @@ void tst_QWidget::destroyBackingStoreWhenHidden() QVERIFY(0 != backingStore(child)); // Parent is obscured, therefore its backing store should be destroyed + QEXPECT_FAIL("", "QTBUG-10643", Continue); QVERIFY(0 == backingStore(parent)); // Disable full screen -- cgit v1.2.1 From a1c8fc04c17cfbf0060c81d442ffa2440a796112 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Wed, 2 Jun 2010 15:39:40 +0200 Subject: write PO files without duplicated message ids encoding the qt context as a magic comment was no particularly good idea, as it provided no disambiguation as far as gettext is concerned. so instead encode the context into msgctxt. Task-number: QTBUG-10307 --- tests/auto/linguist/lconvert/data/test20.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/linguist/lconvert/data/test20.ts b/tests/auto/linguist/lconvert/data/test20.ts index 542cdee1a7..f042edf145 100644 --- a/tests/auto/linguist/lconvert/data/test20.ts +++ b/tests/auto/linguist/lconvert/data/test20.ts @@ -147,4 +147,16 @@ + + Bizarre ~ and | context~ + + just something + + + + something else + comment with | and ~ and so~ + + + -- cgit v1.2.1 From 25763b746eca93d53b209ab232d323b9ed3ee465 Mon Sep 17 00:00:00 2001 From: Thomas Zander Date: Wed, 2 Jun 2010 16:20:00 +0200 Subject: Fix a corner case where a gesture sometimes doesn't start. gestures are re-used per widget / recognizer and in the case of a gesture getting cancelled we sometimes didn't properly 'start' the gesture on new incoming events since the manager forgot to mark it as not running. Add a test case and a one line fix. Reviewed-by: Denis Task-number: QTBUG-11076 --- tests/auto/gestures/tst_gestures.cpp | 166 +++++++++++++++++++++++++++++++++++ 1 file changed, 166 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/gestures/tst_gestures.cpp b/tests/auto/gestures/tst_gestures.cpp index 4a9f1d1be7..7c1170cdd9 100644 --- a/tests/auto/gestures/tst_gestures.cpp +++ b/tests/auto/gestures/tst_gestures.cpp @@ -49,6 +49,7 @@ #include #include #include +#include #include #include @@ -358,6 +359,7 @@ private slots: void viewportCoordinates(); void partialGesturePropagation(); void testQGestureRecognizerCleanup(); + void testReuseCanceledGestures(); }; tst_Gestures::tst_Gestures() @@ -2069,5 +2071,169 @@ void tst_Gestures::testQGestureRecognizerCleanup() delete w; } +class ReuseCanceledGesturesRecognizer : public QGestureRecognizer +{ +public: + enum Type { + RmbAndCancelAllType, + LmbType + }; + + ReuseCanceledGesturesRecognizer(Type type) : m_type(type) {} + + QGesture *create(QObject *) { + QGesture *g = new QGesture; + return g; + } + + Result recognize(QGesture *gesture, QObject *, QEvent *event) { + QMouseEvent *me = static_cast(event); + Qt::MouseButton mouseButton(m_type == LmbType ? Qt::LeftButton : Qt::RightButton); + + switch(event->type()) { + case QEvent::MouseButtonPress: + if (me->button() == mouseButton && gesture->state() == Qt::NoGesture) { + gesture->setHotSpot(QPointF(me->globalPos())); + if (m_type == RmbAndCancelAllType) + gesture->setGestureCancelPolicy(QGesture::CancelAllInContext); + return QGestureRecognizer::TriggerGesture; + } + break; + case QEvent::MouseButtonRelease: + if (me->button() == mouseButton && gesture->state() > Qt::NoGesture) + return QGestureRecognizer::FinishGesture; + default: + break; + } + return QGestureRecognizer::Ignore; + } +private: + Type m_type; +}; + +class ReuseCanceledGesturesWidget : public QGraphicsWidget +{ + public: + ReuseCanceledGesturesWidget(Qt::GestureType gestureType = Qt::TapGesture, QGraphicsItem *parent = 0) + : QGraphicsWidget(parent), + m_gestureType(gestureType), + m_started(0), m_updated(0), m_canceled(0), m_finished(0) + { + } + + bool event(QEvent *event) { + if (event->type() == QEvent::Gesture) { + QGesture *gesture = static_cast(event)->gesture(m_gestureType); + if (gesture) { + switch(gesture->state()) { + case Qt::GestureStarted: m_started++; break; + case Qt::GestureUpdated: m_updated++; break; + case Qt::GestureFinished: m_finished++; break; + case Qt::GestureCanceled: m_canceled++; break; + default: break; + } + } + return true; + } + if (event->type() == QEvent::GraphicsSceneMousePress) { + return true; + } + return QGraphicsWidget::event(event); + } + + int started() { return m_started; } + int updated() { return m_updated; } + int finished() { return m_finished; } + int canceled() { return m_canceled; } + + private: + Qt::GestureType m_gestureType; + int m_started; + int m_updated; + int m_canceled; + int m_finished; +}; + +void tst_Gestures::testReuseCanceledGestures() +{ + Qt::GestureType cancellingGestureTypeId = QGestureRecognizer::registerRecognizer( + new ReuseCanceledGesturesRecognizer(ReuseCanceledGesturesRecognizer::RmbAndCancelAllType)); + Qt::GestureType tapGestureTypeId = QGestureRecognizer::registerRecognizer( + new ReuseCanceledGesturesRecognizer(ReuseCanceledGesturesRecognizer::LmbType)); + + QMainWindow mw; + mw.setWindowFlags(Qt::X11BypassWindowManagerHint); + QGraphicsView *gv = new QGraphicsView(&mw); + QGraphicsScene *scene = new QGraphicsScene; + + gv->setScene(scene); + scene->setSceneRect(0,0,100,100); + + // Create container and add to the scene + ReuseCanceledGesturesWidget *container = new ReuseCanceledGesturesWidget; + container->grabGesture(cancellingGestureTypeId); // << container grabs canceling gesture + + // Create widget and add to the scene + ReuseCanceledGesturesWidget *target = new ReuseCanceledGesturesWidget(tapGestureTypeId, container); + target->grabGesture(tapGestureTypeId); + + container->setGeometry(scene->sceneRect()); + + scene->addItem(container); + + mw.setCentralWidget(gv); + + // Viewport needs to grab all gestures that widgets in scene grab + gv->viewport()->grabGesture(cancellingGestureTypeId); + gv->viewport()->grabGesture(tapGestureTypeId); + + mw.show(); + QTest::qWaitForWindowShown(&mw); + + QPoint targetPos(gv->mapFromScene(target->mapToScene(target->rect().center()))); + targetPos = gv->viewport()->mapFromParent(targetPos); + + // "Tap" starts on child widget + QTest::mousePress(gv->viewport(), Qt::LeftButton, 0, targetPos); + QCOMPARE(target->started(), 1); + QCOMPARE(target->updated(), 0); + QCOMPARE(target->finished(), 0); + QCOMPARE(target->canceled(), 0); + + // Canceling gesture starts on parent + QTest::mousePress(gv->viewport(), Qt::RightButton, 0, targetPos); + QCOMPARE(target->started(), 1); + QCOMPARE(target->updated(), 0); + QCOMPARE(target->finished(), 0); + QCOMPARE(target->canceled(), 1); // <- child canceled + + // Canceling gesture ends + QTest::mouseRelease(gv->viewport(), Qt::RightButton, 0, targetPos); + QCOMPARE(target->started(), 1); + QCOMPARE(target->updated(), 0); + QCOMPARE(target->finished(), 0); + QCOMPARE(target->canceled(), 1); + + // Tap would end if not canceled + QTest::mouseRelease(gv->viewport(), Qt::LeftButton, 0, targetPos); + QCOMPARE(target->started(), 1); + QCOMPARE(target->updated(), 0); + QCOMPARE(target->finished(), 0); + QCOMPARE(target->canceled(), 1); + + // New "Tap" starts + QTest::mousePress(gv->viewport(), Qt::LeftButton, 0, targetPos); + QCOMPARE(target->started(), 2); + QCOMPARE(target->updated(), 0); + QCOMPARE(target->finished(), 0); + QCOMPARE(target->canceled(), 1); + + QTest::mouseRelease(gv->viewport(), Qt::LeftButton, 0, targetPos); + QCOMPARE(target->started(), 2); + QCOMPARE(target->updated(), 0); + QCOMPARE(target->finished(), 1); + QCOMPARE(target->canceled(), 1); +} + QTEST_MAIN(tst_Gestures) #include "tst_gestures.moc" -- cgit v1.2.1 From d7da9ec2a9e3752b1480007aa1fb213765aa8c90 Mon Sep 17 00:00:00 2001 From: Rohan McGovern Date: Mon, 31 May 2010 11:12:02 +1000 Subject: Add a test for the `make check' feature. --- .../auto/maketestselftest/checktest/checktest.pro | 7 ++ tests/auto/maketestselftest/checktest/main.cpp | 88 ++++++++++++++++++++++ tests/auto/maketestselftest/maketestselftest.pro | 9 +-- tests/auto/maketestselftest/test/test.pro | 10 +++ .../auto/maketestselftest/tst_maketestselftest.cpp | 71 +++++++++++++++++ 5 files changed, 179 insertions(+), 6 deletions(-) create mode 100644 tests/auto/maketestselftest/checktest/checktest.pro create mode 100644 tests/auto/maketestselftest/checktest/main.cpp create mode 100644 tests/auto/maketestselftest/test/test.pro (limited to 'tests/auto') diff --git a/tests/auto/maketestselftest/checktest/checktest.pro b/tests/auto/maketestselftest/checktest/checktest.pro new file mode 100644 index 0000000000..79c5ca55e2 --- /dev/null +++ b/tests/auto/maketestselftest/checktest/checktest.pro @@ -0,0 +1,7 @@ +TEMPLATE = app +TARGET = checktest +CONFIG += console +CONFIG -= app_bundle +DESTDIR = ./ +QT = core +SOURCES += main.cpp diff --git a/tests/auto/maketestselftest/checktest/main.cpp b/tests/auto/maketestselftest/checktest/main.cpp new file mode 100644 index 0000000000..e775665c96 --- /dev/null +++ b/tests/auto/maketestselftest/checktest/main.cpp @@ -0,0 +1,88 @@ +/**************************************************************************** +** +** 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 test suite 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 +#include +#include + +#include +#include + +void fail(QString const& message) +{ + printf("CHECKTEST FAIL: %s\n", qPrintable(message)); + exit(0); +} + +void pass(QString const& message) +{ + printf("CHECKTEST PASS: %s\n", qPrintable(message)); + exit(0); +} + +int main(int argc, char** argv) +{ + QCoreApplication app(argc, argv); + + QStringList args = app.arguments(); + args.removeFirst(); // ourself + + QString args_quoted = QString("'%1'").arg(args.join("','")); + if (args.count() != 1) { + fail(QString("Expected exactly one argument, got: %1").arg(args_quoted)); + } + + QString test = args.at(0); + + QFileInfo testfile(test); + if (!testfile.exists()) { + fail(QString("File %1 does not exist (my working directory is: %2, my args are: %3)") + .arg(test) + .arg(QDir::currentPath()) + .arg(args_quoted) + ); + } + + pass(args_quoted); +} + diff --git a/tests/auto/maketestselftest/maketestselftest.pro b/tests/auto/maketestselftest/maketestselftest.pro index 6cc1744d2d..a27d5d7934 100644 --- a/tests/auto/maketestselftest/maketestselftest.pro +++ b/tests/auto/maketestselftest/maketestselftest.pro @@ -1,9 +1,6 @@ -load(qttest_p4) - -SOURCES += tst_maketestselftest.cpp -QT = core - -DEFINES += SRCDIR=\\\"$$PWD/\\\" +TEMPLATE = subdirs +SUBDIRS = checktest test +test.depends = checktest requires(!cross_compile) diff --git a/tests/auto/maketestselftest/test/test.pro b/tests/auto/maketestselftest/test/test.pro new file mode 100644 index 0000000000..2fae25fa0f --- /dev/null +++ b/tests/auto/maketestselftest/test/test.pro @@ -0,0 +1,10 @@ +load(qttest_p4) + +TARGET = ../tst_maketestselftest +SOURCES += ../tst_maketestselftest.cpp +QT = core + +DEFINES += SRCDIR=\\\"$$PWD/..\\\" + +requires(!cross_compile) + diff --git a/tests/auto/maketestselftest/tst_maketestselftest.cpp b/tests/auto/maketestselftest/tst_maketestselftest.cpp index 437e143890..9f8e2c5612 100644 --- a/tests/auto/maketestselftest/tst_maketestselftest.cpp +++ b/tests/auto/maketestselftest/tst_maketestselftest.cpp @@ -66,6 +66,8 @@ private slots: void naming_convention(); void naming_convention_data(); + void make_check(); + private: QStringList find_subdirs(QString const&, FindSubdirsMode, QString const& = QString()); @@ -446,6 +448,75 @@ QStringList tst_MakeTestSelfTest::find_subdirs(QString const& pro_file, FindSubd return out; } +void tst_MakeTestSelfTest::make_check() +{ + /* + Run `make check' over the whole tests tree with a custom TESTRUNNER, + to verify that the TESTRUNNER mechanism works right. + */ + QString testsDir(SRCDIR "/.."); + QString checktest(SRCDIR "/checktest/checktest"); + +#ifdef Q_OS_WIN32 + checktest.replace("/", "\\"); + checktest += ".exe"; +#endif + + QProcess make; + make.setWorkingDirectory(testsDir); + + QStringList arguments; + arguments << "-k"; + arguments << "check"; + arguments << QString("TESTRUNNER=%1").arg(checktest); + + // find the right make; from externaltests.cpp + static const char makes[] = + "nmake.exe\0" + "mingw32-make.exe\0" + "gmake\0" + "make\0" + ; + + bool ok = false; + for (const char *p = makes; *p; p += strlen(p) + 1) { + make.start(p, arguments); + if (make.waitForStarted()) { + ok = true; + break; + } + } + + if (!ok) { + QFAIL("Could not find the right make tool in PATH"); + } + + QVERIFY(make.waitForFinished(1000 * 60 * 10)); + QCOMPARE(make.exitStatus(), QProcess::NormalExit); + + int fail = 0; + int pass = 0; + QList out = make.readAllStandardOutput().split('\n'); + foreach (QByteArray line, out) { + while (line.endsWith("\r")) { + line.chop(1); + } + if (line.startsWith("CHECKTEST FAIL")) { + QWARN(line.constData()); + ++fail; + } + if (line.startsWith("CHECKTEST PASS")) { + ++pass; + } + } + + // We can't check that the exit code of make is 0, because some tests + // may have failed to compile, but that doesn't mean `make check' is broken. + // We do assume there are at least this many unbroken tests, though. + QCOMPARE(fail, 0); + QVERIFY(pass > 50); +} + QStringList find_test_class(QString const& filename) { QStringList out; -- cgit v1.2.1 From c0932de90e141d6f3eef3388c3caae22f3982798 Mon Sep 17 00:00:00 2001 From: Rohan McGovern Date: Thu, 3 Jun 2010 13:44:07 +1000 Subject: Fixed tst_maketestselftest on QWS and Windows. --- tests/auto/maketestselftest/checktest/main.cpp | 13 ++++++++++++- tests/auto/maketestselftest/test/test.pro | 8 ++++++++ tests/auto/maketestselftest/tst_maketestselftest.cpp | 10 ++++++---- 3 files changed, 26 insertions(+), 5 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/maketestselftest/checktest/main.cpp b/tests/auto/maketestselftest/checktest/main.cpp index e775665c96..af98953fd8 100644 --- a/tests/auto/maketestselftest/checktest/main.cpp +++ b/tests/auto/maketestselftest/checktest/main.cpp @@ -68,8 +68,19 @@ int main(int argc, char** argv) args.removeFirst(); // ourself QString args_quoted = QString("'%1'").arg(args.join("','")); + +#ifdef Q_WS_QWS + { + // for QWS we expect tests to be run as the QWS server + QString qws = args.takeLast(); + if (qws != "-qws") { + fail(QString("Expected test to be run with `-qws', but it wasn't; args: %1").arg(args_quoted)); + } + } +#endif + if (args.count() != 1) { - fail(QString("Expected exactly one argument, got: %1").arg(args_quoted)); + fail(QString("These arguments are not what I expected: %1").arg(args_quoted)); } QString test = args.at(0); diff --git a/tests/auto/maketestselftest/test/test.pro b/tests/auto/maketestselftest/test/test.pro index 2fae25fa0f..d9de51e1a3 100644 --- a/tests/auto/maketestselftest/test/test.pro +++ b/tests/auto/maketestselftest/test/test.pro @@ -8,3 +8,11 @@ DEFINES += SRCDIR=\\\"$$PWD/..\\\" requires(!cross_compile) +win32 { + CONFIG(debug, debug|release) { + TARGET = ../../debug/tst_maketestselftest +} else { + TARGET = ../../release/tst_maketestselftest + } +} + diff --git a/tests/auto/maketestselftest/tst_maketestselftest.cpp b/tests/auto/maketestselftest/tst_maketestselftest.cpp index 9f8e2c5612..c3cbf7681b 100644 --- a/tests/auto/maketestselftest/tst_maketestselftest.cpp +++ b/tests/auto/maketestselftest/tst_maketestselftest.cpp @@ -494,16 +494,15 @@ void tst_MakeTestSelfTest::make_check() QVERIFY(make.waitForFinished(1000 * 60 * 10)); QCOMPARE(make.exitStatus(), QProcess::NormalExit); - int fail = 0; int pass = 0; QList out = make.readAllStandardOutput().split('\n'); + QStringList fails; foreach (QByteArray line, out) { while (line.endsWith("\r")) { line.chop(1); } if (line.startsWith("CHECKTEST FAIL")) { - QWARN(line.constData()); - ++fail; + fails << QString::fromLocal8Bit(line); } if (line.startsWith("CHECKTEST PASS")) { ++pass; @@ -513,7 +512,10 @@ void tst_MakeTestSelfTest::make_check() // We can't check that the exit code of make is 0, because some tests // may have failed to compile, but that doesn't mean `make check' is broken. // We do assume there are at least this many unbroken tests, though. - QCOMPARE(fail, 0); + QVERIFY2(fails.count() == 0, + qPrintable(QString("`make check' doesn't work for %1 tests:\n%2") + .arg(fails.count()).arg(fails.join("\n"))) + ); QVERIFY(pass > 50); } -- cgit v1.2.1 From 79742b14982004ac1b77558e6ab6b649898336c7 Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Thu, 3 Jun 2010 15:27:23 +1000 Subject: Add header and footer to GridView Also document them for both ListView and GridView Task-number: QTBUG-11191 --- .../qdeclarativegridview/tst_qdeclarativegridview.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativegridview/tst_qdeclarativegridview.cpp b/tests/auto/declarative/qdeclarativegridview/tst_qdeclarativegridview.cpp index 2db3ee678a..fb09d390fb 100644 --- a/tests/auto/declarative/qdeclarativegridview/tst_qdeclarativegridview.cpp +++ b/tests/auto/declarative/qdeclarativegridview/tst_qdeclarativegridview.cpp @@ -833,21 +833,34 @@ void tst_QDeclarativeGridView::componentChanges() QSignalSpy highlightSpy(gridView, SIGNAL(highlightChanged())); QSignalSpy delegateSpy(gridView, SIGNAL(delegateChanged())); + QSignalSpy headerSpy(gridView, SIGNAL(headerChanged())); + QSignalSpy footerSpy(gridView, SIGNAL(footerChanged())); gridView->setHighlight(&component); gridView->setDelegate(&delegateComponent); + gridView->setHeader(&component); + gridView->setFooter(&component); QTRY_COMPARE(gridView->highlight(), &component); QTRY_COMPARE(gridView->delegate(), &delegateComponent); + QTRY_COMPARE(gridView->header(), &component); + QTRY_COMPARE(gridView->footer(), &component); QTRY_COMPARE(highlightSpy.count(),1); QTRY_COMPARE(delegateSpy.count(),1); + QTRY_COMPARE(headerSpy.count(),1); + QTRY_COMPARE(footerSpy.count(),1); gridView->setHighlight(&component); gridView->setDelegate(&delegateComponent); + gridView->setHeader(&component); + gridView->setFooter(&component); QTRY_COMPARE(highlightSpy.count(),1); QTRY_COMPARE(delegateSpy.count(),1); + QTRY_COMPARE(headerSpy.count(),1); + QTRY_COMPARE(footerSpy.count(),1); + delete canvas; } -- cgit v1.2.1 From 939375996496a55a1bb424d6a328f47d2224ed51 Mon Sep 17 00:00:00 2001 From: Joona Petrell Date: Thu, 3 Jun 2010 16:27:47 +1000 Subject: Improve input panel handling in declarative demos and examples Task-number: QTBUG-11157 Reviewed-by: Warwick Allison --- .../declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp | 6 ------ .../declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp | 6 ------ 2 files changed, 12 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp index fbab30e7cf..474eb3f4ce 100644 --- a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp +++ b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp @@ -956,12 +956,6 @@ void tst_qdeclarativetextedit::openInputPanelOnFocus() edit.setFocusOnPress(true); QCOMPARE(focusOnPressSpy.count(),2); - // 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, false); diff --git a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp index 3cb4da0052..c1c663444b 100644 --- a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp +++ b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp @@ -902,12 +902,6 @@ void tst_qdeclarativetextinput::openInputPanelOnFocus() input.setFocusOnPress(true); QCOMPARE(focusOnPressSpy.count(),2); - // 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, false); -- cgit v1.2.1 From cd003bfcf9a05967893099e8948ba3d8f281aa7d Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Thu, 3 Jun 2010 11:03:14 +0200 Subject: QString: Fix severals bugs when comparing with QStringRef the internal ucstricmp and ucstrcmp contains different bugs if the strings are not 0-terminated, as it is with QStringRef. - in ucstricmp, even if the pointer are the same, the lenght could be different - we used to deference the 'end' pointer, that would be 0 if the string ends with 0, but we cannot do that in the general case Task-number: QTBUG-10404 Reviewed-by: Denis --- tests/auto/qstring/tst_qstring.cpp | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qstring/tst_qstring.cpp b/tests/auto/qstring/tst_qstring.cpp index 1bea4b77e8..c887936b4b 100644 --- a/tests/auto/qstring/tst_qstring.cpp +++ b/tests/auto/qstring/tst_qstring.cpp @@ -207,6 +207,7 @@ private slots: void repeated() const; void repeated_data() const; void task262677remove(); + void QTBUG10404_compareRef(); }; typedef QList IntList; @@ -4828,6 +4829,38 @@ void tst_QString::task262677remove() QVERIFY(driveName == QLatin1String("V:")); } +void tst_QString::QTBUG10404_compareRef() +{ + QString a = "ABCDEFGH"; + + QCOMPARE(QStringRef(&a, 1, 2).compare(QLatin1String("BC")), 0); + QVERIFY(QStringRef(&a, 1, 2).compare(QLatin1String("BCD")) < 0); + QCOMPARE(QStringRef(&a, 1, 2).compare(QLatin1String("Bc"), Qt::CaseInsensitive), 0); + QVERIFY(QStringRef(&a, 1, 2).compare(QLatin1String("bCD"), Qt::CaseInsensitive) < 0); + + QCOMPARE(QStringRef(&a, 1, 2).compare(QString::fromLatin1("BC")), 0); + QVERIFY(QStringRef(&a, 1, 2).compare(QString::fromLatin1("BCD")) < 0); + QCOMPARE(QStringRef(&a, 1, 2).compare(QString::fromLatin1("Bc"), Qt::CaseInsensitive), 0); + QVERIFY(QStringRef(&a, 1, 2).compare(QString::fromLatin1("bCD"), Qt::CaseInsensitive) < 0); + + QCOMPARE(QString::fromLatin1("BC").compare(QStringRef(&a, 1, 2)), 0); + QVERIFY(QString::fromLatin1("BCD").compare(QStringRef(&a, 1, 2)) > 0); + QCOMPARE(QString::fromLatin1("Bc").compare(QStringRef(&a, 1, 2), Qt::CaseInsensitive), 0); + QVERIFY(QString::fromLatin1("bCD").compare(QStringRef(&a, 1, 2), Qt::CaseInsensitive) > 0); + + QCOMPARE(QStringRef(&a, 1, 2).compare(QStringRef(&a, 1, 2)), 0); + QVERIFY(QStringRef(&a, 1, 2).compare(QStringRef(&a, 1, 3)) < 0); + QCOMPARE(QStringRef(&a, 1, 2).compare(QStringRef(&a, 1, 2), Qt::CaseInsensitive), 0); + QVERIFY(QStringRef(&a, 1, 2).compare(QStringRef(&a, 1, 3), Qt::CaseInsensitive) < 0); + + QString a2 = "ABCDEFGh"; + QCOMPARE(QStringRef(&a2, 1, 2).compare(QStringRef(&a, 1, 2)), 0); + QVERIFY(QStringRef(&a2, 1, 2).compare(QStringRef(&a, 1, 3)) < 0); + QCOMPARE(QStringRef(&a2, 1, 2).compare(QStringRef(&a, 1, 2), Qt::CaseInsensitive), 0); + QVERIFY(QStringRef(&a2, 1, 2).compare(QStringRef(&a, 1, 3), Qt::CaseInsensitive) < 0); +} + + QTEST_APPLESS_MAIN(tst_QString) -- cgit v1.2.1 From a039a3a53d0a07b04e3b30ba2a73150ea5d2522a Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Thu, 3 Jun 2010 16:07:55 +0200 Subject: tst_qgraphicsitem: stabilize on X11 --- tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'tests/auto') diff --git a/tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp b/tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp index 5547b02820..fe68c8e400 100644 --- a/tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp +++ b/tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp @@ -7584,6 +7584,7 @@ void tst_QGraphicsItem::itemUsesExtendedStyleOption() scene.addItem(rect); rect->setPos(200, 200); QGraphicsView view(&scene); + view.setWindowFlags(Qt::X11BypassWindowManagerHint); rect->startTrack = false; view.show(); QTest::qWaitForWindowShown(&view); -- cgit v1.2.1 From 482159bddec1736a8854dc2db1b75cf856d00255 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Thu, 3 Jun 2010 18:03:52 +0200 Subject: don't use qWarning() - or even qFatal()! - gratuitously. Task-number: QTBUG-8044 --- .../linguist/lupdate/testdata/good/lacksqobject/expectedoutput.txt | 4 ---- .../auto/linguist/lupdate/testdata/good/parsecpp2/expectedoutput.txt | 4 ---- 2 files changed, 8 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/linguist/lupdate/testdata/good/lacksqobject/expectedoutput.txt b/tests/auto/linguist/lupdate/testdata/good/lacksqobject/expectedoutput.txt index 72ec3c598c..f6fc400360 100644 --- a/tests/auto/linguist/lupdate/testdata/good/lacksqobject/expectedoutput.txt +++ b/tests/auto/linguist/lupdate/testdata/good/lacksqobject/expectedoutput.txt @@ -1,8 +1,4 @@ .*/lupdate/testdata/good/lacksqobject/main.cpp:58: Class 'B' lacks Q_OBJECT macro - .*/lupdate/testdata/good/lacksqobject/main.cpp:65: Class 'C' lacks Q_OBJECT macro - .*/lupdate/testdata/good/lacksqobject/main.cpp:78: Class 'nsB::B' lacks Q_OBJECT macro - .*/lupdate/testdata/good/lacksqobject/main.cpp:84: Class 'nsB::C' lacks Q_OBJECT macro - diff --git a/tests/auto/linguist/lupdate/testdata/good/parsecpp2/expectedoutput.txt b/tests/auto/linguist/lupdate/testdata/good/parsecpp2/expectedoutput.txt index e3543c958d..195c0e65c5 100644 --- a/tests/auto/linguist/lupdate/testdata/good/parsecpp2/expectedoutput.txt +++ b/tests/auto/linguist/lupdate/testdata/good/parsecpp2/expectedoutput.txt @@ -1,8 +1,4 @@ .*/lupdate/testdata/good/parsecpp2/main.cpp:51: Excess closing brace .* - .*/lupdate/testdata/good/parsecpp2/main.cpp:55: Excess closing brace .* - .*/lupdate/testdata/good/parsecpp2/main.cpp:61: Excess closing brace .* - .*/lupdate/testdata/good/parsecpp2/main.cpp:65: Excess closing brace .* - -- cgit v1.2.1 From 21bd54d5cf754ca5a5928cbd3c2a0ab17e64f633 Mon Sep 17 00:00:00 2001 From: Rohan McGovern Date: Fri, 4 Jun 2010 11:58:56 +1000 Subject: Skip tst_maketestselftest::make_check by default on Windows nmake and checktest are too slow on Windows for this test to be enabled by default. Set RUN_SLOW_TESTS=1 to run the test manually. --- tests/auto/maketestselftest/tst_maketestselftest.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/maketestselftest/tst_maketestselftest.cpp b/tests/auto/maketestselftest/tst_maketestselftest.cpp index c3cbf7681b..3d1bbed310 100644 --- a/tests/auto/maketestselftest/tst_maketestselftest.cpp +++ b/tests/auto/maketestselftest/tst_maketestselftest.cpp @@ -458,6 +458,9 @@ void tst_MakeTestSelfTest::make_check() QString checktest(SRCDIR "/checktest/checktest"); #ifdef Q_OS_WIN32 + if (qgetenv("RUN_SLOW_TESTS").isEmpty()) { + QSKIP("This test is too slow to run by default on Windows. Set RUN_SLOW_TESTS=1 to run it.", SkipAll); + } checktest.replace("/", "\\"); checktest += ".exe"; #endif -- cgit v1.2.1 From ecff296323a81059810a91709f502921bc9277c2 Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Fri, 4 Jun 2010 11:22:28 +1000 Subject: Revert to Portrait/Landscape terminology for Orientation enum, with additional PortraitInverted and LandscapeInverted values. TopUp etc. only indicates rotation which makes it difficult to resize the window according to whether the device is in Portrait or Landscape orientation. --- .../qdeclarativeviewer/data/orientation.qml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeviewer/data/orientation.qml b/tests/auto/declarative/qdeclarativeviewer/data/orientation.qml index be911a3698..57db82db22 100644 --- a/tests/auto/declarative/qdeclarativeviewer/data/orientation.qml +++ b/tests/auto/declarative/qdeclarativeviewer/data/orientation.qml @@ -1,18 +1,18 @@ import Qt 4.7 Rectangle { color: "black" - width: (runtime.orientation == Orientation.RightUp || runtime.orientation == Orientation.LeftUp) ? 300 : 200 - height: (runtime.orientation == Orientation.RightUp || runtime.orientation == Orientation.LeftUp) ? 200 : 300 + width: (runtime.orientation == Orientation.Landscape || runtime.orientation == Orientation.LandscapeInverted) ? 300 : 200 + height: (runtime.orientation == Orientation.Landscape || runtime.orientation == Orientation.LandscapeInverted) ? 200 : 300 Text { text: { - if (runtime.orientation == Orientation.TopUp) - return "TopUp" - if (runtime.orientation == Orientation.TopDown) - return "TopDown" - if (runtime.orientation == Orientation.LeftUp) - return "LeftUp" - if (runtime.orientation == Orientation.RightUp) - return "RightUp" + if (runtime.orientation == Orientation.Portrait) + return "Portrait" + if (runtime.orientation == Orientation.PortraitInverted) + return "PortraitInverted" + if (runtime.orientation == Orientation.Landscape) + return "Landscape" + if (runtime.orientation == Orientation.LandscapeInverted) + return "LandscapeInverted" } color: "white" } -- cgit v1.2.1 From 51fa7df978d71a366c95c732d6a8c2576690d63a Mon Sep 17 00:00:00 2001 From: David Faure Date: Sat, 5 Jun 2010 00:06:15 +0200 Subject: Add convenience constructor to QTextOption::Tab Merge-request: 1734 Reviewed-by: Simon Hausmann --- tests/auto/qtextformat/tst_qtextformat.cpp | 5 +---- tests/auto/qtextlayout/tst_qtextlayout.cpp | 9 ++------- tests/auto/qtextodfwriter/tst_qtextodfwriter.cpp | 9 ++------- 3 files changed, 5 insertions(+), 18 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qtextformat/tst_qtextformat.cpp b/tests/auto/qtextformat/tst_qtextformat.cpp index ee1f4b5877..9b71481709 100644 --- a/tests/auto/qtextformat/tst_qtextformat.cpp +++ b/tests/auto/qtextformat/tst_qtextformat.cpp @@ -308,10 +308,7 @@ void tst_QTextFormat::getSetTabs() format.setTabPositions(tabs); Comparator c2(tabs, format.tabPositions()); - QTextOption::Tab tab2; - tab2.position = 3456; - tab2.type = QTextOption::RightTab; - tab2.delimiter = QChar('x'); + QTextOption::Tab tab2(3456, QTextOption::RightTab, QChar('x')); tabs.append(tab2); format.setTabPositions(tabs); Comparator c3(tabs, format.tabPositions()); diff --git a/tests/auto/qtextlayout/tst_qtextlayout.cpp b/tests/auto/qtextlayout/tst_qtextlayout.cpp index 1a5f493a01..a631f3d282 100644 --- a/tests/auto/qtextlayout/tst_qtextlayout.cpp +++ b/tests/auto/qtextlayout/tst_qtextlayout.cpp @@ -980,9 +980,7 @@ void tst_QTextLayout::testCenteredTab() // test if centering the tab works. We expect the center of 'Bar.' to be at the tab point. QTextOption option = layout.textOption(); QList tabs; - QTextOption::Tab tab; - tab.type = QTextOption::CenterTab; - tab.position = 150; + QTextOption::Tab tab(150, QTextOption::CenterTab); tabs.append(tab); option.setTabs(tabs); layout.setTextOption(option); @@ -1002,10 +1000,7 @@ void tst_QTextLayout::testDelimiterTab() // try the different delimiter characters to see if the alignment works there. QTextOption option = layout.textOption(); QList tabs; - QTextOption::Tab tab; - tab.type = QTextOption::DelimiterTab; - tab.delimiter = QChar('.'); - tab.position = 100; + QTextOption::Tab tab(100, QTextOption::DelimiterTab, QChar('.')); tabs.append(tab); option.setTabs(tabs); layout.setTextOption(option); diff --git a/tests/auto/qtextodfwriter/tst_qtextodfwriter.cpp b/tests/auto/qtextodfwriter/tst_qtextodfwriter.cpp index 64c42bbee3..a463d86031 100644 --- a/tests/auto/qtextodfwriter/tst_qtextodfwriter.cpp +++ b/tests/auto/qtextodfwriter/tst_qtextodfwriter.cpp @@ -198,14 +198,9 @@ void tst_QTextOdfWriter::testWriteStyle2() { QTextBlockFormat bf; // = cursor.blockFormat(); QList tabs; - QTextOption::Tab tab1; - tab1.position = 40; - tab1.type = QTextOption::RightTab; + QTextOption::Tab tab1(40, QTextOption::RightTab); tabs << tab1; - QTextOption::Tab tab2; - tab2.position = 80; - tab2.type = QTextOption::DelimiterTab; - tab2.delimiter = 'o'; + QTextOption::Tab tab2(80, QTextOption::DelimiterTab, 'o'); tabs << tab2; bf.setTabPositions(tabs); -- cgit v1.2.1 From 22126ec530d07c7ba80f90812c9d6128b2d4a56f Mon Sep 17 00:00:00 2001 From: Joona Petrell Date: Mon, 7 Jun 2010 13:03:05 +1000 Subject: Fix regression in input panel autotests --- .../declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp | 7 ++++++- .../qdeclarativetextinput/tst_qdeclarativetextinput.cpp | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp index 474eb3f4ce..9e5285f175 100644 --- a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp +++ b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp @@ -956,7 +956,12 @@ void tst_qdeclarativetextedit::openInputPanelOnFocus() edit.setFocusOnPress(true); QCOMPARE(focusOnPressSpy.count(),2); - // and input panel should not open if focus has already been set + edit.setFocus(true); + QCOMPARE(ic.openInputPanelReceived, true); + QCOMPARE(ic.closeInputPanelReceived, false); + ic.openInputPanelReceived = false; + + // input panel should not open if focus has already been set edit.setFocus(true); QCOMPARE(ic.openInputPanelReceived, false); QCOMPARE(ic.closeInputPanelReceived, false); diff --git a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp index c1c663444b..370ecfbcf4 100644 --- a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp +++ b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp @@ -902,7 +902,12 @@ void tst_qdeclarativetextinput::openInputPanelOnFocus() input.setFocusOnPress(true); QCOMPARE(focusOnPressSpy.count(),2); - // and input panel should not open if focus has already been set + input.setFocus(true); + QCOMPARE(ic.openInputPanelReceived, true); + QCOMPARE(ic.closeInputPanelReceived, false); + ic.openInputPanelReceived = false; + + // input panel should not open if focus has already been set input.setFocus(true); QCOMPARE(ic.openInputPanelReceived, false); QCOMPARE(ic.closeInputPanelReceived, false); -- cgit v1.2.1 From 0619c12bfee40826034dbc31f9d398182a3aa49f Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Mon, 7 Jun 2010 14:44:06 +1000 Subject: Ensure state operations assigned to the default state are triggered when returning to that state. Task-number: QTBUG-11228 --- .../qdeclarativestates/data/returnToBase.qml | 21 +++++++++++++++++++++ .../qdeclarativestates/tst_qdeclarativestates.cpp | 21 +++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativestates/data/returnToBase.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativestates/data/returnToBase.qml b/tests/auto/declarative/qdeclarativestates/data/returnToBase.qml new file mode 100644 index 0000000000..e342331d7c --- /dev/null +++ b/tests/auto/declarative/qdeclarativestates/data/returnToBase.qml @@ -0,0 +1,21 @@ +import Qt 4.7 + +Rectangle { + id: theRect + property bool triggerState: false + property string stateString: "" + states: [ State { + when: triggerState + PropertyChanges { + target: theRect + stateString: "inState" + } + }, + State { + name: "" + PropertyChanges { + target: theRect + stateString: "originalState" + } + }] +} diff --git a/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp b/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp index ea074a4882..055a34c8a3 100644 --- a/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp +++ b/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp @@ -112,6 +112,7 @@ private slots: void whenOrdering(); void urlResolution(); void unnamedWhen(); + void returnToBase(); }; void tst_qdeclarativestates::initTestCase() @@ -1085,6 +1086,26 @@ void tst_qdeclarativestates::unnamedWhen() QCOMPARE(rect->property("stateString").toString(), QLatin1String("")); } +void tst_qdeclarativestates::returnToBase() +{ + QDeclarativeEngine engine; + + QDeclarativeComponent c(&engine, SRCDIR "/data/returnToBase.qml"); + QDeclarativeRectangle *rect = qobject_cast(c.create()); + QVERIFY(rect != 0); + QDeclarativeItemPrivate *rectPrivate = QDeclarativeItemPrivate::get(rect); + + QCOMPARE(rectPrivate->state(), QLatin1String("")); + QCOMPARE(rect->property("stateString").toString(), QLatin1String("")); + rect->setProperty("triggerState", true); + QCOMPARE(rectPrivate->state(), QLatin1String("anonymousState1")); + QCOMPARE(rect->property("stateString").toString(), QLatin1String("inState")); + rect->setProperty("triggerState", false); + QCOMPARE(rectPrivate->state(), QLatin1String("")); + QCOMPARE(rect->property("stateString").toString(), QLatin1String("originalState")); +} + + QTEST_MAIN(tst_qdeclarativestates) #include "tst_qdeclarativestates.moc" -- cgit v1.2.1 From f410fb06c584fa0e893ab6066ea8b03a5323fe07 Mon Sep 17 00:00:00 2001 From: Joona Petrell Date: Mon, 7 Jun 2010 14:52:20 +1000 Subject: Remove unnecessary CloseSoftwareInputPanel events after TextEdit or TextInput has lost focus Task-number: Reviewed-by: Warwick Allison --- .../tst_qdeclarativetextedit.cpp | 73 ++++++++++++++-------- .../tst_qdeclarativetextinput.cpp | 72 +++++++++++++-------- 2 files changed, 93 insertions(+), 52 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp index 9e5285f175..053c9ef562 100644 --- a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp +++ b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp @@ -862,6 +862,7 @@ void tst_qdeclarativetextedit::openInputPanelOnClick() edit.setFocus(false); edit.setFocus(true); edit.setFocus(false); + QApplication::processEvents(); QCOMPARE(ic.openInputPanelReceived, false); QCOMPARE(ic.closeInputPanelReceived, false); } @@ -887,6 +888,7 @@ void tst_qdeclarativetextedit::openInputPanelOnFocus() QDeclarativeTextEditPrivate *editPrivate = static_cast(pri); editPrivate->showInputPanelOnFocus = true; + // test default values QVERIFY(edit.focusOnPress()); QCOMPARE(ic.openInputPanelReceived, false); QCOMPARE(ic.closeInputPanelReceived, false); @@ -896,75 +898,94 @@ void tst_qdeclarativetextedit::openInputPanelOnFocus() QApplication::processEvents(); QVERIFY(edit.hasFocus()); 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; - // Even with focus already gained, user needs - // to be able to open panel by pressing on the editor + // if already focused, input panel can be opened on press + QVERIFY(edit.hasFocus()); 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); + // input method should stay enabled if focus + // is lost to an item that also accepts inputs + QDeclarativeTextEdit anotherEdit; + scene.addItem(&anotherEdit); + anotherEdit.setFocus(true); + QApplication::processEvents(); + QCOMPARE(ic.openInputPanelReceived, true); + ic.openInputPanelReceived = false; + QCOMPARE(view.inputContext(), &ic); + QVERIFY(view.testAttribute(Qt::WA_InputMethodEnabled)); + + // input method should be disabled if focus + // is lost to an item that doesn't accept inputs + QDeclarativeItem item; + scene.addItem(&item); + item.setFocus(true); QApplication::processEvents(); QCOMPARE(ic.openInputPanelReceived, false); - QCOMPARE(ic.closeInputPanelReceived, true); - ic.closeInputPanelReceived = false; + QVERIFY(view.inputContext() == 0); + QVERIFY(!view.testAttribute(Qt::WA_InputMethodEnabled)); - // no automatic input panel events if focusOnPress is false + // no automatic input panel events should + // be sent if focusOnPress is false + edit.setFocusOnPress(false); + QCOMPARE(focusOnPressSpy.count(),1); edit.setFocusOnPress(false); QCOMPARE(focusOnPressSpy.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); + QTest::mousePress(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(edit.scenePos())); + QTest::mouseRelease(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(edit.scenePos())); + QApplication::processEvents(); QCOMPARE(ic.openInputPanelReceived, false); QCOMPARE(ic.closeInputPanelReceived, false); - edit.setFocusOnPress(false); - QCOMPARE(focusOnPressSpy.count(),1); - - // one show input panel event when openSoftwareInputPanel is called + // one show input panel event should + // be set 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 + // one close input panel event should + // be sent when closeSoftwareInputPanel is called edit.closeSoftwareInputPanel(); QCOMPARE(ic.openInputPanelReceived, false); QCOMPARE(ic.closeInputPanelReceived, true); - ic.openInputPanelReceived = false; + ic.closeInputPanelReceived = false; // set focusOnPress back to true edit.setFocusOnPress(true); QCOMPARE(focusOnPressSpy.count(),2); + edit.setFocusOnPress(true); + QCOMPARE(focusOnPressSpy.count(),2); edit.setFocus(false); + QApplication::processEvents(); QCOMPARE(ic.openInputPanelReceived, false); - QCOMPARE(ic.closeInputPanelReceived, true); + QCOMPARE(ic.closeInputPanelReceived, false); ic.closeInputPanelReceived = false; - edit.setFocusOnPress(true); - QCOMPARE(focusOnPressSpy.count(),2); - + // input panel should not re-open + // if focus has already been set edit.setFocus(true); QCOMPARE(ic.openInputPanelReceived, true); - QCOMPARE(ic.closeInputPanelReceived, false); ic.openInputPanelReceived = false; - - // input panel should not open if focus has already been set edit.setFocus(true); QCOMPARE(ic.openInputPanelReceived, false); - QCOMPARE(ic.closeInputPanelReceived, false); + + // input method should be disabled + // if TextEdit loses focus + edit.setFocus(false); + QApplication::processEvents(); + QVERIFY(view.inputContext() == 0); + QVERIFY(!view.testAttribute(Qt::WA_InputMethodEnabled)); } void tst_qdeclarativetextedit::geometrySignals() diff --git a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp index 370ecfbcf4..c9de0aab76 100644 --- a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp +++ b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp @@ -833,6 +833,7 @@ void tst_qdeclarativetextinput::openInputPanelOnFocus() QDeclarativeTextInputPrivate *inputPrivate = static_cast(pri); inputPrivate->showInputPanelOnFocus = true; + // test default values QVERIFY(input.focusOnPress()); QCOMPARE(ic.openInputPanelReceived, false); QCOMPARE(ic.closeInputPanelReceived, false); @@ -842,75 +843,94 @@ void tst_qdeclarativetextinput::openInputPanelOnFocus() QApplication::processEvents(); QVERIFY(input.hasFocus()); 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; - // Even with focus already gained, user needs - // to be able to open panel by pressing on the editor + // if already focused, input panel can be opened on press + QVERIFY(input.hasFocus()); 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); + // input method should stay enabled if focus + // is lost to an item that also accepts inputs + QDeclarativeTextInput anotherInput; + scene.addItem(&anotherInput); + anotherInput.setFocus(true); + QApplication::processEvents(); + QCOMPARE(ic.openInputPanelReceived, true); + ic.openInputPanelReceived = false; + QCOMPARE(view.inputContext(), &ic); + QVERIFY(view.testAttribute(Qt::WA_InputMethodEnabled)); + + // input method should be disabled if focus + // is lost to an item that doesn't accept inputs + QDeclarativeItem item; + scene.addItem(&item); + item.setFocus(true); QApplication::processEvents(); QCOMPARE(ic.openInputPanelReceived, false); - QCOMPARE(ic.closeInputPanelReceived, true); - ic.closeInputPanelReceived = false; + QVERIFY(view.inputContext() == 0); + QVERIFY(!view.testAttribute(Qt::WA_InputMethodEnabled)); - // no automatic input panel events if focusOnPress is false + // no automatic input panel events should + // be sent if focusOnPress is false + input.setFocusOnPress(false); + QCOMPARE(focusOnPressSpy.count(),1); input.setFocusOnPress(false); QCOMPARE(focusOnPressSpy.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); + QTest::mousePress(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(input.scenePos())); + QTest::mouseRelease(view.viewport(), Qt::LeftButton, 0, view.mapFromScene(input.scenePos())); + QApplication::processEvents(); QCOMPARE(ic.openInputPanelReceived, false); QCOMPARE(ic.closeInputPanelReceived, false); - input.setFocusOnPress(false); - QCOMPARE(focusOnPressSpy.count(),1); - - // one show input panel event when openSoftwareInputPanel is called + // one show input panel event should + // be set 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 + // one close input panel event should + // be sent when closeSoftwareInputPanel is called input.closeSoftwareInputPanel(); QCOMPARE(ic.openInputPanelReceived, false); QCOMPARE(ic.closeInputPanelReceived, true); - ic.openInputPanelReceived = false; + ic.closeInputPanelReceived = false; // set focusOnPress back to true input.setFocusOnPress(true); QCOMPARE(focusOnPressSpy.count(),2); + input.setFocusOnPress(true); + QCOMPARE(focusOnPressSpy.count(),2); input.setFocus(false); + QApplication::processEvents(); QCOMPARE(ic.openInputPanelReceived, false); - QCOMPARE(ic.closeInputPanelReceived, true); + QCOMPARE(ic.closeInputPanelReceived, false); ic.closeInputPanelReceived = false; - input.setFocusOnPress(true); - QCOMPARE(focusOnPressSpy.count(),2); - + // input panel should not re-open + // if focus has already been set input.setFocus(true); QCOMPARE(ic.openInputPanelReceived, true); - QCOMPARE(ic.closeInputPanelReceived, false); ic.openInputPanelReceived = false; - - // input panel should not open if focus has already been set input.setFocus(true); QCOMPARE(ic.openInputPanelReceived, false); - QCOMPARE(ic.closeInputPanelReceived, false); + + // input method should be disabled + // if TextEdit loses focus + input.setFocus(false); + QApplication::processEvents(); + QVERIFY(view.inputContext() == 0); + QVERIFY(!view.testAttribute(Qt::WA_InputMethodEnabled)); } class MyTextInput : public QDeclarativeTextInput -- cgit v1.2.1 From a4f4fff60d20e509cb57bd0dab30533e1e299aee Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Mon, 7 Jun 2010 15:59:11 +1000 Subject: Keep reported point/pixel size in sync. This allows you to, for example, bind to a Text's font.pixelSize, even if one was never explicitly set. Task-number: QTBUG-11111 --- .../declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp b/tests/auto/declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp index 53fd68c453..5e46fab599 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp +++ b/tests/auto/declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp @@ -46,6 +46,8 @@ #include #include "testtypes.h" +extern int qt_defaultDpi(); + class tst_qdeclarativevaluetypes : public QObject { Q_OBJECT @@ -464,7 +466,7 @@ void tst_qdeclarativevaluetypes::font() QCOMPARE(object->property("f_overline").toBool(), object->font().overline()); QCOMPARE(object->property("f_strikeout").toBool(), object->font().strikeOut()); QCOMPARE(object->property("f_pointSize").toDouble(), object->font().pointSizeF()); - QCOMPARE(object->property("f_pixelSize").toInt(), object->font().pixelSize()); + QCOMPARE(object->property("f_pixelSize").toInt(), int((object->font().pointSizeF() * qt_defaultDpi()) / qreal(72.))); QCOMPARE(object->property("f_capitalization").toInt(), (int)object->font().capitalization()); QCOMPARE(object->property("f_letterSpacing").toDouble(), object->font().letterSpacing()); QCOMPARE(object->property("f_wordSpacing").toDouble(), object->font().wordSpacing()); -- cgit v1.2.1 From 90e009e9e273a4fea5166007e4c2b0638c6588cd Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Mon, 7 Jun 2010 11:41:10 +0200 Subject: Fix QTransform::map(const QPainterPath &) not working with paths that have only one element Replaced the isEmpty() check for the shortcut in map() with elementCount() == 0 Task-number: QTBUG-11264 Reviewed-by: Samuel --- tests/auto/qtransform/tst_qtransform.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qtransform/tst_qtransform.cpp b/tests/auto/qtransform/tst_qtransform.cpp index a3ded8eda5..c784b3a9ed 100644 --- a/tests/auto/qtransform/tst_qtransform.cpp +++ b/tests/auto/qtransform/tst_qtransform.cpp @@ -85,6 +85,7 @@ private slots: void inverted(); void projectivePathMapping(); void mapInt(); + void mapPathWithPoint(); private: void mapping_data(); @@ -793,6 +794,13 @@ void tst_QTransform::mapInt() QCOMPARE(y, 10); } +void tst_QTransform::mapPathWithPoint() +{ + QPainterPath p(QPointF(10, 10)); + p = QTransform::fromTranslate(10, 10).map(p); + QCOMPARE(p.currentPosition(), QPointF(20, 20)); +} + QTEST_APPLESS_MAIN(tst_QTransform) -- cgit v1.2.1 From 5f9fdaa5c82fa4529ad4352da6855a19be83c079 Mon Sep 17 00:00:00 2001 From: Peter Hartmann Date: Mon, 7 Jun 2010 15:18:50 +0200 Subject: XQuery test suite (and others): remove p4 dependency --- tests/auto/xmlpatternsxqts/tst_suitetest.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/xmlpatternsxqts/tst_suitetest.cpp b/tests/auto/xmlpatternsxqts/tst_suitetest.cpp index ec63858919..6e10e3fb8a 100644 --- a/tests/auto/xmlpatternsxqts/tst_suitetest.cpp +++ b/tests/auto/xmlpatternsxqts/tst_suitetest.cpp @@ -141,8 +141,6 @@ void tst_SuiteTest::checkTestSuiteResult() const /* Passed to ResultThreader so it knows what kind of file it is handling. */ ResultThreader::Type type = ResultThreader::Baseline; - QProcess::execute(QLatin1String("p4 edit ") + m_existingBaseline); - for(QFileInfoList::const_iterator it(list.constBegin()); it != end; ++it) { QFileInfo i(*it); @@ -167,8 +165,6 @@ void tst_SuiteTest::checkTestSuiteResult() const const int exitCode = eventLoop.exec(); - QProcess::execute(QLatin1String("p4 revert -a ") + m_existingBaseline); - QCOMPARE(exitCode, 0); } -- cgit v1.2.1 From d0a27b157c6a5d3cf4b75c6b1b71de399733f553 Mon Sep 17 00:00:00 2001 From: Denis Dzyubenko Date: Fri, 4 Jun 2010 10:28:11 +0200 Subject: Fixed GestureOverride event delivery in GraphicsView. GestureOverride event was not respected when delivering to items in GraphicsView. Task-number: QTBUG-10745 Reviewed-by: Thomas Zander --- tests/auto/gestures/tst_gestures.cpp | 66 ++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/gestures/tst_gestures.cpp b/tests/auto/gestures/tst_gestures.cpp index 4a9f1d1be7..644a9b3271 100644 --- a/tests/auto/gestures/tst_gestures.cpp +++ b/tests/auto/gestures/tst_gestures.cpp @@ -333,6 +333,7 @@ private slots: void gestureOverChild(); void multipleWidgetOnlyGestureInTree(); void conflictingGestures(); + void conflictingGesturesInGraphicsView(); void finishedWithoutStarted(); void unknownGesture(); void graphicsItemGesture(); @@ -2069,5 +2070,70 @@ void tst_Gestures::testQGestureRecognizerCleanup() delete w; } +void tst_Gestures::conflictingGesturesInGraphicsView() +{ + QGraphicsScene scene; + GraphicsView view(&scene); + view.setWindowFlags(Qt::X11BypassWindowManagerHint); + + GestureItem *item1 = new GestureItem("item1"); + item1->grabGesture(CustomGesture::GestureType); + item1->size = QRectF(0, 0, 100, 100); + item1->setZValue(2); + scene.addItem(item1); + + GestureItem *item2 = new GestureItem("item2"); + item2->grabGesture(CustomGesture::GestureType); + item2->size = QRectF(0, 0, 100, 100); + item2->setZValue(5); + scene.addItem(item2); + + view.show(); + QTest::qWaitForWindowShown(&view); + view.ensureVisible(scene.sceneRect()); + + static const int TotalGestureEventsCount = CustomGesture::SerialFinishedThreshold - CustomGesture::SerialStartedThreshold + 1; + + CustomEvent event; + + // nobody accepts override + item1->acceptGestureOverride = false; + item2->acceptGestureOverride = false; + event.hotSpot = mapToGlobal(item2->boundingRect().center(), item2, &view); + event.hasHotSpot = true; + sendCustomGesture(&event, item2, &scene); + QCOMPARE(item2->gestureOverrideEventsReceived, 1); + QCOMPARE(item2->gestureEventsReceived, TotalGestureEventsCount); + QCOMPARE(item1->gestureOverrideEventsReceived, 1); + QCOMPARE(item1->gestureEventsReceived, 0); + + item1->reset(); item2->reset(); + + // the original target accepts override + item1->acceptGestureOverride = false; + item2->acceptGestureOverride = true; + event.hotSpot = mapToGlobal(item2->boundingRect().center(), item2, &view); + event.hasHotSpot = true; + sendCustomGesture(&event, item2, &scene); + QCOMPARE(item2->gestureOverrideEventsReceived, 1); + QCOMPARE(item2->gestureEventsReceived, TotalGestureEventsCount); + QCOMPARE(item1->gestureOverrideEventsReceived, 0); + QCOMPARE(item1->gestureEventsReceived, 0); + + item1->reset(); item2->reset(); + + // the item behind accepts override + item1->acceptGestureOverride = true; + item2->acceptGestureOverride = false; + event.hotSpot = mapToGlobal(item2->boundingRect().center(), item2, &view); + event.hasHotSpot = true; + sendCustomGesture(&event, item2, &scene); + + QCOMPARE(item2->gestureOverrideEventsReceived, 1); + QCOMPARE(item2->gestureEventsReceived, 0); + QCOMPARE(item1->gestureOverrideEventsReceived, 1); + QCOMPARE(item1->gestureEventsReceived, TotalGestureEventsCount); +} + QTEST_MAIN(tst_Gestures) #include "tst_gestures.moc" -- cgit v1.2.1 From 0c0f22ec0e36d7001c8195dcc6e390a37118e33e Mon Sep 17 00:00:00 2001 From: Michael Hasselmann Date: Mon, 7 Jun 2010 17:18:54 +0200 Subject: Fix QApplication/QWidget to really take ownership of input contexts * src/gui/kernel/[qapplication|qwidget].cpp, tests/auto/qapplication/tst_[qapplication|qwidget].cpp (setInputContext): The documentation for [QApplication|QWidget]::setInputContext claims that the [QApplication|QWidget] instance would take ownership. This commit fixes the setter to also reparent the input context. Furthermore, the crappy test for this setter was improved. Reviewed-by: Denis Dzyubenko --- tests/auto/qapplication/tst_qapplication.cpp | 19 +++++++++++++------ tests/auto/qwidget/tst_qwidget.cpp | 6 +++++- 2 files changed, 18 insertions(+), 7 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qapplication/tst_qapplication.cpp b/tests/auto/qapplication/tst_qapplication.cpp index 43fbba104a..1a38070dd5 100644 --- a/tests/auto/qapplication/tst_qapplication.cpp +++ b/tests/auto/qapplication/tst_qapplication.cpp @@ -189,15 +189,22 @@ void tst_QApplication::getSetCheck() { int argc = 0; QApplication obj1(argc, 0, QApplication::GuiServer); - // QInputContext * QApplication::inputContext() - // void QApplication::setInputContext(QInputContext *) MyInputContext *var1 = new MyInputContext; + + // QApplication takes ownership, so check for reparenting: obj1.setInputContext(var1); - QCOMPARE((QInputContext *)var1, obj1.inputContext()); + QCOMPARE(var1->parent(), static_cast(&obj1)); + + // Test for self-assignment: + obj1.setInputContext(obj1.inputContext()); + QVERIFY(obj1.inputContext()); + QCOMPARE(static_cast(var1), obj1.inputContext()); + + // Resetting the input context to 0 is not allowed: QTest::ignoreMessage(QtWarningMsg, "QApplication::setInputContext: called with 0 input context"); - obj1.setInputContext((QInputContext *)0); - QCOMPARE((QInputContext *)var1, obj1.inputContext()); - // delete var1; // No delete, since QApplication takes ownership + obj1.setInputContext(0); + + QCOMPARE(static_cast(var1), obj1.inputContext()); } class CloseEventTestWindow : public QWidget diff --git a/tests/auto/qwidget/tst_qwidget.cpp b/tests/auto/qwidget/tst_qwidget.cpp index 5d47aedcad..83a9e3a7e6 100644 --- a/tests/auto/qwidget/tst_qwidget.cpp +++ b/tests/auto/qwidget/tst_qwidget.cpp @@ -605,10 +605,14 @@ void tst_QWidget::getSetCheck() obj1.setAttribute(Qt::WA_InputMethodEnabled); obj1.setInputContext(var13); QCOMPARE(static_cast(var13), obj1.inputContext()); + // QWidget takes ownership, so check parent + QCOMPARE(var13->parent(), static_cast(&obj1)); + // Check self assignment + obj1.setInputContext(obj1.inputContext()); + QCOMPARE(static_cast(var13), obj1.inputContext()); obj1.setInputContext((QInputContext *)0); QCOMPARE(qApp->inputContext(), obj1.inputContext()); QVERIFY(qApp->inputContext() != var13); - //delete var13; // No delete, since QWidget takes ownership // bool QWidget::autoFillBackground() // void QWidget::setAutoFillBackground(bool) -- cgit v1.2.1 From f343c6efac717e3a58d74614c7eb0b84ed380099 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Mon, 7 Jun 2010 19:54:51 +0200 Subject: fix translations from some header files being omitted add the containing directories of all files specified on the command line to the list of project roots. otherwise, the strings from headers which are included before being encountered on the command line will be omitted. Task-number: QTBUG-10345 --- .../lupdate/testdata/good/cmdline_order/a.h | 42 +++++++++++++++++++++ .../lupdate/testdata/good/cmdline_order/b.h | 44 ++++++++++++++++++++++ .../lupdate/testdata/good/cmdline_order/lupdatecmd | 1 + .../testdata/good/cmdline_order/project.ts.result | 20 ++++++++++ 4 files changed, 107 insertions(+) create mode 100644 tests/auto/linguist/lupdate/testdata/good/cmdline_order/a.h create mode 100644 tests/auto/linguist/lupdate/testdata/good/cmdline_order/b.h create mode 100644 tests/auto/linguist/lupdate/testdata/good/cmdline_order/lupdatecmd create mode 100644 tests/auto/linguist/lupdate/testdata/good/cmdline_order/project.ts.result (limited to 'tests/auto') diff --git a/tests/auto/linguist/lupdate/testdata/good/cmdline_order/a.h b/tests/auto/linguist/lupdate/testdata/good/cmdline_order/a.h new file mode 100644 index 0000000000..7059132958 --- /dev/null +++ b/tests/auto/linguist/lupdate/testdata/good/cmdline_order/a.h @@ -0,0 +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 test suite 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$ +** +****************************************************************************/ + +#define XX QT_TRANSLATE_NOOP("aaa", "some text") diff --git a/tests/auto/linguist/lupdate/testdata/good/cmdline_order/b.h b/tests/auto/linguist/lupdate/testdata/good/cmdline_order/b.h new file mode 100644 index 0000000000..ce3e1a2046 --- /dev/null +++ b/tests/auto/linguist/lupdate/testdata/good/cmdline_order/b.h @@ -0,0 +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 test suite 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 "a.h" + +#define YY QT_TRANSLATE_NOOP("bbb", "some text") diff --git a/tests/auto/linguist/lupdate/testdata/good/cmdline_order/lupdatecmd b/tests/auto/linguist/lupdate/testdata/good/cmdline_order/lupdatecmd new file mode 100644 index 0000000000..edd91f7e37 --- /dev/null +++ b/tests/auto/linguist/lupdate/testdata/good/cmdline_order/lupdatecmd @@ -0,0 +1 @@ +lupdate b.h a.h -ts project.ts diff --git a/tests/auto/linguist/lupdate/testdata/good/cmdline_order/project.ts.result b/tests/auto/linguist/lupdate/testdata/good/cmdline_order/project.ts.result new file mode 100644 index 0000000000..6028cbbe0b --- /dev/null +++ b/tests/auto/linguist/lupdate/testdata/good/cmdline_order/project.ts.result @@ -0,0 +1,20 @@ + + + + + aaa + + + some text + + + + + bbb + + + some text + + + + -- cgit v1.2.1 From 2350298a3ba43a61f2e88bbd85c38b046269c6b5 Mon Sep 17 00:00:00 2001 From: Rohan McGovern Date: Tue, 8 Jun 2010 09:23:28 +1000 Subject: Disabled tst_MakeTestSelfTest::make_check by default on mac. This test is too slow on our macs too. It's now disabled by default everywhere but Linux. --- tests/auto/maketestselftest/tst_maketestselftest.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/maketestselftest/tst_maketestselftest.cpp b/tests/auto/maketestselftest/tst_maketestselftest.cpp index 3d1bbed310..a9077e3200 100644 --- a/tests/auto/maketestselftest/tst_maketestselftest.cpp +++ b/tests/auto/maketestselftest/tst_maketestselftest.cpp @@ -457,10 +457,13 @@ void tst_MakeTestSelfTest::make_check() QString testsDir(SRCDIR "/.."); QString checktest(SRCDIR "/checktest/checktest"); -#ifdef Q_OS_WIN32 +#if defined(Q_OS_WIN32) || defined(Q_OS_MAC) if (qgetenv("RUN_SLOW_TESTS").isEmpty()) { - QSKIP("This test is too slow to run by default on Windows. Set RUN_SLOW_TESTS=1 to run it.", SkipAll); + QSKIP("This test is too slow to run by default on this OS. Set RUN_SLOW_TESTS=1 to run it.", SkipAll); } +#endif + +#ifdef Q_OS_WIN32 checktest.replace("/", "\\"); checktest += ".exe"; #endif -- cgit v1.2.1 From e4c7f469d1cdaf535b5e7aacaca7f96553084b79 Mon Sep 17 00:00:00 2001 From: Joona Petrell Date: Mon, 7 Jun 2010 17:04:45 +1000 Subject: Make declarative autotests compile on Symbian abld build system Task-number: Reviewed-by: Martin Jones --- tests/auto/declarative/declarative.pro | 2 +- tests/auto/declarative/examples/examples.pro | 3 +-- tests/auto/declarative/examples/tst_examples.cpp | 5 +++++ tests/auto/declarative/parserstress/parserstress.pro | 3 +-- tests/auto/declarative/parserstress/tst_parserstress.cpp | 5 +++++ .../auto/declarative/qdeclarativeanchors/qdeclarativeanchors.pro | 3 +-- .../declarative/qdeclarativeanchors/tst_qdeclarativeanchors.cpp | 5 +++++ .../qdeclarativeanimatedimage/qdeclarativeanimatedimage.pro | 3 +-- .../qdeclarativeanimatedimage/tst_qdeclarativeanimatedimage.cpp | 5 +++++ .../declarative/qdeclarativeanimations/qdeclarativeanimations.pro | 3 +-- .../qdeclarativeanimations/tst_qdeclarativeanimations.cpp | 5 +++++ .../declarative/qdeclarativebehaviors/qdeclarativebehaviors.pro | 3 +-- .../qdeclarativebehaviors/tst_qdeclarativebehaviors.cpp | 5 +++++ .../auto/declarative/qdeclarativebinding/qdeclarativebinding.pro | 4 +--- .../declarative/qdeclarativebinding/tst_qdeclarativebinding.cpp | 5 +++++ .../qdeclarativeborderimage/qdeclarativeborderimage.pro | 4 +--- .../qdeclarativeborderimage/tst_qdeclarativeborderimage.cpp | 4 ++++ .../declarative/qdeclarativecomponent/qdeclarativecomponent.pro | 4 +--- .../qdeclarativecomponent/tst_qdeclarativecomponent.cpp | 5 +++++ .../declarative/qdeclarativeconnection/qdeclarativeconnection.pro | 4 +--- .../qdeclarativeconnection/tst_qdeclarativeconnection.cpp | 5 +++++ .../auto/declarative/qdeclarativecontext/qdeclarativecontext.pro | 4 +--- .../declarative/qdeclarativecontext/tst_qdeclarativecontext.cpp | 5 +++++ tests/auto/declarative/qdeclarativedom/qdeclarativedom.pro | 3 +-- tests/auto/declarative/qdeclarativedom/tst_qdeclarativedom.cpp | 5 +++++ .../declarative/qdeclarativeecmascript/qdeclarativeecmascript.pro | 8 +++++++- .../qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp | 5 +++++ tests/auto/declarative/qdeclarativeengine/qdeclarativeengine.pro | 5 +---- .../declarative/qdeclarativeengine/tst_qdeclarativeengine.cpp | 5 +++++ tests/auto/declarative/qdeclarativeerror/qdeclarativeerror.pro | 4 +--- .../auto/declarative/qdeclarativeerror/tst_qdeclarativeerror.cpp | 5 +++++ .../declarative/qdeclarativeflickable/qdeclarativeflickable.pro | 4 +--- .../qdeclarativeflickable/tst_qdeclarativeflickable.cpp | 5 +++++ .../declarative/qdeclarativeflipable/qdeclarativeflipable.pro | 4 +--- .../declarative/qdeclarativeflipable/tst_qdeclarativeflipable.cpp | 5 +++++ .../declarative/qdeclarativefocusscope/qdeclarativefocusscope.pro | 3 +-- .../qdeclarativefocusscope/tst_qdeclarativefocusscope.cpp | 4 ++++ .../qdeclarativefolderlistmodel/qdeclarativefolderlistmodel.pro | 4 +--- .../tst_qdeclarativefolderlistmodel.cpp | 5 +++++ .../declarative/qdeclarativefontloader/qdeclarativefontloader.pro | 4 +--- .../qdeclarativefontloader/tst_qdeclarativefontloader.cpp | 5 +++++ .../declarative/qdeclarativegridview/qdeclarativegridview.pro | 4 +--- .../declarative/qdeclarativegridview/tst_qdeclarativegridview.cpp | 5 +++++ tests/auto/declarative/qdeclarativeimage/qdeclarativeimage.pro | 4 +--- .../auto/declarative/qdeclarativeimage/tst_qdeclarativeimage.cpp | 4 ++++ .../qdeclarativeimageprovider/qdeclarativeimageprovider.pro | 4 +--- .../qdeclarativeimageprovider/tst_qdeclarativeimageprovider.cpp | 5 +++++ tests/auto/declarative/qdeclarativeinfo/qdeclarativeinfo.pro | 3 +-- tests/auto/declarative/qdeclarativeinfo/tst_qdeclarativeinfo.cpp | 5 +++++ .../qdeclarativeinstruction/qdeclarativeinstruction.pro | 4 +--- .../qdeclarativeinstruction/tst_qdeclarativeinstruction.cpp | 5 +++++ tests/auto/declarative/qdeclarativeitem/qdeclarativeitem.pro | 3 +-- tests/auto/declarative/qdeclarativeitem/tst_qdeclarativeitem.cpp | 5 +++++ .../declarative/qdeclarativelanguage/qdeclarativelanguage.pro | 3 +-- .../declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp | 5 +++++ .../declarative/qdeclarativelayoutitem/qdeclarativelayoutitem.pro | 6 ++---- .../qdeclarativelayoutitem/tst_qdeclarativelayoutitem.cpp | 5 +++++ .../declarative/qdeclarativelistmodel/qdeclarativelistmodel.pro | 4 +--- .../qdeclarativelistmodel/tst_qdeclarativelistmodel.cpp | 5 +++++ .../declarative/qdeclarativelistview/qdeclarativelistview.pro | 4 +--- .../declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp | 5 +++++ tests/auto/declarative/qdeclarativeloader/qdeclarativeloader.pro | 3 +-- .../declarative/qdeclarativeloader/tst_qdeclarativeloader.cpp | 5 +++++ .../declarative/qdeclarativemetatype/qdeclarativemetatype.pro | 4 +--- .../declarative/qdeclarativemetatype/tst_qdeclarativemetatype.cpp | 5 +++++ .../qdeclarativemoduleplugin/tst_qdeclarativemoduleplugin.cpp | 5 +++++ .../qdeclarativemoduleplugin/tst_qdeclarativemoduleplugin.pro | 4 ++-- .../declarative/qdeclarativemousearea/qdeclarativemousearea.pro | 4 +--- .../qdeclarativemousearea/tst_qdeclarativemousearea.cpp | 5 +++++ .../declarative/qdeclarativeparticles/qdeclarativeparticles.pro | 4 +--- .../qdeclarativeparticles/tst_qdeclarativeparticles.cpp | 5 +++++ .../declarative/qdeclarativepathview/qdeclarativepathview.pro | 4 +--- .../declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp | 5 +++++ .../qdeclarativepixmapcache/qdeclarativepixmapcache.pro | 3 +-- .../qdeclarativepixmapcache/tst_qdeclarativepixmapcache.cpp | 5 +++++ .../qdeclarativepositioners/qdeclarativepositioners.pro | 4 +--- .../qdeclarativepositioners/tst_qdeclarativepositioners.cpp | 5 +++++ .../declarative/qdeclarativeproperty/qdeclarativeproperty.pro | 3 +-- .../declarative/qdeclarativeproperty/tst_qdeclarativeproperty.cpp | 5 +++++ tests/auto/declarative/qdeclarativeqt/qdeclarativeqt.pro | 3 +-- tests/auto/declarative/qdeclarativeqt/tst_qdeclarativeqt.cpp | 5 +++++ .../declarative/qdeclarativerepeater/qdeclarativerepeater.pro | 4 +--- .../declarative/qdeclarativerepeater/tst_qdeclarativerepeater.cpp | 5 +++++ .../qdeclarativesmoothedanimation.pro | 4 +--- .../tst_qdeclarativesmoothedanimation.cpp | 5 +++++ .../qdeclarativesmoothedfollow/qdeclarativesmoothedfollow.pro | 4 +--- .../qdeclarativesmoothedfollow/tst_qdeclarativesmoothedfollow.cpp | 5 +++++ .../qdeclarativespringfollow/qdeclarativespringfollow.pro | 4 +--- .../qdeclarativespringfollow/tst_qdeclarativespringfollow.cpp | 5 +++++ .../qdeclarativesqldatabase/qdeclarativesqldatabase.pro | 4 +--- .../qdeclarativesqldatabase/tst_qdeclarativesqldatabase.cpp | 5 +++++ tests/auto/declarative/qdeclarativestates/qdeclarativestates.pro | 4 +--- .../declarative/qdeclarativestates/tst_qdeclarativestates.cpp | 4 ++++ .../qdeclarativesystempalette/qdeclarativesystempalette.pro | 5 +---- .../qdeclarativesystempalette/tst_qdeclarativesystempalette.cpp | 5 +++++ tests/auto/declarative/qdeclarativetext/qdeclarativetext.pro | 3 +-- tests/auto/declarative/qdeclarativetext/tst_qdeclarativetext.cpp | 5 +++++ .../declarative/qdeclarativetextedit/qdeclarativetextedit.pro | 4 +--- .../declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp | 5 +++++ .../declarative/qdeclarativetextinput/qdeclarativetextinput.pro | 4 +--- .../qdeclarativetextinput/tst_qdeclarativetextinput.cpp | 5 +++++ tests/auto/declarative/qdeclarativetimer/qdeclarativetimer.pro | 4 +--- .../auto/declarative/qdeclarativetimer/tst_qdeclarativetimer.cpp | 5 +++++ .../declarative/qdeclarativevaluetypes/qdeclarativevaluetypes.pro | 3 +-- .../qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp | 5 +++++ tests/auto/declarative/qdeclarativeview/qdeclarativeview.pro | 3 +-- tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp | 5 +++++ tests/auto/declarative/qdeclarativeviewer/qdeclarativeviewer.pro | 3 +-- .../declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp | 5 +++++ .../qdeclarativevisualdatamodel/qdeclarativevisualdatamodel.pro | 3 +-- .../tst_qdeclarativevisualdatamodel.cpp | 5 +++++ .../auto/declarative/qdeclarativewebview/qdeclarativewebview.pro | 4 +--- .../declarative/qdeclarativewebview/tst_qdeclarativewebview.cpp | 5 +++++ .../qdeclarativeworkerscript/qdeclarativeworkerscript.pro | 4 +--- .../qdeclarativeworkerscript/tst_qdeclarativeworkerscript.cpp | 5 +++++ .../qdeclarativexmlhttprequest/qdeclarativexmlhttprequest.pro | 4 +--- .../qdeclarativexmlhttprequest/tst_qdeclarativexmlhttprequest.cpp | 5 +++++ .../qdeclarativexmllistmodel/qdeclarativexmllistmodel.pro | 3 +-- .../qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp | 5 +++++ tests/auto/declarative/qmlvisual/qmlvisual.pro | 4 +--- tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp | 5 +++++ 121 files changed, 365 insertions(+), 160 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/declarative.pro b/tests/auto/declarative/declarative.pro index 484fbef142..3d2dbf0081 100644 --- a/tests/auto/declarative/declarative.pro +++ b/tests/auto/declarative/declarative.pro @@ -1,12 +1,12 @@ TEMPLATE = subdirs !symbian: { SUBDIRS += \ - examples \ qdeclarativemetatype \ qmetaobjectbuilder } SUBDIRS += \ + examples \ parserstress \ qdeclarativeanchors \ qdeclarativeanimatedimage \ diff --git a/tests/auto/declarative/examples/examples.pro b/tests/auto/declarative/examples/examples.pro index 92a16f1f81..2e243b4957 100644 --- a/tests/auto/declarative/examples/examples.pro +++ b/tests/auto/declarative/examples/examples.pro @@ -7,9 +7,8 @@ SOURCES += tst_examples.cpp include(../../../../tools/qml/qml.pri) symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/examples/tst_examples.cpp b/tests/auto/declarative/examples/tst_examples.cpp index 605345e06b..da115a7853 100644 --- a/tests/auto/declarative/examples/tst_examples.cpp +++ b/tests/auto/declarative/examples/tst_examples.cpp @@ -47,6 +47,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_examples : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/parserstress/parserstress.pro b/tests/auto/declarative/parserstress/parserstress.pro index 3a675e410c..bb1d69ff9d 100644 --- a/tests/auto/declarative/parserstress/parserstress.pro +++ b/tests/auto/declarative/parserstress/parserstress.pro @@ -5,9 +5,8 @@ macx:CONFIG -= app_bundle SOURCES += tst_parserstress.cpp symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = ..\\..\\qscriptjstestsuite\\tests - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/parserstress/tst_parserstress.cpp b/tests/auto/declarative/parserstress/tst_parserstress.cpp index c86908b17f..522a63a8f5 100644 --- a/tests/auto/declarative/parserstress/tst_parserstress.cpp +++ b/tests/auto/declarative/parserstress/tst_parserstress.cpp @@ -46,6 +46,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_parserstress : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativeanchors/qdeclarativeanchors.pro b/tests/auto/declarative/qdeclarativeanchors/qdeclarativeanchors.pro index 452ad55fe5..9798bb6a62 100644 --- a/tests/auto/declarative/qdeclarativeanchors/qdeclarativeanchors.pro +++ b/tests/auto/declarative/qdeclarativeanchors/qdeclarativeanchors.pro @@ -4,9 +4,8 @@ SOURCES += tst_qdeclarativeanchors.cpp macx:CONFIG -= app_bundle symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativeanchors/tst_qdeclarativeanchors.cpp b/tests/auto/declarative/qdeclarativeanchors/tst_qdeclarativeanchors.cpp index 22f7966cf7..97b77d06b0 100644 --- a/tests/auto/declarative/qdeclarativeanchors/tst_qdeclarativeanchors.cpp +++ b/tests/auto/declarative/qdeclarativeanchors/tst_qdeclarativeanchors.cpp @@ -50,6 +50,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + Q_DECLARE_METATYPE(QDeclarativeAnchors::Anchor) Q_DECLARE_METATYPE(QDeclarativeAnchorLine::AnchorLine) diff --git a/tests/auto/declarative/qdeclarativeanimatedimage/qdeclarativeanimatedimage.pro b/tests/auto/declarative/qdeclarativeanimatedimage/qdeclarativeanimatedimage.pro index 7213abda12..0a2f0f29b7 100644 --- a/tests/auto/declarative/qdeclarativeanimatedimage/qdeclarativeanimatedimage.pro +++ b/tests/auto/declarative/qdeclarativeanimatedimage/qdeclarativeanimatedimage.pro @@ -5,9 +5,8 @@ SOURCES += tst_qdeclarativeanimatedimage.cpp ../shared/testhttpserver.cpp macx:CONFIG -= app_bundle symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativeanimatedimage/tst_qdeclarativeanimatedimage.cpp b/tests/auto/declarative/qdeclarativeanimatedimage/tst_qdeclarativeanimatedimage.cpp index 237a436213..1001278735 100644 --- a/tests/auto/declarative/qdeclarativeanimatedimage/tst_qdeclarativeanimatedimage.cpp +++ b/tests/auto/declarative/qdeclarativeanimatedimage/tst_qdeclarativeanimatedimage.cpp @@ -48,6 +48,11 @@ #include "../shared/testhttpserver.h" +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + #define TRY_WAIT(expr) \ do { \ for (int ii = 0; ii < 6; ++ii) { \ diff --git a/tests/auto/declarative/qdeclarativeanimations/qdeclarativeanimations.pro b/tests/auto/declarative/qdeclarativeanimations/qdeclarativeanimations.pro index f7ed371191..ed47dcafa2 100644 --- a/tests/auto/declarative/qdeclarativeanimations/qdeclarativeanimations.pro +++ b/tests/auto/declarative/qdeclarativeanimations/qdeclarativeanimations.pro @@ -4,9 +4,8 @@ SOURCES += tst_qdeclarativeanimations.cpp macx:CONFIG -= app_bundle symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativeanimations/tst_qdeclarativeanimations.cpp b/tests/auto/declarative/qdeclarativeanimations/tst_qdeclarativeanimations.cpp index ed7e5066f5..5cf4c2376a 100644 --- a/tests/auto/declarative/qdeclarativeanimations/tst_qdeclarativeanimations.cpp +++ b/tests/auto/declarative/qdeclarativeanimations/tst_qdeclarativeanimations.cpp @@ -48,6 +48,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativeanimations : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativebehaviors/qdeclarativebehaviors.pro b/tests/auto/declarative/qdeclarativebehaviors/qdeclarativebehaviors.pro index 7137af10b9..cfb59ef458 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/qdeclarativebehaviors.pro +++ b/tests/auto/declarative/qdeclarativebehaviors/qdeclarativebehaviors.pro @@ -4,9 +4,8 @@ SOURCES += tst_qdeclarativebehaviors.cpp macx:CONFIG -= app_bundle symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativebehaviors/tst_qdeclarativebehaviors.cpp b/tests/auto/declarative/qdeclarativebehaviors/tst_qdeclarativebehaviors.cpp index 45e53042b6..70739fb986 100644 --- a/tests/auto/declarative/qdeclarativebehaviors/tst_qdeclarativebehaviors.cpp +++ b/tests/auto/declarative/qdeclarativebehaviors/tst_qdeclarativebehaviors.cpp @@ -49,6 +49,11 @@ #include #include "../../../shared/util.h" +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativebehaviors : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativebinding/qdeclarativebinding.pro b/tests/auto/declarative/qdeclarativebinding/qdeclarativebinding.pro index 04535db207..a7ba2a8bd8 100644 --- a/tests/auto/declarative/qdeclarativebinding/qdeclarativebinding.pro +++ b/tests/auto/declarative/qdeclarativebinding/qdeclarativebinding.pro @@ -4,11 +4,9 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativebinding.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativebinding/tst_qdeclarativebinding.cpp b/tests/auto/declarative/qdeclarativebinding/tst_qdeclarativebinding.cpp index 8ab7b0bb47..653b34a26d 100644 --- a/tests/auto/declarative/qdeclarativebinding/tst_qdeclarativebinding.cpp +++ b/tests/auto/declarative/qdeclarativebinding/tst_qdeclarativebinding.cpp @@ -45,6 +45,11 @@ #include #include "../../../shared/util.h" +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativebinding : public QObject { diff --git a/tests/auto/declarative/qdeclarativeborderimage/qdeclarativeborderimage.pro b/tests/auto/declarative/qdeclarativeborderimage/qdeclarativeborderimage.pro index 3aa21974dc..a21761b87a 100644 --- a/tests/auto/declarative/qdeclarativeborderimage/qdeclarativeborderimage.pro +++ b/tests/auto/declarative/qdeclarativeborderimage/qdeclarativeborderimage.pro @@ -5,11 +5,9 @@ macx:CONFIG -= app_bundle HEADERS += ../shared/testhttpserver.h SOURCES += tst_qdeclarativeborderimage.cpp ../shared/testhttpserver.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativeborderimage/tst_qdeclarativeborderimage.cpp b/tests/auto/declarative/qdeclarativeborderimage/tst_qdeclarativeborderimage.cpp index 69b4a89cd9..1b73cf7ae8 100644 --- a/tests/auto/declarative/qdeclarativeborderimage/tst_qdeclarativeborderimage.cpp +++ b/tests/auto/declarative/qdeclarativeborderimage/tst_qdeclarativeborderimage.cpp @@ -54,6 +54,10 @@ #include "../shared/testhttpserver.h" +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif #define SERVER_PORT 14446 #define SERVER_ADDR "http://127.0.0.1:14446" diff --git a/tests/auto/declarative/qdeclarativecomponent/qdeclarativecomponent.pro b/tests/auto/declarative/qdeclarativecomponent/qdeclarativecomponent.pro index 98c38ad3dd..4124f94692 100644 --- a/tests/auto/declarative/qdeclarativecomponent/qdeclarativecomponent.pro +++ b/tests/auto/declarative/qdeclarativecomponent/qdeclarativecomponent.pro @@ -5,9 +5,7 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativecomponent.cpp -symbian: { - DEFINES += SRCDIR=\".\" -} else { +!symbian: { DEFINES += SRCDIR=\\\"$$PWD\\\" } diff --git a/tests/auto/declarative/qdeclarativecomponent/tst_qdeclarativecomponent.cpp b/tests/auto/declarative/qdeclarativecomponent/tst_qdeclarativecomponent.cpp index faa1c212cd..8a19b8bca1 100644 --- a/tests/auto/declarative/qdeclarativecomponent/tst_qdeclarativecomponent.cpp +++ b/tests/auto/declarative/qdeclarativecomponent/tst_qdeclarativecomponent.cpp @@ -45,6 +45,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativecomponent : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativeconnection/qdeclarativeconnection.pro b/tests/auto/declarative/qdeclarativeconnection/qdeclarativeconnection.pro index bbf8630fab..d06ce4f7ba 100644 --- a/tests/auto/declarative/qdeclarativeconnection/qdeclarativeconnection.pro +++ b/tests/auto/declarative/qdeclarativeconnection/qdeclarativeconnection.pro @@ -4,11 +4,9 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativeconnection.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativeconnection/tst_qdeclarativeconnection.cpp b/tests/auto/declarative/qdeclarativeconnection/tst_qdeclarativeconnection.cpp index 00e97caa30..d38437272d 100644 --- a/tests/auto/declarative/qdeclarativeconnection/tst_qdeclarativeconnection.cpp +++ b/tests/auto/declarative/qdeclarativeconnection/tst_qdeclarativeconnection.cpp @@ -46,6 +46,11 @@ #include "../../../shared/util.h" #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativeconnection : public QObject { diff --git a/tests/auto/declarative/qdeclarativecontext/qdeclarativecontext.pro b/tests/auto/declarative/qdeclarativecontext/qdeclarativecontext.pro index 0e1a5b19ff..74bb78c6ed 100644 --- a/tests/auto/declarative/qdeclarativecontext/qdeclarativecontext.pro +++ b/tests/auto/declarative/qdeclarativecontext/qdeclarativecontext.pro @@ -3,9 +3,7 @@ contains(QT_CONFIG,declarative): QT += declarative SOURCES += tst_qdeclarativecontext.cpp macx:CONFIG -= app_bundle -symbian: { - DEFINES += SRCDIR=\".\" -} else { +!symbian: { DEFINES += SRCDIR=\\\"$$PWD\\\" } diff --git a/tests/auto/declarative/qdeclarativecontext/tst_qdeclarativecontext.cpp b/tests/auto/declarative/qdeclarativecontext/tst_qdeclarativecontext.cpp index 7f0e6c07af..605cf8e6d1 100644 --- a/tests/auto/declarative/qdeclarativecontext/tst_qdeclarativecontext.cpp +++ b/tests/auto/declarative/qdeclarativecontext/tst_qdeclarativecontext.cpp @@ -46,6 +46,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativecontext : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativedom/qdeclarativedom.pro b/tests/auto/declarative/qdeclarativedom/qdeclarativedom.pro index 9f1e50c77f..415d4e2d50 100644 --- a/tests/auto/declarative/qdeclarativedom/qdeclarativedom.pro +++ b/tests/auto/declarative/qdeclarativedom/qdeclarativedom.pro @@ -5,9 +5,8 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativedom.cpp symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativedom/tst_qdeclarativedom.cpp b/tests/auto/declarative/qdeclarativedom/tst_qdeclarativedom.cpp index 6c195668a7..13960b14e8 100644 --- a/tests/auto/declarative/qdeclarativedom/tst_qdeclarativedom.cpp +++ b/tests/auto/declarative/qdeclarativedom/tst_qdeclarativedom.cpp @@ -46,6 +46,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativedom : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativeecmascript/qdeclarativeecmascript.pro b/tests/auto/declarative/qdeclarativeecmascript/qdeclarativeecmascript.pro index c907be5270..58cad34d28 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/qdeclarativeecmascript.pro +++ b/tests/auto/declarative/qdeclarativeecmascript/qdeclarativeecmascript.pro @@ -12,7 +12,13 @@ INCLUDEPATH += ../shared # QMAKE_CXXFLAGS = -fprofile-arcs -ftest-coverage # LIBS += -lgcov -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + importFiles.sources = data + importFiles.path = . + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} CONFIG += parallel_test diff --git a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp index e75abacc11..16e7ec5d13 100644 --- a/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp +++ b/tests/auto/declarative/qdeclarativeecmascript/tst_qdeclarativeecmascript.cpp @@ -53,6 +53,11 @@ #include "testtypes.h" #include "testhttpserver.h" +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + /* This test covers evaluation of ECMAScript expressions and bindings from within QML. This does not include static QML language issues. diff --git a/tests/auto/declarative/qdeclarativeengine/qdeclarativeengine.pro b/tests/auto/declarative/qdeclarativeengine/qdeclarativeengine.pro index 23afd07290..7119ad999e 100644 --- a/tests/auto/declarative/qdeclarativeengine/qdeclarativeengine.pro +++ b/tests/auto/declarative/qdeclarativeengine/qdeclarativeengine.pro @@ -4,10 +4,7 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativeengine.cpp -# Define SRCDIR equal to test's source directory -symbian: { - DEFINES += SRCDIR=\".\" -} else { +!symbian: { DEFINES += SRCDIR=\\\"$$PWD\\\" } diff --git a/tests/auto/declarative/qdeclarativeengine/tst_qdeclarativeengine.cpp b/tests/auto/declarative/qdeclarativeengine/tst_qdeclarativeengine.cpp index 0aebea1bdb..56ebd7306f 100644 --- a/tests/auto/declarative/qdeclarativeengine/tst_qdeclarativeengine.cpp +++ b/tests/auto/declarative/qdeclarativeengine/tst_qdeclarativeengine.cpp @@ -50,6 +50,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativeengine : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativeerror/qdeclarativeerror.pro b/tests/auto/declarative/qdeclarativeerror/qdeclarativeerror.pro index fae11f937f..29b7149c46 100644 --- a/tests/auto/declarative/qdeclarativeerror/qdeclarativeerror.pro +++ b/tests/auto/declarative/qdeclarativeerror/qdeclarativeerror.pro @@ -3,9 +3,7 @@ contains(QT_CONFIG,declarative): QT += declarative SOURCES += tst_qdeclarativeerror.cpp macx:CONFIG -= app_bundle -symbian: { - DEFINES += SRCDIR=\".\" -} else { +!symbian: { DEFINES += SRCDIR=\\\"$$PWD\\\" } diff --git a/tests/auto/declarative/qdeclarativeerror/tst_qdeclarativeerror.cpp b/tests/auto/declarative/qdeclarativeerror/tst_qdeclarativeerror.cpp index ba1ebae402..027995398e 100644 --- a/tests/auto/declarative/qdeclarativeerror/tst_qdeclarativeerror.cpp +++ b/tests/auto/declarative/qdeclarativeerror/tst_qdeclarativeerror.cpp @@ -43,6 +43,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativeerror : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativeflickable/qdeclarativeflickable.pro b/tests/auto/declarative/qdeclarativeflickable/qdeclarativeflickable.pro index 7a701096e1..be0ba6c36f 100644 --- a/tests/auto/declarative/qdeclarativeflickable/qdeclarativeflickable.pro +++ b/tests/auto/declarative/qdeclarativeflickable/qdeclarativeflickable.pro @@ -4,11 +4,9 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativeflickable.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativeflickable/tst_qdeclarativeflickable.cpp b/tests/auto/declarative/qdeclarativeflickable/tst_qdeclarativeflickable.cpp index 2c6890ec21..2ba5574a36 100644 --- a/tests/auto/declarative/qdeclarativeflickable/tst_qdeclarativeflickable.cpp +++ b/tests/auto/declarative/qdeclarativeflickable/tst_qdeclarativeflickable.cpp @@ -46,6 +46,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativeflickable : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativeflipable/qdeclarativeflipable.pro b/tests/auto/declarative/qdeclarativeflipable/qdeclarativeflipable.pro index 9b4fbc97b9..759e80b321 100644 --- a/tests/auto/declarative/qdeclarativeflipable/qdeclarativeflipable.pro +++ b/tests/auto/declarative/qdeclarativeflipable/qdeclarativeflipable.pro @@ -4,11 +4,9 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativeflipable.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativeflipable/tst_qdeclarativeflipable.cpp b/tests/auto/declarative/qdeclarativeflipable/tst_qdeclarativeflipable.cpp index f32cdbdb49..f56c0325a2 100644 --- a/tests/auto/declarative/qdeclarativeflipable/tst_qdeclarativeflipable.cpp +++ b/tests/auto/declarative/qdeclarativeflipable/tst_qdeclarativeflipable.cpp @@ -48,6 +48,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativeflipable : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativefocusscope/qdeclarativefocusscope.pro b/tests/auto/declarative/qdeclarativefocusscope/qdeclarativefocusscope.pro index c021fcfc5b..24749c61c5 100644 --- a/tests/auto/declarative/qdeclarativefocusscope/qdeclarativefocusscope.pro +++ b/tests/auto/declarative/qdeclarativefocusscope/qdeclarativefocusscope.pro @@ -4,9 +4,8 @@ SOURCES += tst_qdeclarativefocusscope.cpp macx:CONFIG -= app_bundle symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativefocusscope/tst_qdeclarativefocusscope.cpp b/tests/auto/declarative/qdeclarativefocusscope/tst_qdeclarativefocusscope.cpp index 04bb1c5179..7732e6dadb 100644 --- a/tests/auto/declarative/qdeclarativefocusscope/tst_qdeclarativefocusscope.cpp +++ b/tests/auto/declarative/qdeclarativefocusscope/tst_qdeclarativefocusscope.cpp @@ -48,6 +48,10 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif class tst_qdeclarativefocusscope : public QObject { diff --git a/tests/auto/declarative/qdeclarativefolderlistmodel/qdeclarativefolderlistmodel.pro b/tests/auto/declarative/qdeclarativefolderlistmodel/qdeclarativefolderlistmodel.pro index 487d0e157d..91bf4a764f 100644 --- a/tests/auto/declarative/qdeclarativefolderlistmodel/qdeclarativefolderlistmodel.pro +++ b/tests/auto/declarative/qdeclarativefolderlistmodel/qdeclarativefolderlistmodel.pro @@ -4,11 +4,9 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativefolderlistmodel.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativefolderlistmodel/tst_qdeclarativefolderlistmodel.cpp b/tests/auto/declarative/qdeclarativefolderlistmodel/tst_qdeclarativefolderlistmodel.cpp index 3cf9613b96..b2e3a5b516 100644 --- a/tests/auto/declarative/qdeclarativefolderlistmodel/tst_qdeclarativefolderlistmodel.cpp +++ b/tests/auto/declarative/qdeclarativefolderlistmodel/tst_qdeclarativefolderlistmodel.cpp @@ -48,6 +48,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + // From qdeclarastivefolderlistmodel.h const int FileNameRole = Qt::UserRole+1; const int FilePathRole = Qt::UserRole+2; diff --git a/tests/auto/declarative/qdeclarativefontloader/qdeclarativefontloader.pro b/tests/auto/declarative/qdeclarativefontloader/qdeclarativefontloader.pro index dbe0dcbd95..01dca2668c 100644 --- a/tests/auto/declarative/qdeclarativefontloader/qdeclarativefontloader.pro +++ b/tests/auto/declarative/qdeclarativefontloader/qdeclarativefontloader.pro @@ -5,11 +5,9 @@ macx:CONFIG -= app_bundle HEADERS += ../shared/testhttpserver.h SOURCES += tst_qdeclarativefontloader.cpp ../shared/testhttpserver.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativefontloader/tst_qdeclarativefontloader.cpp b/tests/auto/declarative/qdeclarativefontloader/tst_qdeclarativefontloader.cpp index 36908d9143..ae23017bdf 100644 --- a/tests/auto/declarative/qdeclarativefontloader/tst_qdeclarativefontloader.cpp +++ b/tests/auto/declarative/qdeclarativefontloader/tst_qdeclarativefontloader.cpp @@ -47,6 +47,11 @@ #define SERVER_PORT 14448 +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativefontloader : public QObject { diff --git a/tests/auto/declarative/qdeclarativegridview/qdeclarativegridview.pro b/tests/auto/declarative/qdeclarativegridview/qdeclarativegridview.pro index 033e20ed9a..a99a1b9c3b 100644 --- a/tests/auto/declarative/qdeclarativegridview/qdeclarativegridview.pro +++ b/tests/auto/declarative/qdeclarativegridview/qdeclarativegridview.pro @@ -4,11 +4,9 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativegridview.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativegridview/tst_qdeclarativegridview.cpp b/tests/auto/declarative/qdeclarativegridview/tst_qdeclarativegridview.cpp index fb09d390fb..9b7c261abe 100644 --- a/tests/auto/declarative/qdeclarativegridview/tst_qdeclarativegridview.cpp +++ b/tests/auto/declarative/qdeclarativegridview/tst_qdeclarativegridview.cpp @@ -52,6 +52,11 @@ #include #include "../../../shared/util.h" +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_QDeclarativeGridView : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativeimage/qdeclarativeimage.pro b/tests/auto/declarative/qdeclarativeimage/qdeclarativeimage.pro index a8b8eca3e9..244a1e1e90 100644 --- a/tests/auto/declarative/qdeclarativeimage/qdeclarativeimage.pro +++ b/tests/auto/declarative/qdeclarativeimage/qdeclarativeimage.pro @@ -5,11 +5,9 @@ macx:CONFIG -= app_bundle HEADERS += ../shared/testhttpserver.h SOURCES += tst_qdeclarativeimage.cpp ../shared/testhttpserver.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativeimage/tst_qdeclarativeimage.cpp b/tests/auto/declarative/qdeclarativeimage/tst_qdeclarativeimage.cpp index 720702a82a..c09f7fc7d6 100644 --- a/tests/auto/declarative/qdeclarativeimage/tst_qdeclarativeimage.cpp +++ b/tests/auto/declarative/qdeclarativeimage/tst_qdeclarativeimage.cpp @@ -55,6 +55,10 @@ #include "../shared/testhttpserver.h" +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif #define SERVER_PORT 14451 #define SERVER_ADDR "http://127.0.0.1:14451" diff --git a/tests/auto/declarative/qdeclarativeimageprovider/qdeclarativeimageprovider.pro b/tests/auto/declarative/qdeclarativeimageprovider/qdeclarativeimageprovider.pro index 1b828a50bf..bdb6423657 100644 --- a/tests/auto/declarative/qdeclarativeimageprovider/qdeclarativeimageprovider.pro +++ b/tests/auto/declarative/qdeclarativeimageprovider/qdeclarativeimageprovider.pro @@ -8,11 +8,9 @@ SOURCES += tst_qdeclarativeimageprovider.cpp # QMAKE_CXXFLAGS = -fprofile-arcs -ftest-coverage # LIBS += -lgcov -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativeimageprovider/tst_qdeclarativeimageprovider.cpp b/tests/auto/declarative/qdeclarativeimageprovider/tst_qdeclarativeimageprovider.cpp index cc4ec20db0..4185790d91 100644 --- a/tests/auto/declarative/qdeclarativeimageprovider/tst_qdeclarativeimageprovider.cpp +++ b/tests/auto/declarative/qdeclarativeimageprovider/tst_qdeclarativeimageprovider.cpp @@ -45,6 +45,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + // QDeclarativeImageProvider::request() is run in an idle thread where possible // Be generous in our timeout. #define TRY_WAIT(expr) \ diff --git a/tests/auto/declarative/qdeclarativeinfo/qdeclarativeinfo.pro b/tests/auto/declarative/qdeclarativeinfo/qdeclarativeinfo.pro index c6719c075e..2c20e7ef09 100644 --- a/tests/auto/declarative/qdeclarativeinfo/qdeclarativeinfo.pro +++ b/tests/auto/declarative/qdeclarativeinfo/qdeclarativeinfo.pro @@ -5,9 +5,8 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativeinfo.cpp symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativeinfo/tst_qdeclarativeinfo.cpp b/tests/auto/declarative/qdeclarativeinfo/tst_qdeclarativeinfo.cpp index 36db448c3a..03df71f50c 100644 --- a/tests/auto/declarative/qdeclarativeinfo/tst_qdeclarativeinfo.cpp +++ b/tests/auto/declarative/qdeclarativeinfo/tst_qdeclarativeinfo.cpp @@ -46,6 +46,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativeinfo : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativeinstruction/qdeclarativeinstruction.pro b/tests/auto/declarative/qdeclarativeinstruction/qdeclarativeinstruction.pro index 350f6c64a6..c8a48c9410 100644 --- a/tests/auto/declarative/qdeclarativeinstruction/qdeclarativeinstruction.pro +++ b/tests/auto/declarative/qdeclarativeinstruction/qdeclarativeinstruction.pro @@ -3,9 +3,7 @@ contains(QT_CONFIG,declarative): QT += declarative script SOURCES += tst_qdeclarativeinstruction.cpp macx:CONFIG -= app_bundle -symbian: { - DEFINES += SRCDIR=\".\" -} else { +!symbian: { DEFINES += SRCDIR=\\\"$$PWD\\\" } diff --git a/tests/auto/declarative/qdeclarativeinstruction/tst_qdeclarativeinstruction.cpp b/tests/auto/declarative/qdeclarativeinstruction/tst_qdeclarativeinstruction.cpp index 1e88255fcc..d5a911aeb5 100644 --- a/tests/auto/declarative/qdeclarativeinstruction/tst_qdeclarativeinstruction.cpp +++ b/tests/auto/declarative/qdeclarativeinstruction/tst_qdeclarativeinstruction.cpp @@ -42,6 +42,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativeinstruction : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativeitem/qdeclarativeitem.pro b/tests/auto/declarative/qdeclarativeitem/qdeclarativeitem.pro index f494ef18db..f4901c4428 100644 --- a/tests/auto/declarative/qdeclarativeitem/qdeclarativeitem.pro +++ b/tests/auto/declarative/qdeclarativeitem/qdeclarativeitem.pro @@ -5,9 +5,8 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativeitem.cpp symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativeitem/tst_qdeclarativeitem.cpp b/tests/auto/declarative/qdeclarativeitem/tst_qdeclarativeitem.cpp index ecc813efbb..c2d366000d 100644 --- a/tests/auto/declarative/qdeclarativeitem/tst_qdeclarativeitem.cpp +++ b/tests/auto/declarative/qdeclarativeitem/tst_qdeclarativeitem.cpp @@ -47,6 +47,11 @@ #include #include "../../../shared/util.h" +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_QDeclarativeItem : public QObject { diff --git a/tests/auto/declarative/qdeclarativelanguage/qdeclarativelanguage.pro b/tests/auto/declarative/qdeclarativelanguage/qdeclarativelanguage.pro index 2b7eb1c758..43c451fb32 100644 --- a/tests/auto/declarative/qdeclarativelanguage/qdeclarativelanguage.pro +++ b/tests/auto/declarative/qdeclarativelanguage/qdeclarativelanguage.pro @@ -12,9 +12,8 @@ HEADERS += ../shared/testhttpserver.h SOURCES += ../shared/testhttpserver.cpp symbian: { - DEFINES += SRCDIR=\".\"\"\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp b/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp index 011870c99e..413843abdc 100644 --- a/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp +++ b/tests/auto/declarative/qdeclarativelanguage/tst_qdeclarativelanguage.cpp @@ -55,6 +55,11 @@ #include "../../../shared/util.h" #include "testhttpserver.h" +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + DEFINE_BOOL_CONFIG_OPTION(qmlCheckTypes, QML_CHECK_TYPES) diff --git a/tests/auto/declarative/qdeclarativelayoutitem/qdeclarativelayoutitem.pro b/tests/auto/declarative/qdeclarativelayoutitem/qdeclarativelayoutitem.pro index 79954fe0fc..5076e5150f 100644 --- a/tests/auto/declarative/qdeclarativelayoutitem/qdeclarativelayoutitem.pro +++ b/tests/auto/declarative/qdeclarativelayoutitem/qdeclarativelayoutitem.pro @@ -4,12 +4,10 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativelayoutitem.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" -} \ No newline at end of file +} diff --git a/tests/auto/declarative/qdeclarativelayoutitem/tst_qdeclarativelayoutitem.cpp b/tests/auto/declarative/qdeclarativelayoutitem/tst_qdeclarativelayoutitem.cpp index c0c5abcb39..bbdba74a82 100644 --- a/tests/auto/declarative/qdeclarativelayoutitem/tst_qdeclarativelayoutitem.cpp +++ b/tests/auto/declarative/qdeclarativelayoutitem/tst_qdeclarativelayoutitem.cpp @@ -49,6 +49,11 @@ #include #include "../../../shared/util.h" +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativelayoutitem : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativelistmodel/qdeclarativelistmodel.pro b/tests/auto/declarative/qdeclarativelistmodel/qdeclarativelistmodel.pro index 53bb9eca66..e90db499ce 100644 --- a/tests/auto/declarative/qdeclarativelistmodel/qdeclarativelistmodel.pro +++ b/tests/auto/declarative/qdeclarativelistmodel/qdeclarativelistmodel.pro @@ -5,11 +5,9 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativelistmodel.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativelistmodel/tst_qdeclarativelistmodel.cpp b/tests/auto/declarative/qdeclarativelistmodel/tst_qdeclarativelistmodel.cpp index be4ffe829b..b3b6c2067c 100644 --- a/tests/auto/declarative/qdeclarativelistmodel/tst_qdeclarativelistmodel.cpp +++ b/tests/auto/declarative/qdeclarativelistmodel/tst_qdeclarativelistmodel.cpp @@ -51,6 +51,11 @@ #include "../../../shared/util.h" +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativelistmodel : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativelistview/qdeclarativelistview.pro b/tests/auto/declarative/qdeclarativelistview/qdeclarativelistview.pro index b406fde433..2c5a859b1e 100644 --- a/tests/auto/declarative/qdeclarativelistview/qdeclarativelistview.pro +++ b/tests/auto/declarative/qdeclarativelistview/qdeclarativelistview.pro @@ -4,11 +4,9 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativelistview.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp b/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp index 2aef9bb02d..7376c0069b 100644 --- a/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp +++ b/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp @@ -52,6 +52,11 @@ #include #include "../../../shared/util.h" +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_QDeclarativeListView : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativeloader/qdeclarativeloader.pro b/tests/auto/declarative/qdeclarativeloader/qdeclarativeloader.pro index 93349283ba..b07bf9e903 100644 --- a/tests/auto/declarative/qdeclarativeloader/qdeclarativeloader.pro +++ b/tests/auto/declarative/qdeclarativeloader/qdeclarativeloader.pro @@ -8,9 +8,8 @@ SOURCES += tst_qdeclarativeloader.cpp \ ../shared/testhttpserver.cpp symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativeloader/tst_qdeclarativeloader.cpp b/tests/auto/declarative/qdeclarativeloader/tst_qdeclarativeloader.cpp index 11cc61be7f..d047a2a0df 100644 --- a/tests/auto/declarative/qdeclarativeloader/tst_qdeclarativeloader.cpp +++ b/tests/auto/declarative/qdeclarativeloader/tst_qdeclarativeloader.cpp @@ -50,6 +50,11 @@ #define SERVER_PORT 14450 +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + inline QUrl TEST_FILE(const QString &filename) { return QUrl::fromLocalFile(QLatin1String(SRCDIR) + QLatin1String("/data/") + filename); diff --git a/tests/auto/declarative/qdeclarativemetatype/qdeclarativemetatype.pro b/tests/auto/declarative/qdeclarativemetatype/qdeclarativemetatype.pro index 0d32ab8f69..f13250e2c5 100644 --- a/tests/auto/declarative/qdeclarativemetatype/qdeclarativemetatype.pro +++ b/tests/auto/declarative/qdeclarativemetatype/qdeclarativemetatype.pro @@ -3,9 +3,7 @@ contains(QT_CONFIG,declarative): QT += declarative SOURCES += tst_qdeclarativemetatype.cpp macx:CONFIG -= app_bundle -symbian: { - DEFINES += SRCDIR=\".\" -} else { +!symbian: { DEFINES += SRCDIR=\\\"$$PWD\\\" } diff --git a/tests/auto/declarative/qdeclarativemetatype/tst_qdeclarativemetatype.cpp b/tests/auto/declarative/qdeclarativemetatype/tst_qdeclarativemetatype.cpp index 76e86c9b4b..8964f8a040 100644 --- a/tests/auto/declarative/qdeclarativemetatype/tst_qdeclarativemetatype.cpp +++ b/tests/auto/declarative/qdeclarativemetatype/tst_qdeclarativemetatype.cpp @@ -54,6 +54,11 @@ #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativemetatype : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativemoduleplugin/tst_qdeclarativemoduleplugin.cpp b/tests/auto/declarative/qdeclarativemoduleplugin/tst_qdeclarativemoduleplugin.cpp index 6d17accaa5..2081f0ea4f 100644 --- a/tests/auto/declarative/qdeclarativemoduleplugin/tst_qdeclarativemoduleplugin.cpp +++ b/tests/auto/declarative/qdeclarativemoduleplugin/tst_qdeclarativemoduleplugin.cpp @@ -56,6 +56,11 @@ private slots: void importsPlugin(); }; +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + #define VERIFY_ERRORS(errorfile) \ if (!errorfile) { \ if (qgetenv("DEBUG") != "" && !component.errors().isEmpty()) \ diff --git a/tests/auto/declarative/qdeclarativemoduleplugin/tst_qdeclarativemoduleplugin.pro b/tests/auto/declarative/qdeclarativemoduleplugin/tst_qdeclarativemoduleplugin.pro index 29a100929f..fb3630ffe0 100644 --- a/tests/auto/declarative/qdeclarativemoduleplugin/tst_qdeclarativemoduleplugin.pro +++ b/tests/auto/declarative/qdeclarativemoduleplugin/tst_qdeclarativemoduleplugin.pro @@ -2,10 +2,10 @@ load(qttest_p4) SOURCES = tst_qdeclarativemoduleplugin.cpp QT += declarative CONFIG -= app_bundle + symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativemousearea/qdeclarativemousearea.pro b/tests/auto/declarative/qdeclarativemousearea/qdeclarativemousearea.pro index 6f9c98cd3a..3d39aa8ab0 100644 --- a/tests/auto/declarative/qdeclarativemousearea/qdeclarativemousearea.pro +++ b/tests/auto/declarative/qdeclarativemousearea/qdeclarativemousearea.pro @@ -5,11 +5,9 @@ macx:CONFIG -= app_bundle HEADERS += ../shared/testhttpserver.h SOURCES += tst_qdeclarativemousearea.cpp ../shared/testhttpserver.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativemousearea/tst_qdeclarativemousearea.cpp b/tests/auto/declarative/qdeclarativemousearea/tst_qdeclarativemousearea.cpp index ff3bf45cc4..5a10372c81 100644 --- a/tests/auto/declarative/qdeclarativemousearea/tst_qdeclarativemousearea.cpp +++ b/tests/auto/declarative/qdeclarativemousearea/tst_qdeclarativemousearea.cpp @@ -46,6 +46,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_QDeclarativeMouseArea: public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativeparticles/qdeclarativeparticles.pro b/tests/auto/declarative/qdeclarativeparticles/qdeclarativeparticles.pro index 31172a9c47..f9ca90fe7e 100644 --- a/tests/auto/declarative/qdeclarativeparticles/qdeclarativeparticles.pro +++ b/tests/auto/declarative/qdeclarativeparticles/qdeclarativeparticles.pro @@ -4,11 +4,9 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativeparticles.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativeparticles/tst_qdeclarativeparticles.cpp b/tests/auto/declarative/qdeclarativeparticles/tst_qdeclarativeparticles.cpp index 093190cdb8..caf69fccfd 100644 --- a/tests/auto/declarative/qdeclarativeparticles/tst_qdeclarativeparticles.cpp +++ b/tests/auto/declarative/qdeclarativeparticles/tst_qdeclarativeparticles.cpp @@ -43,6 +43,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_QDeclarativeParticles : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativepathview/qdeclarativepathview.pro b/tests/auto/declarative/qdeclarativepathview/qdeclarativepathview.pro index 6bef61c152..04fd26b125 100644 --- a/tests/auto/declarative/qdeclarativepathview/qdeclarativepathview.pro +++ b/tests/auto/declarative/qdeclarativepathview/qdeclarativepathview.pro @@ -4,11 +4,9 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativepathview.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp b/tests/auto/declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp index dffc7ac35c..bf1e13a8e8 100644 --- a/tests/auto/declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp +++ b/tests/auto/declarative/qdeclarativepathview/tst_qdeclarativepathview.cpp @@ -57,6 +57,11 @@ #include "../../../shared/util.h" +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_QDeclarativePathView : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativepixmapcache/qdeclarativepixmapcache.pro b/tests/auto/declarative/qdeclarativepixmapcache/qdeclarativepixmapcache.pro index 99a94bc7a6..31303640ec 100644 --- a/tests/auto/declarative/qdeclarativepixmapcache/qdeclarativepixmapcache.pro +++ b/tests/auto/declarative/qdeclarativepixmapcache/qdeclarativepixmapcache.pro @@ -10,9 +10,8 @@ HEADERS += ../shared/testhttpserver.h SOURCES += ../shared/testhttpserver.cpp symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativepixmapcache/tst_qdeclarativepixmapcache.cpp b/tests/auto/declarative/qdeclarativepixmapcache/tst_qdeclarativepixmapcache.cpp index 0cc13ad516..f1018b2a3a 100644 --- a/tests/auto/declarative/qdeclarativepixmapcache/tst_qdeclarativepixmapcache.cpp +++ b/tests/auto/declarative/qdeclarativepixmapcache/tst_qdeclarativepixmapcache.cpp @@ -49,6 +49,11 @@ // These don't let normal people run tests! //#include "../network-settings.h" +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativepixmapcache : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativepositioners/qdeclarativepositioners.pro b/tests/auto/declarative/qdeclarativepositioners/qdeclarativepositioners.pro index 2c5b473fb9..5dc7bb810a 100644 --- a/tests/auto/declarative/qdeclarativepositioners/qdeclarativepositioners.pro +++ b/tests/auto/declarative/qdeclarativepositioners/qdeclarativepositioners.pro @@ -3,11 +3,9 @@ contains(QT_CONFIG,declarative): QT += declarative SOURCES += tst_qdeclarativepositioners.cpp macx:CONFIG -= app_bundle -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativepositioners/tst_qdeclarativepositioners.cpp b/tests/auto/declarative/qdeclarativepositioners/tst_qdeclarativepositioners.cpp index e639014f27..62ec707649 100644 --- a/tests/auto/declarative/qdeclarativepositioners/tst_qdeclarativepositioners.cpp +++ b/tests/auto/declarative/qdeclarativepositioners/tst_qdeclarativepositioners.cpp @@ -48,6 +48,11 @@ #include #include "../../../shared/util.h" +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_QDeclarativePositioners : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativeproperty/qdeclarativeproperty.pro b/tests/auto/declarative/qdeclarativeproperty/qdeclarativeproperty.pro index f37d952702..4121a335b6 100644 --- a/tests/auto/declarative/qdeclarativeproperty/qdeclarativeproperty.pro +++ b/tests/auto/declarative/qdeclarativeproperty/qdeclarativeproperty.pro @@ -5,9 +5,8 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativeproperty.cpp symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativeproperty/tst_qdeclarativeproperty.cpp b/tests/auto/declarative/qdeclarativeproperty/tst_qdeclarativeproperty.cpp index 53614fec33..0ca0e03b8e 100644 --- a/tests/auto/declarative/qdeclarativeproperty/tst_qdeclarativeproperty.cpp +++ b/tests/auto/declarative/qdeclarativeproperty/tst_qdeclarativeproperty.cpp @@ -48,6 +48,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + inline QUrl TEST_FILE(const QString &filename) { QFileInfo fileInfo(__FILE__); diff --git a/tests/auto/declarative/qdeclarativeqt/qdeclarativeqt.pro b/tests/auto/declarative/qdeclarativeqt/qdeclarativeqt.pro index b381a9bce2..6af65008eb 100644 --- a/tests/auto/declarative/qdeclarativeqt/qdeclarativeqt.pro +++ b/tests/auto/declarative/qdeclarativeqt/qdeclarativeqt.pro @@ -4,9 +4,8 @@ SOURCES += tst_qdeclarativeqt.cpp macx:CONFIG -= app_bundle symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativeqt/tst_qdeclarativeqt.cpp b/tests/auto/declarative/qdeclarativeqt/tst_qdeclarativeqt.cpp index 5095be83ac..06561faab8 100644 --- a/tests/auto/declarative/qdeclarativeqt/tst_qdeclarativeqt.cpp +++ b/tests/auto/declarative/qdeclarativeqt/tst_qdeclarativeqt.cpp @@ -51,6 +51,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativeqt : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativerepeater/qdeclarativerepeater.pro b/tests/auto/declarative/qdeclarativerepeater/qdeclarativerepeater.pro index 51667afcca..f3ff9ed5c9 100644 --- a/tests/auto/declarative/qdeclarativerepeater/qdeclarativerepeater.pro +++ b/tests/auto/declarative/qdeclarativerepeater/qdeclarativerepeater.pro @@ -4,11 +4,9 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativerepeater.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativerepeater/tst_qdeclarativerepeater.cpp b/tests/auto/declarative/qdeclarativerepeater/tst_qdeclarativerepeater.cpp index e6b2fdd663..3cc68f4c8c 100644 --- a/tests/auto/declarative/qdeclarativerepeater/tst_qdeclarativerepeater.cpp +++ b/tests/auto/declarative/qdeclarativerepeater/tst_qdeclarativerepeater.cpp @@ -48,6 +48,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + inline QUrl TEST_FILE(const QString &filename) { return QUrl::fromLocalFile(QLatin1String(SRCDIR) + QLatin1String("/data/") + filename); diff --git a/tests/auto/declarative/qdeclarativesmoothedanimation/qdeclarativesmoothedanimation.pro b/tests/auto/declarative/qdeclarativesmoothedanimation/qdeclarativesmoothedanimation.pro index 6b98f1e620..872aeb9888 100644 --- a/tests/auto/declarative/qdeclarativesmoothedanimation/qdeclarativesmoothedanimation.pro +++ b/tests/auto/declarative/qdeclarativesmoothedanimation/qdeclarativesmoothedanimation.pro @@ -4,11 +4,9 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativesmoothedanimation.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativesmoothedanimation/tst_qdeclarativesmoothedanimation.cpp b/tests/auto/declarative/qdeclarativesmoothedanimation/tst_qdeclarativesmoothedanimation.cpp index 7cf318ad0e..d9164f67b1 100644 --- a/tests/auto/declarative/qdeclarativesmoothedanimation/tst_qdeclarativesmoothedanimation.cpp +++ b/tests/auto/declarative/qdeclarativesmoothedanimation/tst_qdeclarativesmoothedanimation.cpp @@ -46,6 +46,11 @@ #include #include "../../../shared/util.h" +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativesmoothedanimation : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativesmoothedfollow/qdeclarativesmoothedfollow.pro b/tests/auto/declarative/qdeclarativesmoothedfollow/qdeclarativesmoothedfollow.pro index eb7d793a54..dff4922d58 100644 --- a/tests/auto/declarative/qdeclarativesmoothedfollow/qdeclarativesmoothedfollow.pro +++ b/tests/auto/declarative/qdeclarativesmoothedfollow/qdeclarativesmoothedfollow.pro @@ -4,11 +4,9 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativesmoothedfollow.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativesmoothedfollow/tst_qdeclarativesmoothedfollow.cpp b/tests/auto/declarative/qdeclarativesmoothedfollow/tst_qdeclarativesmoothedfollow.cpp index ac750d9641..b9ac23f86a 100644 --- a/tests/auto/declarative/qdeclarativesmoothedfollow/tst_qdeclarativesmoothedfollow.cpp +++ b/tests/auto/declarative/qdeclarativesmoothedfollow/tst_qdeclarativesmoothedfollow.cpp @@ -48,6 +48,11 @@ #include #include "../../../shared/util.h" +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativesmoothedfollow : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativespringfollow/qdeclarativespringfollow.pro b/tests/auto/declarative/qdeclarativespringfollow/qdeclarativespringfollow.pro index 6ed8924e2c..1c17ba07f9 100644 --- a/tests/auto/declarative/qdeclarativespringfollow/qdeclarativespringfollow.pro +++ b/tests/auto/declarative/qdeclarativespringfollow/qdeclarativespringfollow.pro @@ -4,11 +4,9 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativespringfollow.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativespringfollow/tst_qdeclarativespringfollow.cpp b/tests/auto/declarative/qdeclarativespringfollow/tst_qdeclarativespringfollow.cpp index 8a07d6bd41..e0e2892ab0 100644 --- a/tests/auto/declarative/qdeclarativespringfollow/tst_qdeclarativespringfollow.cpp +++ b/tests/auto/declarative/qdeclarativespringfollow/tst_qdeclarativespringfollow.cpp @@ -45,6 +45,11 @@ #include #include "../../../shared/util.h" +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativespringfollow : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativesqldatabase/qdeclarativesqldatabase.pro b/tests/auto/declarative/qdeclarativesqldatabase/qdeclarativesqldatabase.pro index 9cdb8846b3..1462c9a28b 100644 --- a/tests/auto/declarative/qdeclarativesqldatabase/qdeclarativesqldatabase.pro +++ b/tests/auto/declarative/qdeclarativesqldatabase/qdeclarativesqldatabase.pro @@ -5,11 +5,9 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativesqldatabase.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativesqldatabase/tst_qdeclarativesqldatabase.cpp b/tests/auto/declarative/qdeclarativesqldatabase/tst_qdeclarativesqldatabase.cpp index 7486a4b199..f92d7e8575 100644 --- a/tests/auto/declarative/qdeclarativesqldatabase/tst_qdeclarativesqldatabase.cpp +++ b/tests/auto/declarative/qdeclarativesqldatabase/tst_qdeclarativesqldatabase.cpp @@ -53,6 +53,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativesqldatabase : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativestates/qdeclarativestates.pro b/tests/auto/declarative/qdeclarativestates/qdeclarativestates.pro index 6f4ecb3705..2bae041398 100644 --- a/tests/auto/declarative/qdeclarativestates/qdeclarativestates.pro +++ b/tests/auto/declarative/qdeclarativestates/qdeclarativestates.pro @@ -4,11 +4,9 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativestates.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp b/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp index 055a34c8a3..f1968373da 100644 --- a/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp +++ b/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp @@ -49,6 +49,10 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif class MyRect : public QDeclarativeRectangle { diff --git a/tests/auto/declarative/qdeclarativesystempalette/qdeclarativesystempalette.pro b/tests/auto/declarative/qdeclarativesystempalette/qdeclarativesystempalette.pro index 786bc1bb11..0062688414 100644 --- a/tests/auto/declarative/qdeclarativesystempalette/qdeclarativesystempalette.pro +++ b/tests/auto/declarative/qdeclarativesystempalette/qdeclarativesystempalette.pro @@ -4,10 +4,7 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativesystempalette.cpp -# Define SRCDIR equal to test's source directory -symbian: { - DEFINES += SRCDIR=\".\" -} else { +!symbian: { DEFINES += SRCDIR=\\\"$$PWD\\\" } diff --git a/tests/auto/declarative/qdeclarativesystempalette/tst_qdeclarativesystempalette.cpp b/tests/auto/declarative/qdeclarativesystempalette/tst_qdeclarativesystempalette.cpp index 7927d971aa..dd1fd7a385 100644 --- a/tests/auto/declarative/qdeclarativesystempalette/tst_qdeclarativesystempalette.cpp +++ b/tests/auto/declarative/qdeclarativesystempalette/tst_qdeclarativesystempalette.cpp @@ -47,6 +47,11 @@ #include #include "../../../shared/util.h" +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativesystempalette : public QObject { diff --git a/tests/auto/declarative/qdeclarativetext/qdeclarativetext.pro b/tests/auto/declarative/qdeclarativetext/qdeclarativetext.pro index 51c7f4385f..c1a36fdcbb 100644 --- a/tests/auto/declarative/qdeclarativetext/qdeclarativetext.pro +++ b/tests/auto/declarative/qdeclarativetext/qdeclarativetext.pro @@ -10,9 +10,8 @@ HEADERS += ../shared/testhttpserver.h SOURCES += ../shared/testhttpserver.cpp symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativetext/tst_qdeclarativetext.cpp b/tests/auto/declarative/qdeclarativetext/tst_qdeclarativetext.cpp index 551e17ba22..01120b14f6 100644 --- a/tests/auto/declarative/qdeclarativetext/tst_qdeclarativetext.cpp +++ b/tests/auto/declarative/qdeclarativetext/tst_qdeclarativetext.cpp @@ -51,6 +51,11 @@ #include "../../../shared/util.h" #include "testhttpserver.h" +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativetext : public QObject { diff --git a/tests/auto/declarative/qdeclarativetextedit/qdeclarativetextedit.pro b/tests/auto/declarative/qdeclarativetextedit/qdeclarativetextedit.pro index 2adb2b849f..4b6bd49de2 100644 --- a/tests/auto/declarative/qdeclarativetextedit/qdeclarativetextedit.pro +++ b/tests/auto/declarative/qdeclarativetextedit/qdeclarativetextedit.pro @@ -5,11 +5,9 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativetextedit.cpp ../shared/testhttpserver.cpp HEADERS += ../shared/testhttpserver.h -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp index 053c9ef562..f7ba7a158d 100644 --- a/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp +++ b/tests/auto/declarative/qdeclarativetextedit/tst_qdeclarativetextedit.cpp @@ -56,6 +56,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativetextedit : public QObject { diff --git a/tests/auto/declarative/qdeclarativetextinput/qdeclarativetextinput.pro b/tests/auto/declarative/qdeclarativetextinput/qdeclarativetextinput.pro index 2953567cfe..8f42448587 100644 --- a/tests/auto/declarative/qdeclarativetextinput/qdeclarativetextinput.pro +++ b/tests/auto/declarative/qdeclarativetextinput/qdeclarativetextinput.pro @@ -4,11 +4,9 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativetextinput.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp index c9de0aab76..3143580ec1 100644 --- a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp +++ b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp @@ -50,6 +50,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativetextinput : public QObject { diff --git a/tests/auto/declarative/qdeclarativetimer/qdeclarativetimer.pro b/tests/auto/declarative/qdeclarativetimer/qdeclarativetimer.pro index d95165ca22..398139a86a 100644 --- a/tests/auto/declarative/qdeclarativetimer/qdeclarativetimer.pro +++ b/tests/auto/declarative/qdeclarativetimer/qdeclarativetimer.pro @@ -4,9 +4,7 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativetimer.cpp -symbian: { - DEFINES += SRCDIR=\".\" -} else { +!symbian: { DEFINES += SRCDIR=\\\"$$PWD\\\" } diff --git a/tests/auto/declarative/qdeclarativetimer/tst_qdeclarativetimer.cpp b/tests/auto/declarative/qdeclarativetimer/tst_qdeclarativetimer.cpp index da2d1731fb..f49cbd04cc 100644 --- a/tests/auto/declarative/qdeclarativetimer/tst_qdeclarativetimer.cpp +++ b/tests/auto/declarative/qdeclarativetimer/tst_qdeclarativetimer.cpp @@ -46,6 +46,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativetimer : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativevaluetypes/qdeclarativevaluetypes.pro b/tests/auto/declarative/qdeclarativevaluetypes/qdeclarativevaluetypes.pro index 02c480cc67..90e46d3967 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/qdeclarativevaluetypes.pro +++ b/tests/auto/declarative/qdeclarativevaluetypes/qdeclarativevaluetypes.pro @@ -8,9 +8,8 @@ SOURCES += tst_qdeclarativevaluetypes.cpp \ testtypes.cpp symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp b/tests/auto/declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp index 5e46fab599..237d020bd7 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp +++ b/tests/auto/declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp @@ -46,6 +46,11 @@ #include #include "testtypes.h" +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + extern int qt_defaultDpi(); class tst_qdeclarativevaluetypes : public QObject diff --git a/tests/auto/declarative/qdeclarativeview/qdeclarativeview.pro b/tests/auto/declarative/qdeclarativeview/qdeclarativeview.pro index ad54713cd1..21a9195606 100644 --- a/tests/auto/declarative/qdeclarativeview/qdeclarativeview.pro +++ b/tests/auto/declarative/qdeclarativeview/qdeclarativeview.pro @@ -5,9 +5,8 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativeview.cpp symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp b/tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp index b1831053ca..cc48bd0766 100644 --- a/tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp +++ b/tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp @@ -47,6 +47,11 @@ #include #include "../../../shared/util.h" +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_QDeclarativeView : public QObject { diff --git a/tests/auto/declarative/qdeclarativeviewer/qdeclarativeviewer.pro b/tests/auto/declarative/qdeclarativeviewer/qdeclarativeviewer.pro index 9bb61619dc..6189916a43 100644 --- a/tests/auto/declarative/qdeclarativeviewer/qdeclarativeviewer.pro +++ b/tests/auto/declarative/qdeclarativeviewer/qdeclarativeviewer.pro @@ -7,9 +7,8 @@ include(../../../../tools/qml/qml.pri) SOURCES += tst_qdeclarativeviewer.cpp symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp b/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp index f296d9eff6..49273eaccb 100644 --- a/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp +++ b/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp @@ -45,6 +45,11 @@ #include #include "qmlruntime.h" +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_QDeclarativeViewer : public QObject { diff --git a/tests/auto/declarative/qdeclarativevisualdatamodel/qdeclarativevisualdatamodel.pro b/tests/auto/declarative/qdeclarativevisualdatamodel/qdeclarativevisualdatamodel.pro index c87171bc85..92e5f605b7 100644 --- a/tests/auto/declarative/qdeclarativevisualdatamodel/qdeclarativevisualdatamodel.pro +++ b/tests/auto/declarative/qdeclarativevisualdatamodel/qdeclarativevisualdatamodel.pro @@ -5,9 +5,8 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativevisualdatamodel.cpp symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativevisualdatamodel/tst_qdeclarativevisualdatamodel.cpp b/tests/auto/declarative/qdeclarativevisualdatamodel/tst_qdeclarativevisualdatamodel.cpp index 8f3fb16b79..90c9c6f722 100644 --- a/tests/auto/declarative/qdeclarativevisualdatamodel/tst_qdeclarativevisualdatamodel.cpp +++ b/tests/auto/declarative/qdeclarativevisualdatamodel/tst_qdeclarativevisualdatamodel.cpp @@ -52,6 +52,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + static void initStandardTreeModel(QStandardItemModel *model) { QStandardItem *item; diff --git a/tests/auto/declarative/qdeclarativewebview/qdeclarativewebview.pro b/tests/auto/declarative/qdeclarativewebview/qdeclarativewebview.pro index 8caa393b4f..562a9fbf3f 100644 --- a/tests/auto/declarative/qdeclarativewebview/qdeclarativewebview.pro +++ b/tests/auto/declarative/qdeclarativewebview/qdeclarativewebview.pro @@ -5,11 +5,9 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativewebview.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativewebview/tst_qdeclarativewebview.cpp b/tests/auto/declarative/qdeclarativewebview/tst_qdeclarativewebview.cpp index beabf86b33..f33e5a4111 100644 --- a/tests/auto/declarative/qdeclarativewebview/tst_qdeclarativewebview.cpp +++ b/tests/auto/declarative/qdeclarativewebview/tst_qdeclarativewebview.cpp @@ -50,6 +50,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativewebview : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativeworkerscript/qdeclarativeworkerscript.pro b/tests/auto/declarative/qdeclarativeworkerscript/qdeclarativeworkerscript.pro index 36b3449f96..2f8f23db35 100644 --- a/tests/auto/declarative/qdeclarativeworkerscript/qdeclarativeworkerscript.pro +++ b/tests/auto/declarative/qdeclarativeworkerscript/qdeclarativeworkerscript.pro @@ -4,11 +4,9 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativeworkerscript.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativeworkerscript/tst_qdeclarativeworkerscript.cpp b/tests/auto/declarative/qdeclarativeworkerscript/tst_qdeclarativeworkerscript.cpp index 7a4315a050..52c11e9b47 100644 --- a/tests/auto/declarative/qdeclarativeworkerscript/tst_qdeclarativeworkerscript.cpp +++ b/tests/auto/declarative/qdeclarativeworkerscript/tst_qdeclarativeworkerscript.cpp @@ -53,6 +53,11 @@ Q_DECLARE_METATYPE(QScriptValue) +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_QDeclarativeWorkerScript : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/qdeclarativexmlhttprequest.pro b/tests/auto/declarative/qdeclarativexmlhttprequest/qdeclarativexmlhttprequest.pro index b54f670491..619b239174 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/qdeclarativexmlhttprequest.pro +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/qdeclarativexmlhttprequest.pro @@ -8,11 +8,9 @@ HEADERS += ../shared/testhttpserver.h SOURCES += tst_qdeclarativexmlhttprequest.cpp \ ../shared/testhttpserver.cpp -# Define SRCDIR equal to test's source directory symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/tst_qdeclarativexmlhttprequest.cpp b/tests/auto/declarative/qdeclarativexmlhttprequest/tst_qdeclarativexmlhttprequest.cpp index 1d26f2c8eb..8141fcb11a 100644 --- a/tests/auto/declarative/qdeclarativexmlhttprequest/tst_qdeclarativexmlhttprequest.cpp +++ b/tests/auto/declarative/qdeclarativexmlhttprequest/tst_qdeclarativexmlhttprequest.cpp @@ -48,6 +48,11 @@ #define SERVER_PORT 14445 +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativexmlhttprequest : public QObject { Q_OBJECT diff --git a/tests/auto/declarative/qdeclarativexmllistmodel/qdeclarativexmllistmodel.pro b/tests/auto/declarative/qdeclarativexmllistmodel/qdeclarativexmllistmodel.pro index 7c006f10ca..472cffb0ab 100644 --- a/tests/auto/declarative/qdeclarativexmllistmodel/qdeclarativexmllistmodel.pro +++ b/tests/auto/declarative/qdeclarativexmllistmodel/qdeclarativexmllistmodel.pro @@ -9,9 +9,8 @@ macx:CONFIG -= app_bundle SOURCES += tst_qdeclarativexmllistmodel.cpp symbian: { - DEFINES += SRCDIR=\".\" importFiles.sources = data - importFiles.path = + importFiles.path = . DEPLOYMENT = importFiles } else { DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp b/tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp index 35790e43ab..bd19bd3743 100644 --- a/tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp +++ b/tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp @@ -50,6 +50,11 @@ #include #include "../../../shared/util.h" +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + typedef QPair QDeclarativeXmlListRange; typedef QList QDeclarativeXmlModelData; diff --git a/tests/auto/declarative/qmlvisual/qmlvisual.pro b/tests/auto/declarative/qmlvisual/qmlvisual.pro index dca9b04c32..cb7e5d7bd8 100644 --- a/tests/auto/declarative/qmlvisual/qmlvisual.pro +++ b/tests/auto/declarative/qmlvisual/qmlvisual.pro @@ -5,7 +5,7 @@ macx:CONFIG -= app_bundle SOURCES += tst_qmlvisual.cpp symbian: { - importFiles.path = + importFiles.path = . importFiles.sources = animation \ fillmode \ focusscope \ @@ -28,8 +28,6 @@ symbian: { selftest_noimages \ webview DEPLOYMENT = importFiles - - DEFINES += QT_TEST_SOURCE_DIR=\".\" } else { DEFINES += QT_TEST_SOURCE_DIR=\"\\\"$$PWD\\\"\" } diff --git a/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp b/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp index 71dc451619..a2d32737df 100644 --- a/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp +++ b/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp @@ -47,6 +47,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define QT_TEST_SOURCE_DIR "." +#endif + enum Mode { Record, RecordNoVisuals, RecordSnapshot, Play, TestVisuals, RemoveVisuals, UpdateVisuals, UpdatePlatformVisuals, Test }; static QString testdir; -- cgit v1.2.1 From 0656d1578e86a2e9e0e1ec1d3c79e8766415a86d Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Tue, 8 Jun 2010 10:59:53 +1000 Subject: Add test for PropertyChanges with attached properties. Task-number: QTBUG-11283 --- .../data/attachedPropertyChanges.qml | 20 ++++++++++ .../qdeclarativestates/tst_qdeclarativestates.cpp | 43 ++++++++++++++++++++++ 2 files changed, 63 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativestates/data/attachedPropertyChanges.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativestates/data/attachedPropertyChanges.qml b/tests/auto/declarative/qdeclarativestates/data/attachedPropertyChanges.qml new file mode 100644 index 0000000000..e17823b6d8 --- /dev/null +++ b/tests/auto/declarative/qdeclarativestates/data/attachedPropertyChanges.qml @@ -0,0 +1,20 @@ +import Qt.test 1.0 +import Qt 4.7 + +Item { + id: item + width: 100; height: 100 + MyRectangle.foo: 0 + + states: State { + name: "foo1" + PropertyChanges { + target: item + MyRectangle.foo: 1 + width: 50 + } + } + + Component.onCompleted: item.state = "foo1" +} + diff --git a/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp b/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp index 055a34c8a3..1ddbe4da86 100644 --- a/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp +++ b/tests/auto/declarative/qdeclarativestates/tst_qdeclarativestates.cpp @@ -50,6 +50,20 @@ #include +class MyAttached : public QObject +{ + Q_OBJECT + Q_PROPERTY(int foo READ foo WRITE setFoo) +public: + MyAttached(QObject *parent) : QObject(parent), m_foo(13) {} + + int foo() const { return m_foo; } + void setFoo(int f) { m_foo = f; } + +private: + int m_foo; +}; + class MyRect : public QDeclarativeRectangle { Q_OBJECT @@ -61,6 +75,10 @@ public: int propertyWithNotify() const { return m_prop; } void setPropertyWithNotify(int i) { m_prop = i; emit oddlyNamedNotifySignal(); } + + static MyAttached *qmlAttachedProperties(QObject *o) { + return new MyAttached(o); + } Q_SIGNALS: void didSomething(); void oddlyNamedNotifySignal(); @@ -69,6 +87,8 @@ private: int m_prop; }; +QML_DECLARE_TYPE(MyRect) +QML_DECLARE_TYPEINFO(MyRect, QML_HAS_ATTACHED_PROPERTIES) class tst_qdeclarativestates : public QObject { @@ -83,6 +103,7 @@ private slots: void initTestCase(); void basicChanges(); + void attachedPropertyChanges(); void basicExtension(); void basicBinding(); void signalOverride(); @@ -220,6 +241,28 @@ void tst_qdeclarativestates::basicChanges() } } +void tst_qdeclarativestates::attachedPropertyChanges() +{ + QDeclarativeEngine engine; + + QDeclarativeComponent component(&engine, SRCDIR "/data/attachedPropertyChanges.qml"); + QVERIFY(component.isReady()); + + QDeclarativeItem *item = qobject_cast(component.create()); + QVERIFY(item != 0); + QCOMPARE(item->width(), 50.0); + + // Ensure attached property has been changed + QObject *attObj = qmlAttachedPropertiesObject(item, false); + QVERIFY(attObj); + + MyAttached *att = qobject_cast(attObj); + QVERIFY(att); + + QEXPECT_FAIL("", "QTBUG-11283", Abort); + QCOMPARE(att->foo(), 1); +} + void tst_qdeclarativestates::basicExtension() { QDeclarativeEngine engine; -- cgit v1.2.1 From a46e97c429077022bc7f426a3adec588643abc57 Mon Sep 17 00:00:00 2001 From: mae Date: Fri, 4 Jun 2010 11:39:07 +0200 Subject: Cursor positioning in QTextDocument after undo() QTextDocument had no way of storing the cursor position from which a document change was initiated in the undo stack. That means that any undo operation would reposition the text cursor to the text position where the actual change happened. This works in many cases, but not always. In Qt Creator we have standard IDE shortcuts like e.g. Ctrl+Return for InsertLineBelowCurrentLine, which insert a newline at the end of the current line, not at the cursor position. Using undo there resulted in a surprisingly wrong cursor position. The problem becomes worse with more advanced refactoring and productivity tools (like snippets). The patch creates a synthetic CursorMoved undo item with the position which was current at the time of calling QTextCursor::beginEditBlock(), but only if necesary, i.e. only in those cases where the cursor would be positioned wrongly. Reviewed-by: Roberto Raggi --- tests/auto/qtextcursor/tst_qtextcursor.cpp | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/qtextcursor/tst_qtextcursor.cpp b/tests/auto/qtextcursor/tst_qtextcursor.cpp index 99babac8a0..41835bb55d 100644 --- a/tests/auto/qtextcursor/tst_qtextcursor.cpp +++ b/tests/auto/qtextcursor/tst_qtextcursor.cpp @@ -151,6 +151,7 @@ private slots: void cursorPositionWithBlockUndoAndRedo(); void cursorPositionWithBlockUndoAndRedo2(); + void cursorPositionWithBlockUndoAndRedo3(); private: int blockCount(); @@ -1756,9 +1757,9 @@ void tst_QTextCursor::adjustCursorsOnInsert() void tst_QTextCursor::cursorPositionWithBlockUndoAndRedo() { cursor.insertText("AAAABBBBCCCCDDDD"); - cursor.beginEditBlock(); cursor.setPosition(12); int cursorPositionBefore = cursor.position(); + cursor.beginEditBlock(); cursor.insertText("*"); cursor.setPosition(8); cursor.insertText("*"); @@ -1814,5 +1815,20 @@ void tst_QTextCursor::cursorPositionWithBlockUndoAndRedo2() QCOMPARE(cursor.position(), cursorPositionBefore); } +void tst_QTextCursor::cursorPositionWithBlockUndoAndRedo3() +{ + // verify that it's the position of the beginEditBlock that counts, and not the last edit position + cursor.insertText("AAAABBBB"); + int cursorPositionBefore = cursor.position(); + cursor.beginEditBlock(); + cursor.setPosition(4); + QVERIFY(cursor.position() != cursorPositionBefore); + cursor.insertText("*"); + cursor.endEditBlock(); + QCOMPARE(cursor.position(), 5); + doc->undo(&cursor); + QCOMPARE(cursor.position(), cursorPositionBefore); +} + QTEST_MAIN(tst_QTextCursor) #include "tst_qtextcursor.moc" -- cgit v1.2.1 From 5c6501970c7b6805b7edc30f90187700f05d9f15 Mon Sep 17 00:00:00 2001 From: Joona Petrell Date: Wed, 9 Jun 2010 11:51:29 +1000 Subject: Fix drawing flicker on Qml Viewer startup Task-number: QTBUG-10251 and QTBUG-11156 Reviewed-by: Martin Jones --- .../qdeclarativeview/tst_qdeclarativeview.cpp | 5 + .../qdeclarativeviewer/tst_qdeclarativeviewer.cpp | 187 +++++++++++++++++++++ 2 files changed, 192 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp b/tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp index cc48bd0766..6450e38c57 100644 --- a/tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp +++ b/tests/auto/declarative/qdeclarativeview/tst_qdeclarativeview.cpp @@ -80,6 +80,7 @@ void tst_QDeclarativeView::resizemodedeclarativeitem() QVERIFY(canvas); QSignalSpy sceneResizedSpy(canvas, SIGNAL(sceneResized(QSize))); canvas->setResizeMode(QDeclarativeView::SizeRootObjectToView); + QCOMPARE(QSize(0,0), canvas->initialSize()); canvas->setSource(QUrl::fromLocalFile(SRCDIR "/data/resizemodedeclarativeitem.qml")); QDeclarativeItem* declarativeItem = qobject_cast(canvas->rootObject()); QVERIFY(declarativeItem); @@ -90,6 +91,7 @@ void tst_QDeclarativeView::resizemodedeclarativeitem() QCOMPARE(declarativeItem->height(), 200.0); QCOMPARE(canvas->size(), QSize(200, 200)); QCOMPARE(canvas->size(), canvas->sizeHint()); + QCOMPARE(canvas->size(), canvas->initialSize()); QCOMPARE(sceneResizedSpy.count(), 1); // size update from view @@ -135,6 +137,7 @@ void tst_QDeclarativeView::resizemodedeclarativeitem() QCOMPARE(declarativeItem->width(), 200.0); QCOMPARE(declarativeItem->height(), 200.0); QCOMPARE(canvas->size(), canvas->sizeHint()); + QCOMPARE(canvas->size(), canvas->initialSize()); QCOMPARE(sceneResizedSpy2.count(), 1); // size update from root object @@ -184,6 +187,7 @@ void tst_QDeclarativeView::resizemodegraphicswidget() QCOMPARE(canvas->size(), QSize(200, 200)); QCOMPARE(canvas->size(), QSize(200, 200)); QCOMPARE(canvas->size(), canvas->sizeHint()); + QCOMPARE(canvas->size(), canvas->initialSize()); QCOMPARE(sceneResizedSpy.count(), 1); // size update from view @@ -223,6 +227,7 @@ void tst_QDeclarativeView::resizemodegraphicswidget() QCOMPARE(graphicsWidget->size(), QSizeF(200.0, 200.0)); QCOMPARE(canvas->size(), QSize(200, 200)); QCOMPARE(canvas->size(), canvas->sizeHint()); + QCOMPARE(canvas->size(), canvas->initialSize()); QCOMPARE(sceneResizedSpy2.count(), 1); // size update from root object diff --git a/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp b/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp index 49273eaccb..91b7cf8741 100644 --- a/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp +++ b/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp @@ -59,6 +59,11 @@ public: private slots: void orientation(); + void loading(); + void fileBrowser(); + void resizing(); + void paths(); + void slowMode(); private: QDeclarativeEngine engine; @@ -108,6 +113,188 @@ void tst_QDeclarativeViewer::orientation() QCOMPARE(viewer->size(), viewer->sizeHint()); } +void tst_QDeclarativeViewer::loading() +{ + QDeclarativeViewer *viewer = new QDeclarativeViewer(); + QVERIFY(viewer); + viewer->setSizeToView(true); + viewer->open(SRCDIR "/data/orientation.qml"); + QVERIFY(viewer->view()); + QVERIFY(viewer->menuBar()); + QDeclarativeItem* rootItem = qobject_cast(viewer->view()->rootObject()); + QVERIFY(rootItem); + viewer->show(); + + // initial size + QCOMPARE(rootItem->width(), 200.0); + QCOMPARE(rootItem->height(), 300.0); + QCOMPARE(viewer->view()->size(), QSize(200, 300)); + QCOMPARE(viewer->view()->sceneRect().size(), QSizeF(200, 300)); + QCOMPARE(viewer->size(), QSize(200, 300+viewer->menuBar()->height())); + QCOMPARE(viewer->size(), viewer->sizeHint()); + + viewer->resize(QSize(400, 500)); + qApp->processEvents(); + + // window resized + QCOMPARE(rootItem->width(), 400.0); + QCOMPARE(rootItem->height(), 500.0-viewer->menuBar()->height()); + QCOMPARE(viewer->view()->size(), QSize(400, 500-viewer->menuBar()->height())); + QCOMPARE(viewer->view()->initialSize(), QSize(200, 300)); + QCOMPARE(viewer->view()->sceneRect().size(), QSizeF(400, 500-viewer->menuBar()->height())); + QCOMPARE(viewer->size(), QSize(400, 500)); + QCOMPARE(viewer->size(), viewer->sizeHint()); + + viewer->reload(); + rootItem = qobject_cast(viewer->view()->rootObject()); + QVERIFY(rootItem); + + // reload cause the window to return back to initial size + QCOMPARE(rootItem->width(), 200.0); + QCOMPARE(rootItem->height(), 300.0); + QCOMPARE(viewer->view()->size(), QSize(200, 300)); + QCOMPARE(viewer->view()->initialSize(), QSize(200, 300)); + QCOMPARE(viewer->view()->sceneRect().size(), QSizeF(200, 300)); + QCOMPARE(viewer->size(), QSize(200, 300+viewer->menuBar()->height())); + QCOMPARE(viewer->size(), viewer->sizeHint()); + + viewer->resize(QSize(400, 500)); + qApp->processEvents(); + + // window resized again + QCOMPARE(rootItem->width(), 400.0); + QCOMPARE(rootItem->height(), 500.0-viewer->menuBar()->height()); + QCOMPARE(viewer->view()->size(), QSize(400, 500-viewer->menuBar()->height())); + QCOMPARE(viewer->view()->initialSize(), QSize(200, 300)); + QCOMPARE(viewer->view()->sceneRect().size(), QSizeF(400, 500-viewer->menuBar()->height())); + QCOMPARE(viewer->size(), QSize(400, 500)); + QCOMPARE(viewer->size(), viewer->sizeHint()); + + viewer->open(SRCDIR "/data/orientation.qml"); + rootItem = qobject_cast(viewer->view()->rootObject()); + QVERIFY(rootItem); + + // open also causes the window to return back to initial size + QCOMPARE(rootItem->width(), 200.0); + QCOMPARE(rootItem->height(), 300.0); + QCOMPARE(viewer->view()->size(), QSize(200, 300)); + QCOMPARE(viewer->view()->initialSize(), QSize(200, 300)); + QCOMPARE(viewer->view()->sceneRect().size(), QSizeF(200, 300)); + QCOMPARE(viewer->size(), QSize(200, 300+viewer->menuBar()->height())); + QCOMPARE(viewer->size(), viewer->sizeHint()); +} + +void tst_QDeclarativeViewer::fileBrowser() +{ + QDeclarativeViewer *viewer = new QDeclarativeViewer(); + QVERIFY(viewer); + viewer->setUseNativeFileBrowser(false); + viewer->openFile(); + viewer->show(); + + // Browser.qml successfully loaded + QDeclarativeItem* browserItem = qobject_cast(viewer->view()->rootObject()); + QVERIFY(viewer->view()); + QVERIFY(viewer->menuBar()); + QVERIFY(browserItem); + + // load something + viewer->open(SRCDIR "/data/orientation.qml"); + QVERIFY(viewer->view()); + QVERIFY(viewer->menuBar()); + QDeclarativeItem* rootItem = qobject_cast(viewer->view()->rootObject()); + QVERIFY(rootItem); + QVERIFY(browserItem != rootItem); + + // go back to Browser.qml + viewer->openFile(); + browserItem = qobject_cast(viewer->view()->rootObject()); + QVERIFY(viewer->view()); + QVERIFY(viewer->menuBar()); + QVERIFY(browserItem); +} + +void tst_QDeclarativeViewer::resizing() +{ + QDeclarativeViewer *viewer = new QDeclarativeViewer(); + QVERIFY(viewer); + viewer->open(SRCDIR "/data/orientation.qml"); + QVERIFY(viewer->view()); + QVERIFY(viewer->menuBar()); + QDeclarativeItem* rootItem = qobject_cast(viewer->view()->rootObject()); + QVERIFY(rootItem); + viewer->show(); + + // initial size + QCOMPARE(rootItem->width(), 200.0); + QCOMPARE(rootItem->height(), 300.0); + QCOMPARE(viewer->view()->size(), QSize(200, 300)); + QCOMPARE(viewer->view()->initialSize(), QSize(200, 300)); + QCOMPARE(viewer->view()->sceneRect().size(), QSizeF(200, 300)); + QCOMPARE(viewer->size(), QSize(200, 300+viewer->menuBar()->height())); + QCOMPARE(viewer->size(), viewer->sizeHint()); + + viewer->setSizeToView(false); + + // size view to root object + rootItem->setWidth(100); + rootItem->setHeight(200); + qApp->processEvents(); + + QCOMPARE(rootItem->width(), 100.0); + QCOMPARE(rootItem->height(), 200.0); + QCOMPARE(viewer->view()->size(), QSize(100, 200)); + QCOMPARE(viewer->view()->initialSize(), QSize(200, 300)); + QCOMPARE(viewer->view()->sceneRect().size(), QSizeF(100, 200)); + QCOMPARE(viewer->size(), QSize(100, 200+viewer->menuBar()->height())); + QCOMPARE(viewer->size(), viewer->sizeHint()); + + // do not size root object to view + viewer->resize(QSize(150,250)); + QCOMPARE(rootItem->width(), 100.0); + QCOMPARE(rootItem->height(), 200.0); + + viewer->setSizeToView(true); + + // size root object to view + viewer->resize(QSize(250,350)); + qApp->processEvents(); + + QCOMPARE(rootItem->width(), 250.0); + QCOMPARE(rootItem->height(), 350.0-viewer->menuBar()->height()); + QCOMPARE(viewer->view()->size(), QSize(250, 350-viewer->menuBar()->height())); + QCOMPARE(viewer->view()->initialSize(), QSize(200, 300)); + QCOMPARE(viewer->view()->sceneRect().size(), QSizeF(250, 350-viewer->menuBar()->height())); + QCOMPARE(viewer->size(), QSize(250, 350)); + QCOMPARE(viewer->size(), viewer->sizeHint()); + + // do not size view to root object + rootItem->setWidth(100); + rootItem->setHeight(200); + QCOMPARE(viewer->size(), QSize(250, 350)); +} + +void tst_QDeclarativeViewer::paths() +{ + QDeclarativeViewer *viewer = new QDeclarativeViewer(); + QVERIFY(viewer); + + viewer->addLibraryPath("miscImportPath"); + viewer->view()->engine()->importPathList().contains("miscImportPath"); + + viewer->addPluginPath("miscPluginPath"); + viewer->view()->engine()->pluginPathList().contains("miscPluginPath"); +} + +void tst_QDeclarativeViewer::slowMode() +{ + QDeclarativeViewer *viewer = new QDeclarativeViewer(); + QVERIFY(viewer); + + viewer->setSlowMode(true); + viewer->setSlowMode(false); +} + QTEST_MAIN(tst_QDeclarativeViewer) #include "tst_qdeclarativeviewer.moc" -- cgit v1.2.1 From cd05d3ec57a9e1de604933201530ee0a81d12a39 Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Wed, 9 Jun 2010 14:39:28 +1000 Subject: Fix autotest. --- .../declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp b/tests/auto/declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp index 237d020bd7..81334f20cc 100644 --- a/tests/auto/declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp +++ b/tests/auto/declarative/qdeclarativevaluetypes/tst_qdeclarativevaluetypes.cpp @@ -51,7 +51,9 @@ #define SRCDIR "." #endif +QT_BEGIN_NAMESPACE extern int qt_defaultDpi(); +QT_END_NAMESPACE class tst_qdeclarativevaluetypes : public QObject { -- cgit v1.2.1 From 96032bd846c7188ce2655d2402c7a745e91a5168 Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Thu, 10 Jun 2010 09:32:20 +1000 Subject: Fix crash when changing ListView model with highlightRangeMode: ListView.StrictlyEnforceRange Task-number: QTBUG-11328 --- .../declarative/qdeclarativegridview/tst_qdeclarativegridview.cpp | 7 +++++++ .../declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp | 8 ++++++++ 2 files changed, 15 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativegridview/tst_qdeclarativegridview.cpp b/tests/auto/declarative/qdeclarativegridview/tst_qdeclarativegridview.cpp index 9b7c261abe..4e35bc0823 100644 --- a/tests/auto/declarative/qdeclarativegridview/tst_qdeclarativegridview.cpp +++ b/tests/auto/declarative/qdeclarativegridview/tst_qdeclarativegridview.cpp @@ -1110,6 +1110,13 @@ void tst_QDeclarativeGridView::enforceRange() gridview->setCurrentIndex(5); QTRY_COMPARE(gridview->contentY(), 100.); + TestModel model2; + for (int i = 0; i < 5; i++) + model2.addItem("Item" + QString::number(i), ""); + + ctxt->setContextProperty("testModel", &model2); + QCOMPARE(gridview->count(), 5); + delete canvas; } diff --git a/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp b/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp index 7376c0069b..cd42b63a05 100644 --- a/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp +++ b/tests/auto/declarative/qdeclarativelistview/tst_qdeclarativelistview.cpp @@ -807,6 +807,14 @@ void tst_QDeclarativeListView::enforceRange() QTRY_COMPARE(listview->currentIndex(), 6); + // change model + TestModel model2; + for (int i = 0; i < 5; i++) + model2.addItem("Item" + QString::number(i), ""); + + ctxt->setContextProperty("testModel", &model2); + QCOMPARE(listview->count(), 5); + delete canvas; } -- cgit v1.2.1 From 4a36a17e06b3ec7c20bcef9692d46dba5504151a Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Wed, 9 Jun 2010 18:04:48 +1000 Subject: Doc improvements: move some example code to snippets, add screenshots, other minor doc fixes --- tests/auto/declarative/examples/tst_examples.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/examples/tst_examples.cpp b/tests/auto/declarative/examples/tst_examples.cpp index da115a7853..cff0b46d39 100644 --- a/tests/auto/declarative/examples/tst_examples.cpp +++ b/tests/auto/declarative/examples/tst_examples.cpp @@ -85,6 +85,7 @@ tst_examples::tst_examples() // Add directories you want excluded here + excludedDirs << "doc/src/snippets/declarative/visualdatamodel_rootindex"; #ifdef QT_NO_WEBKIT excludedDirs << "examples/declarative/modelviews/webview"; -- cgit v1.2.1 From 6eb8af2ceca2d0fc8b7108bec3525d915d31fe65 Mon Sep 17 00:00:00 2001 From: Warwick Allison Date: Thu, 10 Jun 2010 10:22:34 +1000 Subject: Improve test stability. --- .../qdeclarativeviewer/tst_qdeclarativeviewer.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp b/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp index 91b7cf8741..abc9688e33 100644 --- a/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp +++ b/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp @@ -44,6 +44,7 @@ #include #include #include "qmlruntime.h" +#include "../../../shared/util.h" #ifdef Q_OS_SYMBIAN // In Symbian OS test data is located in applications private dir @@ -85,6 +86,10 @@ void tst_QDeclarativeViewer::orientation() QVERIFY(rootItem); window.show(); + QApplication::setActiveWindow(&window); + QTest::qWaitForWindowShown(&window); + QTRY_COMPARE(QApplication::activeWindow(), static_cast(&window)); + QCOMPARE(rootItem->width(), 200.0); QCOMPARE(rootItem->height(), 300.0); QCOMPARE(viewer->view()->size(), QSize(200, 300)); @@ -125,6 +130,10 @@ void tst_QDeclarativeViewer::loading() QVERIFY(rootItem); viewer->show(); + QApplication::setActiveWindow(viewer); + QTest::qWaitForWindowShown(viewer); + QTRY_COMPARE(QApplication::activeWindow(), static_cast(viewer)); + // initial size QCOMPARE(rootItem->width(), 200.0); QCOMPARE(rootItem->height(), 300.0); @@ -192,6 +201,10 @@ void tst_QDeclarativeViewer::fileBrowser() viewer->openFile(); viewer->show(); + QApplication::setActiveWindow(viewer); + QTest::qWaitForWindowShown(viewer); + QTRY_COMPARE(QApplication::activeWindow(), static_cast(viewer)); + // Browser.qml successfully loaded QDeclarativeItem* browserItem = qobject_cast(viewer->view()->rootObject()); QVERIFY(viewer->view()); @@ -225,6 +238,10 @@ void tst_QDeclarativeViewer::resizing() QVERIFY(rootItem); viewer->show(); + QApplication::setActiveWindow(viewer); + QTest::qWaitForWindowShown(viewer); + QTRY_COMPARE(QApplication::activeWindow(), static_cast(viewer)); + // initial size QCOMPARE(rootItem->width(), 200.0); QCOMPARE(rootItem->height(), 300.0); -- cgit v1.2.1 From 85864036462e80c18b8a272eb4dcbe339b7033e0 Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Thu, 10 Jun 2010 10:33:44 +1000 Subject: Stablize qmlviewer test --- .../qdeclarativeviewer/tst_qdeclarativeviewer.cpp | 27 +++++++++++----------- 1 file changed, 14 insertions(+), 13 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp b/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp index 91b7cf8741..86265602ad 100644 --- a/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp +++ b/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp @@ -43,6 +43,7 @@ #include #include #include +#include "../../../shared/util.h" #include "qmlruntime.h" #ifdef Q_OS_SYMBIAN @@ -126,8 +127,8 @@ void tst_QDeclarativeViewer::loading() viewer->show(); // initial size - QCOMPARE(rootItem->width(), 200.0); - QCOMPARE(rootItem->height(), 300.0); + QTRY_COMPARE(rootItem->width(), 200.0); + QTRY_COMPARE(rootItem->height(), 300.0); QCOMPARE(viewer->view()->size(), QSize(200, 300)); QCOMPARE(viewer->view()->sceneRect().size(), QSizeF(200, 300)); QCOMPARE(viewer->size(), QSize(200, 300+viewer->menuBar()->height())); @@ -137,8 +138,8 @@ void tst_QDeclarativeViewer::loading() qApp->processEvents(); // window resized - QCOMPARE(rootItem->width(), 400.0); - QCOMPARE(rootItem->height(), 500.0-viewer->menuBar()->height()); + QTRY_COMPARE(rootItem->width(), 400.0); + QTRY_COMPARE(rootItem->height(), 500.0-viewer->menuBar()->height()); QCOMPARE(viewer->view()->size(), QSize(400, 500-viewer->menuBar()->height())); QCOMPARE(viewer->view()->initialSize(), QSize(200, 300)); QCOMPARE(viewer->view()->sceneRect().size(), QSizeF(400, 500-viewer->menuBar()->height())); @@ -150,8 +151,8 @@ void tst_QDeclarativeViewer::loading() QVERIFY(rootItem); // reload cause the window to return back to initial size - QCOMPARE(rootItem->width(), 200.0); - QCOMPARE(rootItem->height(), 300.0); + QTRY_COMPARE(rootItem->width(), 200.0); + QTRY_COMPARE(rootItem->height(), 300.0); QCOMPARE(viewer->view()->size(), QSize(200, 300)); QCOMPARE(viewer->view()->initialSize(), QSize(200, 300)); QCOMPARE(viewer->view()->sceneRect().size(), QSizeF(200, 300)); @@ -162,8 +163,8 @@ void tst_QDeclarativeViewer::loading() qApp->processEvents(); // window resized again - QCOMPARE(rootItem->width(), 400.0); - QCOMPARE(rootItem->height(), 500.0-viewer->menuBar()->height()); + QTRY_COMPARE(rootItem->width(), 400.0); + QTRY_COMPARE(rootItem->height(), 500.0-viewer->menuBar()->height()); QCOMPARE(viewer->view()->size(), QSize(400, 500-viewer->menuBar()->height())); QCOMPARE(viewer->view()->initialSize(), QSize(200, 300)); QCOMPARE(viewer->view()->sceneRect().size(), QSizeF(400, 500-viewer->menuBar()->height())); @@ -175,8 +176,8 @@ void tst_QDeclarativeViewer::loading() QVERIFY(rootItem); // open also causes the window to return back to initial size - QCOMPARE(rootItem->width(), 200.0); - QCOMPARE(rootItem->height(), 300.0); + QTRY_COMPARE(rootItem->width(), 200.0); + QTRY_COMPARE(rootItem->height(), 300.0); QCOMPARE(viewer->view()->size(), QSize(200, 300)); QCOMPARE(viewer->view()->initialSize(), QSize(200, 300)); QCOMPARE(viewer->view()->sceneRect().size(), QSizeF(200, 300)); @@ -260,8 +261,8 @@ void tst_QDeclarativeViewer::resizing() viewer->resize(QSize(250,350)); qApp->processEvents(); - QCOMPARE(rootItem->width(), 250.0); - QCOMPARE(rootItem->height(), 350.0-viewer->menuBar()->height()); + QTRY_COMPARE(rootItem->width(), 250.0); + QTRY_COMPARE(rootItem->height(), 350.0-viewer->menuBar()->height()); QCOMPARE(viewer->view()->size(), QSize(250, 350-viewer->menuBar()->height())); QCOMPARE(viewer->view()->initialSize(), QSize(200, 300)); QCOMPARE(viewer->view()->sceneRect().size(), QSizeF(250, 350-viewer->menuBar()->height())); @@ -271,7 +272,7 @@ void tst_QDeclarativeViewer::resizing() // do not size view to root object rootItem->setWidth(100); rootItem->setHeight(200); - QCOMPARE(viewer->size(), QSize(250, 350)); + QTRY_COMPARE(viewer->size(), QSize(250, 350)); } void tst_QDeclarativeViewer::paths() -- cgit v1.2.1 From 7101ae5a0e90d97acf86a444c4d51ca45e7863fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Nilsen?= Date: Fri, 4 Jun 2010 12:12:01 +0200 Subject: QWidget::childAt for masked child widgets doesn't work properly Problem was that we didn't take the children's effective mask into account when checking whether a point was inside or not. This commit is also an optimization since we no longer check the point against the widget's rect twice. Furthermore, unnecessary QRegion operations are completely avoided in the common case. Auto tests included. Task-number: QTBUG-7150 Reviewed-by: paul --- tests/auto/qwidget/tst_qwidget.cpp | 97 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 97 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qwidget/tst_qwidget.cpp b/tests/auto/qwidget/tst_qwidget.cpp index a1fc60777c..d76bbfa0d9 100644 --- a/tests/auto/qwidget/tst_qwidget.cpp +++ b/tests/auto/qwidget/tst_qwidget.cpp @@ -404,6 +404,10 @@ private slots: void taskQTBUG_7532_tabOrderWithFocusProxy(); void movedAndResizedAttributes(); + void childAt(); +#ifdef Q_WS_MAC + void childAt_unifiedToolBar(); +#endif private: bool ensureScreenSize(int width, int height); @@ -10347,5 +10351,98 @@ void tst_QWidget::movedAndResizedAttributes() #endif } +void tst_QWidget::childAt() +{ + QWidget parent(0, Qt::FramelessWindowHint); + parent.resize(200, 200); + + QWidget *child = new QWidget(&parent); + child->setPalette(Qt::red); + child->setAutoFillBackground(true); + child->setGeometry(20, 20, 160, 160); + + QWidget *grandChild = new QWidget(child); + grandChild->setPalette(Qt::blue); + grandChild->setAutoFillBackground(true); + grandChild->setGeometry(-20, -20, 220, 220); + + QVERIFY(!parent.childAt(19, 19)); + QVERIFY(!parent.childAt(180, 180)); + QCOMPARE(parent.childAt(20, 20), grandChild); + QCOMPARE(parent.childAt(179, 179), grandChild); + + grandChild->setAttribute(Qt::WA_TransparentForMouseEvents); + QCOMPARE(parent.childAt(20, 20), child); + QCOMPARE(parent.childAt(179, 179), child); + grandChild->setAttribute(Qt::WA_TransparentForMouseEvents, false); + + child->setMask(QRect(50, 50, 60, 60)); + + QVERIFY(!parent.childAt(69, 69)); + QVERIFY(!parent.childAt(130, 130)); + QCOMPARE(parent.childAt(70, 70), grandChild); + QCOMPARE(parent.childAt(129, 129), grandChild); + + child->setAttribute(Qt::WA_MouseNoMask); + QCOMPARE(parent.childAt(69, 69), grandChild); + QCOMPARE(parent.childAt(130, 130), grandChild); + child->setAttribute(Qt::WA_MouseNoMask, false); + + grandChild->setAttribute(Qt::WA_TransparentForMouseEvents); + QCOMPARE(parent.childAt(70, 70), child); + QCOMPARE(parent.childAt(129, 129), child); + grandChild->setAttribute(Qt::WA_TransparentForMouseEvents, false); + + grandChild->setMask(QRect(80, 80, 40, 40)); + + QCOMPARE(parent.childAt(79, 79), child); + QCOMPARE(parent.childAt(120, 120), child); + QCOMPARE(parent.childAt(80, 80), grandChild); + QCOMPARE(parent.childAt(119, 119), grandChild); + + grandChild->setAttribute(Qt::WA_MouseNoMask); + + QCOMPARE(parent.childAt(79, 79), grandChild); + QCOMPARE(parent.childAt(120, 120), grandChild); +} + +#ifdef Q_WS_MAC +void tst_QWidget::childAt_unifiedToolBar() +{ + QLabel *label = new QLabel(QLatin1String("foo")); + QToolBar *toolBar = new QToolBar; + toolBar->addWidget(new QLabel("dummy")); + toolBar->addWidget(label); + + QMainWindow mainWindow; + mainWindow.addToolBar(toolBar); + mainWindow.show(); + + // Calculate the top-left corner of the tool bar and the label (in mainWindow's coordinates). + QPoint labelTopLeft = label->mapTo(&mainWindow, QPoint()); + QPoint toolBarTopLeft = toolBar->mapTo(&mainWindow, QPoint()); + + QCOMPARE(mainWindow.childAt(toolBarTopLeft), static_cast(toolBar)); + QCOMPARE(mainWindow.childAt(labelTopLeft), static_cast(label)); + + // Enable unified tool bars. + mainWindow.setUnifiedTitleAndToolBarOnMac(true); + QTest::qWait(50); + + // The tool bar is now in the "non-client" area of QMainWindow, i.e. + // outside the mainWindow's rect(), and since mapTo et al. doesn't work + // in that case (see commit 35667fd45ada49269a5987c235fdedfc43e92bb8), + // we use mapToGlobal/mapFromGlobal to re-calculate the corners. + QPoint oldToolBarTopLeft = toolBarTopLeft; + toolBarTopLeft = mainWindow.mapFromGlobal(toolBar->mapToGlobal(QPoint())); + QVERIFY(toolBarTopLeft != oldToolBarTopLeft); + QVERIFY(toolBarTopLeft.y() < 0); + labelTopLeft = mainWindow.mapFromGlobal(label->mapToGlobal(QPoint())); + + QCOMPARE(mainWindow.childAt(toolBarTopLeft), static_cast(toolBar)); + QCOMPARE(mainWindow.childAt(labelTopLeft), static_cast(label)); +} +#endif + QTEST_MAIN(tst_QWidget) #include "tst_qwidget.moc" -- cgit v1.2.1 From 0d5649713af91dcce58a623bbef7d38e2fbdf13b Mon Sep 17 00:00:00 2001 From: Mark Brand Date: Thu, 10 Jun 2010 14:35:03 +0200 Subject: use "win32-g++*" scope to match all MinGW makespecs The scope "win32-g++" comes from the name of the makespec. However, it is frequently used to check for MinGW. This works fine as long as win32-g++ is the only makespec for MinGW. Now we need the wildcard to cover "win32-g++-cross" as well. Also reordered test of win32 before win32-g++*. Also took opportunity to use else. Merge-request: 2407 Reviewed-by: Oswald Buddenhagen --- tests/auto/qprocess/testProcessEOF/testProcessEOF.pro | 2 +- tests/auto/qsqldriver/qsqldriver.pro | 2 +- tests/auto/qsqlrelationaltablemodel/qsqlrelationaltablemodel.pro | 2 +- tests/auto/qtcpserver/crashingServer/crashingServer.pro | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qprocess/testProcessEOF/testProcessEOF.pro b/tests/auto/qprocess/testProcessEOF/testProcessEOF.pro index f40675937e..756bd23bb0 100644 --- a/tests/auto/qprocess/testProcessEOF/testProcessEOF.pro +++ b/tests/auto/qprocess/testProcessEOF/testProcessEOF.pro @@ -2,7 +2,7 @@ SOURCES = main.cpp CONFIG -= qt app_bundle CONFIG += console -!win32-g++:win32:!equals(TEMPLATE_PREFIX, "vc"):QMAKE_CXXFLAGS += /GS- +win32:!win32-g++*:!equals(TEMPLATE_PREFIX, "vc"):QMAKE_CXXFLAGS += /GS- DESTDIR = ./ diff --git a/tests/auto/qsqldriver/qsqldriver.pro b/tests/auto/qsqldriver/qsqldriver.pro index d04ca83560..2e9ed67369 100644 --- a/tests/auto/qsqldriver/qsqldriver.pro +++ b/tests/auto/qsqldriver/qsqldriver.pro @@ -9,7 +9,7 @@ wince*: { DEPLOYMENT += plugFiles LIBS += -lws2 } else { - win32-g++ { + win32-g++* { LIBS += -lws2_32 } else:win32 { LIBS += ws2_32.lib diff --git a/tests/auto/qsqlrelationaltablemodel/qsqlrelationaltablemodel.pro b/tests/auto/qsqlrelationaltablemodel/qsqlrelationaltablemodel.pro index ee4f2f08c3..c6681d53b3 100644 --- a/tests/auto/qsqlrelationaltablemodel/qsqlrelationaltablemodel.pro +++ b/tests/auto/qsqlrelationaltablemodel/qsqlrelationaltablemodel.pro @@ -17,7 +17,7 @@ wince*: { } } } else { - win32-g++ { + win32-g++* { LIBS += -lws2_32 } else:win32 { LIBS += ws2_32.lib diff --git a/tests/auto/qtcpserver/crashingServer/crashingServer.pro b/tests/auto/qtcpserver/crashingServer/crashingServer.pro index 70e42b4456..0bea655187 100644 --- a/tests/auto/qtcpserver/crashingServer/crashingServer.pro +++ b/tests/auto/qtcpserver/crashingServer/crashingServer.pro @@ -5,4 +5,4 @@ DESTDIR = ./ # This means the auto test works on some machines for MinGW. No dialog stalls # the application. -win32-g++:CONFIG += console +win32-g++*:CONFIG += console -- cgit v1.2.1 From 90518a59df46312d56e4c6bc7080415b44b928f4 Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Thu, 10 Jun 2010 12:36:15 +0200 Subject: tst_qlocalsocket: pro files of client / server examples fixed Reviewed-by: ossi --- tests/auto/qlocalsocket/example/client/client.pro | 6 ------ tests/auto/qlocalsocket/example/server/server.pro | 6 ------ 2 files changed, 12 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qlocalsocket/example/client/client.pro b/tests/auto/qlocalsocket/example/client/client.pro index eb7e6e67a4..84f20d6ec0 100644 --- a/tests/auto/qlocalsocket/example/client/client.pro +++ b/tests/auto/qlocalsocket/example/client/client.pro @@ -1,14 +1,8 @@ -###################################################################### -# Automatically generated by qmake (2.01a) Wed Jun 6 17:07:12 2007 -###################################################################### - TEMPLATE = app TARGET = DEPENDPATH += . INCLUDEPATH += . CONFIG += console -include(../../src/src.pri) -# Input QT = core network SOURCES += main.cpp diff --git a/tests/auto/qlocalsocket/example/server/server.pro b/tests/auto/qlocalsocket/example/server/server.pro index 438462d064..bfd14d2bb7 100644 --- a/tests/auto/qlocalsocket/example/server/server.pro +++ b/tests/auto/qlocalsocket/example/server/server.pro @@ -1,7 +1,3 @@ -###################################################################### -# Automatically generated by qmake (2.01a) Wed Jun 6 15:16:48 2007 -###################################################################### - TEMPLATE = app TARGET = DEPENDPATH += . @@ -11,8 +7,6 @@ CONFIG += console QT = core network -include(../../src/src.pri) - # Input SOURCES += main.cpp -- cgit v1.2.1 From 6c8b980a8ea8009a7b80fcce419e331df778a989 Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Thu, 10 Jun 2010 12:37:47 +0200 Subject: tst_QLocalSocket::threadedConnection autotest stabilized Fixed race condition on connection. Done-with: ossi Reviewed-by: ossi --- tests/auto/qlocalsocket/tst_qlocalsocket.cpp | 38 +++++++++------------------- 1 file changed, 12 insertions(+), 26 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qlocalsocket/tst_qlocalsocket.cpp b/tests/auto/qlocalsocket/tst_qlocalsocket.cpp index 44f3c12a83..dbb58c19cb 100644 --- a/tests/auto/qlocalsocket/tst_qlocalsocket.cpp +++ b/tests/auto/qlocalsocket/tst_qlocalsocket.cpp @@ -683,25 +683,11 @@ public: QString testLine = "test"; LocalSocket socket; QSignalSpy spyReadyRead(&socket, SIGNAL(readyRead())); - int tries = 0; - do { - socket.connectToServer("qlocalsocket_threadtest"); - if (socket.error() != QLocalSocket::ServerNotFoundError - && socket.error() != QLocalSocket::ConnectionRefusedError) - break; - QTest::qWait(100); - ++tries; - } while ((socket.error() == QLocalSocket::ServerNotFoundError - || socket.error() == QLocalSocket::ConnectionRefusedError) - && tries < 1000); - if (tries == 0 && socket.state() != QLocalSocket::ConnectedState) { - QVERIFY(socket.waitForConnected(7000)); - QVERIFY(socket.state() == QLocalSocket::ConnectedState); - } + socket.connectToServer("qlocalsocket_threadtest"); + QVERIFY(socket.waitForConnected(1000)); // We should *not* have this signal yet! - if (tries == 0) - QCOMPARE(spyReadyRead.count(), 0); + QCOMPARE(spyReadyRead.count(), 0); socket.waitForReadyRead(); QCOMPARE(spyReadyRead.count(), 1); QTextStream in(&socket); @@ -715,6 +701,8 @@ class Server : public QThread public: int clients; + QMutex mutex; + QWaitCondition wc; void run() { QString testLine = "test"; @@ -722,6 +710,9 @@ public: server.setMaxPendingConnections(10); QVERIFY2(server.listen("qlocalsocket_threadtest"), server.errorString().toLatin1().constData()); + mutex.lock(); + wc.wakeAll(); + mutex.unlock(); int done = clients; while (done > 0) { bool timedOut = true; @@ -746,14 +737,9 @@ void tst_QLocalSocket::threadedConnection_data() QTest::addColumn("threads"); QTest::newRow("1 client") << 1; QTest::newRow("2 clients") << 2; -#ifdef Q_OS_WINCE - QTest::newRow("4 clients") << 4; -#endif -#ifndef Q_OS_WIN QTest::newRow("5 clients") << 5; - QTest::newRow("10 clients") << 10; -#endif #ifndef Q_OS_WINCE + QTest::newRow("10 clients") << 10; QTest::newRow("20 clients") << 20; #endif } @@ -770,7 +756,9 @@ void tst_QLocalSocket::threadedConnection() server.setStackSize(0x14000); #endif server.clients = threads; + server.mutex.lock(); server.start(); + server.wc.wait(&server.mutex); QList clients; for (int i = 0; i < threads; ++i) { @@ -784,9 +772,7 @@ void tst_QLocalSocket::threadedConnection() server.wait(); while (!clients.isEmpty()) { QVERIFY(clients.first()->wait(3000)); - Client *client =clients.takeFirst(); - client->terminate(); - delete client; + delete clients.takeFirst(); } } -- cgit v1.2.1 From 12614b2c5aaaed44ef9b3d1b3f6dbf50fd2d405f Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Thu, 10 Jun 2010 13:10:27 +0200 Subject: QLocalSocket: fix reading from a socket after broken connection Reading from a socket with a broken connection didn't work, even if there were still bytes to read in the internal read buffer. Autotest: tst_QLocalSocket::writeToClientAndDisconnect Task-number: QTBUG-10921 Reviewed-by: ossi --- tests/auto/qlocalsocket/tst_qlocalsocket.cpp | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qlocalsocket/tst_qlocalsocket.cpp b/tests/auto/qlocalsocket/tst_qlocalsocket.cpp index dbb58c19cb..87a30c2186 100644 --- a/tests/auto/qlocalsocket/tst_qlocalsocket.cpp +++ b/tests/auto/qlocalsocket/tst_qlocalsocket.cpp @@ -980,6 +980,7 @@ void tst_QLocalSocket::writeToClientAndDisconnect() QLocalServer server; QLocalSocket client; + QSignalSpy readChannelFinishedSpy(&client, SIGNAL(readChannelFinished())); QVERIFY(server.listen("writeAndDisconnectServer")); client.connectToServer("writeAndDisconnectServer"); @@ -992,10 +993,19 @@ void tst_QLocalSocket::writeToClientAndDisconnect() memset(buffer, 0, sizeof(buffer)); QCOMPARE(clientSocket->write(buffer, sizeof(buffer)), (qint64)sizeof(buffer)); clientSocket->waitForBytesWritten(); - clientSocket->disconnectFromServer(); - QVERIFY(client.waitForReadyRead()); + clientSocket->close(); + server.close(); + + // Wait for the client to notice the broken connection. + int timeout = 5000; + do { + const int timestep = 100; + QTest::qWait(timestep); + timeout -= timestep; + } while (!readChannelFinishedSpy.count() && timeout > 0); + + QVERIFY(!readChannelFinishedSpy.isEmpty()); QCOMPARE(client.read(buffer, sizeof(buffer)), (qint64)sizeof(buffer)); - QVERIFY(client.waitForDisconnected()); QCOMPARE(client.state(), QLocalSocket::UnconnectedState); } -- cgit v1.2.1 From 073d04f1c2c5dc7020469bfc92708dce634f4779 Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Thu, 10 Jun 2010 14:16:24 +0200 Subject: QLocalSocket: don't emit readChannelFinished() twice on Windows Reviewed-by: ossi --- tests/auto/qlocalsocket/tst_qlocalsocket.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/qlocalsocket/tst_qlocalsocket.cpp b/tests/auto/qlocalsocket/tst_qlocalsocket.cpp index 87a30c2186..d2cba6ecb5 100644 --- a/tests/auto/qlocalsocket/tst_qlocalsocket.cpp +++ b/tests/auto/qlocalsocket/tst_qlocalsocket.cpp @@ -1004,7 +1004,7 @@ void tst_QLocalSocket::writeToClientAndDisconnect() timeout -= timestep; } while (!readChannelFinishedSpy.count() && timeout > 0); - QVERIFY(!readChannelFinishedSpy.isEmpty()); + QCOMPARE(readChannelFinishedSpy.count(), 1); QCOMPARE(client.read(buffer, sizeof(buffer)), (qint64)sizeof(buffer)); QCOMPARE(client.state(), QLocalSocket::UnconnectedState); } -- cgit v1.2.1 From 947358481f27ae44423d218aaece36375a2f7a2d Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Fri, 11 Jun 2010 11:45:01 +1000 Subject: Fix qmlviewer test failure on windows Attempted to make window size smaller than Windows minimum. --- .../qdeclarativeviewer/tst_qdeclarativeviewer.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp b/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp index ef99173181..c249414d64 100644 --- a/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp +++ b/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp @@ -255,21 +255,21 @@ void tst_QDeclarativeViewer::resizing() viewer->setSizeToView(false); // size view to root object - rootItem->setWidth(100); + rootItem->setWidth(150); rootItem->setHeight(200); qApp->processEvents(); - QCOMPARE(rootItem->width(), 100.0); + QCOMPARE(rootItem->width(), 150.0); QCOMPARE(rootItem->height(), 200.0); - QCOMPARE(viewer->view()->size(), QSize(100, 200)); + QCOMPARE(viewer->view()->size(), QSize(150, 200)); QCOMPARE(viewer->view()->initialSize(), QSize(200, 300)); - QCOMPARE(viewer->view()->sceneRect().size(), QSizeF(100, 200)); - QCOMPARE(viewer->size(), QSize(100, 200+viewer->menuBar()->height())); + QCOMPARE(viewer->view()->sceneRect().size(), QSizeF(150, 200)); + QCOMPARE(viewer->size(), QSize(150, 200+viewer->menuBar()->height())); QCOMPARE(viewer->size(), viewer->sizeHint()); // do not size root object to view - viewer->resize(QSize(150,250)); - QCOMPARE(rootItem->width(), 100.0); + viewer->resize(QSize(180,250)); + QCOMPARE(rootItem->width(), 150.0); QCOMPARE(rootItem->height(), 200.0); viewer->setSizeToView(true); @@ -287,7 +287,7 @@ void tst_QDeclarativeViewer::resizing() QCOMPARE(viewer->size(), viewer->sizeHint()); // do not size view to root object - rootItem->setWidth(100); + rootItem->setWidth(150); rootItem->setHeight(200); QTRY_COMPARE(viewer->size(), QSize(250, 350)); } -- cgit v1.2.1 From 5e99815f85c953760d027be50caea5a386b6b710 Mon Sep 17 00:00:00 2001 From: Bea Lam Date: Fri, 11 Jun 2010 14:15:30 +1000 Subject: Fix test - sizeHint should not change after initial load. Also use QTRY_COMPARE for some tests. --- .../declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp b/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp index c249414d64..f30f75877c 100644 --- a/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp +++ b/tests/auto/declarative/qdeclarativeviewer/tst_qdeclarativeviewer.cpp @@ -93,7 +93,7 @@ void tst_QDeclarativeViewer::orientation() QCOMPARE(rootItem->width(), 200.0); QCOMPARE(rootItem->height(), 300.0); - QCOMPARE(viewer->view()->size(), QSize(200, 300)); + QTRY_COMPARE(viewer->view()->size(), QSize(200, 300)); QCOMPARE(viewer->view()->sceneRect().size(), QSizeF(200, 300)); QCOMPARE(viewer->size(), QSize(200, 300+viewer->menuBar()->height())); QCOMPARE(viewer->size(), viewer->sizeHint()); @@ -103,7 +103,7 @@ void tst_QDeclarativeViewer::orientation() QCOMPARE(rootItem->width(), 300.0); QCOMPARE(rootItem->height(), 200.0); - QCOMPARE(viewer->view()->size(), QSize(300, 200)); + QTRY_COMPARE(viewer->view()->size(), QSize(300, 200)); QCOMPARE(viewer->view()->sceneRect().size(), QSizeF(300, 200)); QCOMPARE(viewer->size(), QSize(300, 200+viewer->menuBar()->height())); QCOMPARE(viewer->size(), viewer->sizeHint()); @@ -113,7 +113,7 @@ void tst_QDeclarativeViewer::orientation() QCOMPARE(rootItem->width(), 200.0); QCOMPARE(rootItem->height(), 300.0); - QCOMPARE(viewer->view()->size(), QSize(200, 300)); + QTRY_COMPARE(viewer->view()->size(), QSize(200, 300)); QCOMPARE(viewer->view()->sceneRect().size(), QSizeF(200, 300)); QCOMPARE(viewer->size(), QSize(200, 300+viewer->menuBar()->height())); QCOMPARE(viewer->size(), viewer->sizeHint()); @@ -265,7 +265,6 @@ void tst_QDeclarativeViewer::resizing() QCOMPARE(viewer->view()->initialSize(), QSize(200, 300)); QCOMPARE(viewer->view()->sceneRect().size(), QSizeF(150, 200)); QCOMPARE(viewer->size(), QSize(150, 200+viewer->menuBar()->height())); - QCOMPARE(viewer->size(), viewer->sizeHint()); // do not size root object to view viewer->resize(QSize(180,250)); @@ -284,7 +283,6 @@ void tst_QDeclarativeViewer::resizing() QCOMPARE(viewer->view()->initialSize(), QSize(200, 300)); QCOMPARE(viewer->view()->sceneRect().size(), QSizeF(250, 350-viewer->menuBar()->height())); QCOMPARE(viewer->size(), QSize(250, 350)); - QCOMPARE(viewer->size(), viewer->sizeHint()); // do not size view to root object rootItem->setWidth(150); -- cgit v1.2.1 From 787b56fbcad2eda8ababc919a535fb2f9ef48fb5 Mon Sep 17 00:00:00 2001 From: Miikka Heikkinen Date: Fri, 11 Jun 2010 14:35:18 +0300 Subject: Show EditorDateEdit before changing selection in qdatetimeedit test In Symbian plaform showing a widget automatically focuses it by design, which breaks this test case. Changed the selection change to happen after widget show, as this test case doesn't require it to happen before show. Task-number: QTBUG-11046 Reviewed-by: axis --- tests/auto/qdatetimeedit/tst_qdatetimeedit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/qdatetimeedit/tst_qdatetimeedit.cpp b/tests/auto/qdatetimeedit/tst_qdatetimeedit.cpp index 558d4de3b7..3125258a2b 100644 --- a/tests/auto/qdatetimeedit/tst_qdatetimeedit.cpp +++ b/tests/auto/qdatetimeedit/tst_qdatetimeedit.cpp @@ -3148,8 +3148,8 @@ void tst_QDateTimeEdit::nextPrevSection() EditorDateEdit edit; edit.setDisplayFormat("hh/mm/bc9ss"); edit.setTime(QTime(12, 34, 56)); - edit.setSelectedSection(QDateTimeEdit::MinuteSection); edit.show(); + edit.setSelectedSection(QDateTimeEdit::MinuteSection); QCOMPARE(edit.lineEdit()->selectedText(), QString("34")); // selftest QTest::keyClick(&edit, key, modifiers); QCOMPARE(edit.lineEdit()->selectedText(), selectedText); -- cgit v1.2.1 From 9a16161889c7f6c15c4d5679148a28fe51f95abb Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Wed, 9 Jun 2010 10:04:50 +0200 Subject: QMetaType: do not crash when registering builtin stream operator It is not required to register builtin operator, but old code might do so if a type was not builtin before. This is the case of QVariant which became builtin only in Qt 4.7 Task-number: QTBUG-11316 Reviewed-by: Gabriel --- tests/auto/qmetatype/tst_qmetatype.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qmetatype/tst_qmetatype.cpp b/tests/auto/qmetatype/tst_qmetatype.cpp index f4e122f3c4..8558e06f95 100644 --- a/tests/auto/qmetatype/tst_qmetatype.cpp +++ b/tests/auto/qmetatype/tst_qmetatype.cpp @@ -77,6 +77,7 @@ private slots: void isRegistered_data(); void isRegistered(); void unregisterType(); + void QTBUG11316_registerStreamBuiltin(); }; @@ -318,5 +319,12 @@ void tst_QMetaType::unregisterType() QCOMPARE(QMetaType::isRegistered(typeId), false); } +void tst_QMetaType::QTBUG11316_registerStreamBuiltin() +{ + //should not crash; + qRegisterMetaTypeStreamOperators("QString"); + qRegisterMetaTypeStreamOperators("QVariant"); +} + QTEST_MAIN(tst_QMetaType) #include "tst_qmetatype.moc" -- cgit v1.2.1 From e6ac173991223dbf3b1b6f7213550ebca4608cb6 Mon Sep 17 00:00:00 2001 From: Pierre Rossi Date: Tue, 27 Apr 2010 17:21:25 +0200 Subject: Fix incorrect line breaking in QtWebKit. QTextBoundaryFinder was not consistent with ICU. See also: https://bugs.webkit.org/show_bug.cgi?id=31076 The previous definition of a line break was that the index in the string after which the line break should occur. Now it is the index of the boundary at which the break should occur (hence one more). Task-number: QT-3495 Reviewed-by: Simon Hausmann Reviewed-by: Lars Knoll --- .../tst_qtextboundaryfinder.cpp | 111 +++++++++++++++++++-- 1 file changed, 105 insertions(+), 6 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qtextboundaryfinder/tst_qtextboundaryfinder.cpp b/tests/auto/qtextboundaryfinder/tst_qtextboundaryfinder.cpp index c60af5e983..a562fbe5da 100644 --- a/tests/auto/qtextboundaryfinder/tst_qtextboundaryfinder.cpp +++ b/tests/auto/qtextboundaryfinder/tst_qtextboundaryfinder.cpp @@ -71,6 +71,10 @@ private slots: void isAtWordStart(); void fastConstructor(); void isAtBoundaryLine(); + void toNextBoundary_data(); + void toNextBoundary(); + void toPreviousBoundary_data(); + void toPreviousBoundary(); }; tst_QTextBoundaryFinder::tst_QTextBoundaryFinder() @@ -292,25 +296,120 @@ void tst_QTextBoundaryFinder::fastConstructor() void tst_QTextBoundaryFinder::isAtBoundaryLine() { - // idx 0 1 2 3 4 5 - // break? - - - + - + + // idx 0 1 2 3 4 5 6 + // break? - - - - + - + QChar s[] = { 0x0061, 0x00AD, 0x0062, 0x0009, 0x0063, 0x0064 }; QString text(s, sizeof(s)/sizeof(s[0])); - qDebug() << "text = " << text << ", length = " << text.length(); +// qDebug() << "text = " << text << ", length = " << text.length(); QTextBoundaryFinder finder(QTextBoundaryFinder::Line, text.constData(), text.length(), /*buffer*/0, /*buffer size*/0); finder.setPosition(0); - QVERIFY(!finder.isAtBoundary()); + QVERIFY(finder.isAtBoundary()); finder.setPosition(1); QVERIFY(!finder.isAtBoundary()); finder.setPosition(2); QVERIFY(!finder.isAtBoundary()); finder.setPosition(3); - QVERIFY(finder.isAtBoundary()); - finder.setPosition(4); QVERIFY(!finder.isAtBoundary()); + finder.setPosition(4); + QVERIFY(finder.isAtBoundary()); finder.setPosition(5); + QVERIFY(!finder.isAtBoundary()); + finder.setPosition(6); QVERIFY(finder.isAtBoundary()); } +Q_DECLARE_METATYPE(QList) + +void tst_QTextBoundaryFinder::toNextBoundary_data() +{ + QTest::addColumn("text"); + QTest::addColumn("type"); + QTest::addColumn< QList >("boundaries"); + + QList boundaries; + boundaries << 0 << 3 << 4 << 7 << 8 << 11 << 12 << 13 << 16 << 17 << 20 << 21 << 24 << 25; + QTest::newRow("Line") << QString("Aaa bbb ccc. Ddd eee fff.") << int(QTextBoundaryFinder::Word) \ + << boundaries; + + boundaries.clear(); + boundaries << 0 << 13 << 25; + QTest::newRow("Line") << QString("Aaa bbb ccc. Ddd eee fff.") << int(QTextBoundaryFinder::Sentence) \ + << boundaries; + + boundaries.clear(); + boundaries << 0 << 4 << 8 << 13 << 17 << 21 << 25; + QTest::newRow("Line") << QString("Aaa bbb ccc. Ddd eee fff.") << int(QTextBoundaryFinder::Line) \ + << boundaries; + + boundaries.clear(); + boundaries << 0 << 5 << 9 << 15 << 17 << 21 << 28; + QTest::newRow("Line") << QString::fromUtf8("Diga-nos qualé a sua opinião") << int(QTextBoundaryFinder::Line) + << boundaries; + +} + +void tst_QTextBoundaryFinder::toNextBoundary() +{ + QFETCH(QString, text); + QFETCH(int, type); + QFETCH(QList, boundaries); + + QList foundBoundaries; + QTextBoundaryFinder boundaryFinder(QTextBoundaryFinder::BoundaryType(type), text); + boundaryFinder.toStart(); + for(int next = 0; next != -1; next = boundaryFinder.toNextBoundary()) + foundBoundaries << next; + QCOMPARE(boundaries, foundBoundaries); +} + +void tst_QTextBoundaryFinder::toPreviousBoundary_data() +{ + QTest::addColumn("text"); + QTest::addColumn("type"); + QTest::addColumn< QList >("boundaries"); + + QList boundaries; + boundaries << 25 << 24 << 21 << 20 << 17 << 16 << 13 << 12 << 11 << 8 << 7 << 4 << 3 << 0; + QTest::newRow("Line") << QString("Aaa bbb ccc. Ddd eee fff.") << int(QTextBoundaryFinder::Word) + << boundaries; + + boundaries.clear(); + boundaries << 25 << 13 << 0; + QTest::newRow("Line") << QString("Aaa bbb ccc. Ddd eee fff.") << int(QTextBoundaryFinder::Sentence) + << boundaries; + + boundaries.clear(); + boundaries << 25 << 21 << 17 << 13 << 8 << 4 << 0; + QTest::newRow("Line") << QString("Aaa bbb ccc. Ddd eee fff.") << int(QTextBoundaryFinder::Line) + << boundaries; + + boundaries.clear(); + boundaries << 28 << 21 << 17 << 15 << 9 << 5 << 0; + QTest::newRow("Line") << QString::fromUtf8("Diga-nos qualé a sua opinião") << int(QTextBoundaryFinder::Line) + << boundaries; + +} + +void tst_QTextBoundaryFinder::toPreviousBoundary() +{ + QFETCH(QString, text); + QFETCH(int, type); + QFETCH(QList, boundaries); + + QList foundBoundaries; + QTextBoundaryFinder boundaryFinder(QTextBoundaryFinder::BoundaryType(type), text); + boundaryFinder.toEnd(); + for (int previous = boundaryFinder.position(); + previous != -1; + previous = boundaryFinder.toPreviousBoundary()) + { + foundBoundaries << previous; + } + QCOMPARE(boundaries, foundBoundaries); +} + + + + QTEST_MAIN(tst_QTextBoundaryFinder) #include "tst_qtextboundaryfinder.moc" -- cgit v1.2.1 From fd96a8180a5ccfeaea5b081c42137d18d640c25e Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Mon, 14 Jun 2010 19:15:21 +0200 Subject: QLocalSocket/Win: call close on async connection loss If we notice a broken pipe via _q_notified, we should call close in case the internal read buffer is empty. Auto test added: tst_QLocalSocket::asyncDisconnectNotify Reviewed-by: ossi --- tests/auto/qlocalsocket/tst_qlocalsocket.cpp | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/qlocalsocket/tst_qlocalsocket.cpp b/tests/auto/qlocalsocket/tst_qlocalsocket.cpp index d2cba6ecb5..1acd669bb1 100644 --- a/tests/auto/qlocalsocket/tst_qlocalsocket.cpp +++ b/tests/auto/qlocalsocket/tst_qlocalsocket.cpp @@ -115,7 +115,7 @@ private slots: void writeToClientAndDisconnect(); void debug(); void bytesWrittenSignal(); - + void asyncDisconnectNotify(); #ifdef Q_OS_SYMBIAN private: @@ -1061,6 +1061,25 @@ void tst_QLocalSocket::bytesWrittenSignal() QVERIFY(writeThread.wait(2000)); } + +void tst_QLocalSocket::asyncDisconnectNotify() +{ +#ifdef Q_OS_SYMBIAN + unlink("asyncDisconnectNotify"); +#endif + + QLocalServer server; + QVERIFY(server.listen("asyncDisconnectNotify")); + QLocalSocket client; + QSignalSpy disconnectedSpy(&client, SIGNAL(disconnected())); + client.connectToServer("asyncDisconnectNotify"); + QVERIFY(server.waitForNewConnection()); + QLocalSocket* serverSocket = server.nextPendingConnection(); + QVERIFY(serverSocket); + delete serverSocket; + QTRY_VERIFY(!disconnectedSpy.isEmpty()); +} + #ifdef Q_OS_SYMBIAN void tst_QLocalSocket::unlink(QString name) { -- cgit v1.2.1 From 1d307402d03dea32b6e95a1eec6a79448fbe892a Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Mon, 14 Jun 2010 19:16:13 +0200 Subject: QLocalSocket/Win: check for broken pipe in waitForReadyRead In waitForReadyRead we didn't check for synchronous connection loss. Autotest added: tst_QLocalSocket::syncDisconnectNotify Reviewed-by: ossi --- tests/auto/qlocalsocket/tst_qlocalsocket.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qlocalsocket/tst_qlocalsocket.cpp b/tests/auto/qlocalsocket/tst_qlocalsocket.cpp index 1acd669bb1..4cbb156ffa 100644 --- a/tests/auto/qlocalsocket/tst_qlocalsocket.cpp +++ b/tests/auto/qlocalsocket/tst_qlocalsocket.cpp @@ -115,6 +115,7 @@ private slots: void writeToClientAndDisconnect(); void debug(); void bytesWrittenSignal(); + void syncDisconnectNotify(); void asyncDisconnectNotify(); #ifdef Q_OS_SYMBIAN @@ -1061,6 +1062,22 @@ void tst_QLocalSocket::bytesWrittenSignal() QVERIFY(writeThread.wait(2000)); } +void tst_QLocalSocket::syncDisconnectNotify() +{ +#ifdef Q_OS_SYMBIAN + unlink("syncDisconnectNotify"); +#endif + + QLocalServer server; + QVERIFY(server.listen("syncDisconnectNotify")); + QLocalSocket client; + client.connectToServer("syncDisconnectNotify"); + QVERIFY(server.waitForNewConnection()); + QLocalSocket* serverSocket = server.nextPendingConnection(); + QVERIFY(serverSocket); + delete serverSocket; + QCOMPARE(client.waitForReadyRead(), false); +} void tst_QLocalSocket::asyncDisconnectNotify() { -- cgit v1.2.1 From d61a1fecde3d4a5b34a849ae852a498e6bb1c2de Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Mon, 14 Jun 2010 19:17:55 +0200 Subject: beautify tst_QLocalSocket::writeToClientAndDisconnect Reviewed-by: ossi --- tests/auto/qlocalsocket/tst_qlocalsocket.cpp | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qlocalsocket/tst_qlocalsocket.cpp b/tests/auto/qlocalsocket/tst_qlocalsocket.cpp index 4cbb156ffa..9c0991770e 100644 --- a/tests/auto/qlocalsocket/tst_qlocalsocket.cpp +++ b/tests/auto/qlocalsocket/tst_qlocalsocket.cpp @@ -997,16 +997,9 @@ void tst_QLocalSocket::writeToClientAndDisconnect() clientSocket->close(); server.close(); - // Wait for the client to notice the broken connection. - int timeout = 5000; - do { - const int timestep = 100; - QTest::qWait(timestep); - timeout -= timestep; - } while (!readChannelFinishedSpy.count() && timeout > 0); - - QCOMPARE(readChannelFinishedSpy.count(), 1); + QTRY_COMPARE(readChannelFinishedSpy.count(), 1); QCOMPARE(client.read(buffer, sizeof(buffer)), (qint64)sizeof(buffer)); + client.waitForDisconnected(); QCOMPARE(client.state(), QLocalSocket::UnconnectedState); } -- cgit v1.2.1 From aa97c7b7a71ddaf3f01f312658b9a43428846aee Mon Sep 17 00:00:00 2001 From: Kurt Korbatits Date: Tue, 15 Jun 2010 10:00:46 +1000 Subject: Fixed unit test failure in qimagereader. This bug was introduced with bug fix 558089fb21e7f388f9810c51abbd9bf3872b2178 --- tests/auto/qimagereader/tst_qimagereader.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qimagereader/tst_qimagereader.cpp b/tests/auto/qimagereader/tst_qimagereader.cpp index 99244c2688..fc2582fa61 100644 --- a/tests/auto/qimagereader/tst_qimagereader.cpp +++ b/tests/auto/qimagereader/tst_qimagereader.cpp @@ -1763,14 +1763,14 @@ void tst_QImageReader::testIgnoresFormatAndExtension() QFETCH(QString, expected); QList formats = QImageReader::supportedImageFormats(); - QString fileNameBase = "images/" + name + "."; + QString fileNameBase = prefix + name + "."; foreach (const QByteArray &f, formats) { if (f == extension) continue; QFile tmp(QDir::tempPath() + "/" + name + "_" + expected + "." + f); - QFile::copy(fileNameBase + extension, QFileInfo(tmp).absoluteFilePath()); + QVERIFY(QFile::copy(fileNameBase + extension, QFileInfo(tmp).absoluteFilePath())); QString format; QImage image; -- cgit v1.2.1 From d3cd976b8eb3de15a07b0ca9280731958a0147d8 Mon Sep 17 00:00:00 2001 From: Jason McDonald Date: Tue, 15 Jun 2010 14:44:51 +1000 Subject: Bump version number after 4.6.3 release. Reviewed-by: Trust Me --- tests/auto/mediaobject/dummy/dummy.pro | 2 +- tests/auto/selftests/expected_badxml.txt | 2 +- tests/auto/selftests/expected_cmptest.txt | 2 +- tests/auto/selftests/expected_crashes_3.txt | 2 +- tests/auto/selftests/expected_longstring.txt | 2 +- tests/auto/selftests/expected_maxwarnings.txt | 2 +- tests/auto/selftests/expected_skip.txt | 2 +- tests/auto/selftests/expected_xunit.txt | 2 +- tests/auto/uic/baseline/config_fromuic3.ui.h | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/mediaobject/dummy/dummy.pro b/tests/auto/mediaobject/dummy/dummy.pro index cf1010eafd..88b864bc4d 100644 --- a/tests/auto/mediaobject/dummy/dummy.pro +++ b/tests/auto/mediaobject/dummy/dummy.pro @@ -1,7 +1,7 @@ TEMPLATE = lib isEmpty(QT_MAJOR_VERSION) { - VERSION=4.6.3 + VERSION=4.6.4 } else { VERSION=$${QT_MAJOR_VERSION}.$${QT_MINOR_VERSION}.$${QT_PATCH_VERSION} } diff --git a/tests/auto/selftests/expected_badxml.txt b/tests/auto/selftests/expected_badxml.txt index 046f1b2bef..bc9d203678 100644 --- a/tests/auto/selftests/expected_badxml.txt +++ b/tests/auto/selftests/expected_badxml.txt @@ -1,5 +1,5 @@ ********* Start testing of tst_BadXml ********* -Config: Using QTest library 4.6.3, Qt 4.6.3 +Config: Using QTest library 4.6.4, Qt 4.6.4 PASS : tst_BadXml::initTestCase() QDEBUG : tst_BadXml::badDataTag(end cdata ]]> text ]]> more text) a message FAIL! : tst_BadXml::badDataTag(end cdata ]]> text ]]> more text) a failure diff --git a/tests/auto/selftests/expected_cmptest.txt b/tests/auto/selftests/expected_cmptest.txt index 18d4cce4a6..2ee30056d1 100644 --- a/tests/auto/selftests/expected_cmptest.txt +++ b/tests/auto/selftests/expected_cmptest.txt @@ -1,5 +1,5 @@ ********* Start testing of tst_Cmptest ********* -Config: Using QTest library 4.6.3, Qt 4.6.3 +Config: Using QTest library 4.6.4, Qt 4.6.4 PASS : tst_Cmptest::initTestCase() PASS : tst_Cmptest::compare_boolfuncs() PASS : tst_Cmptest::compare_pointerfuncs() diff --git a/tests/auto/selftests/expected_crashes_3.txt b/tests/auto/selftests/expected_crashes_3.txt index 71d79ca43d..60914f85c8 100644 --- a/tests/auto/selftests/expected_crashes_3.txt +++ b/tests/auto/selftests/expected_crashes_3.txt @@ -1,5 +1,5 @@ ********* Start testing of tst_Crashes ********* -Config: Using QTest library 4.6.3, Qt 4.6.3 +Config: Using QTest library 4.6.4, Qt 4.6.4 PASS : tst_Crashes::initTestCase() QFATAL : tst_Crashes::crash() Received signal 11 FAIL! : tst_Crashes::crash() Received a fatal error. diff --git a/tests/auto/selftests/expected_longstring.txt b/tests/auto/selftests/expected_longstring.txt index c451daf429..566e43ff7d 100644 --- a/tests/auto/selftests/expected_longstring.txt +++ b/tests/auto/selftests/expected_longstring.txt @@ -1,5 +1,5 @@ ********* Start testing of tst_LongString ********* -Config: Using QTest library 4.6.3, Qt 4.6.3 +Config: Using QTest library 4.6.4, Qt 4.6.4 PASS : tst_LongString::initTestCase() FAIL! : tst_LongString::failWithLongString() Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. diff --git a/tests/auto/selftests/expected_maxwarnings.txt b/tests/auto/selftests/expected_maxwarnings.txt index 0da17991b3..5fb7f58a33 100644 --- a/tests/auto/selftests/expected_maxwarnings.txt +++ b/tests/auto/selftests/expected_maxwarnings.txt @@ -1,5 +1,5 @@ ********* Start testing of MaxWarnings ********* -Config: Using QTest library 4.6.3, Qt 4.6.3 +Config: Using QTest library 4.6.4, Qt 4.6.4 PASS : MaxWarnings::initTestCase() QWARN : MaxWarnings::warn() 0 QWARN : MaxWarnings::warn() 1 diff --git a/tests/auto/selftests/expected_skip.txt b/tests/auto/selftests/expected_skip.txt index 32247e61f8..650d81621c 100644 --- a/tests/auto/selftests/expected_skip.txt +++ b/tests/auto/selftests/expected_skip.txt @@ -1,5 +1,5 @@ ********* Start testing of tst_Skip ********* -Config: Using QTest library 4.6.3, Qt 4.6.3 +Config: Using QTest library 4.6.4, Qt 4.6.4 PASS : tst_Skip::initTestCase() SKIP : tst_Skip::test() skipping all Loc: [/home/user/depot/qt-git/mainline/tests/auto/selftests/skip/tst_skip.cpp(68)] diff --git a/tests/auto/selftests/expected_xunit.txt b/tests/auto/selftests/expected_xunit.txt index 02cfa6fa06..ac8c0dba23 100644 --- a/tests/auto/selftests/expected_xunit.txt +++ b/tests/auto/selftests/expected_xunit.txt @@ -1,5 +1,5 @@ ********* Start testing of tst_Xunit ********* -Config: Using QTest library 4.6.3, Qt 4.6.3 +Config: Using QTest library 4.6.4, Qt 4.6.4 PASS : tst_Xunit::initTestCase() WARNING: tst_Xunit::testFunc1() just a QWARN() ! PASS : tst_Xunit::testFunc1() diff --git a/tests/auto/uic/baseline/config_fromuic3.ui.h b/tests/auto/uic/baseline/config_fromuic3.ui.h index c77b303e92..5df45e64f7 100644 --- a/tests/auto/uic/baseline/config_fromuic3.ui.h +++ b/tests/auto/uic/baseline/config_fromuic3.ui.h @@ -45,7 +45,7 @@ ** Form generated from reading UI file 'config_fromuic3.ui' ** ** Created: Thu Dec 17 12:48:42 2009 -** by: Qt User Interface Compiler version 4.6.3 +** by: Qt User Interface Compiler version 4.6.4 ** ** WARNING! All changes made in this file will be lost when recompiling UI file! ********************************************************************************/ -- cgit v1.2.1 From b18a343cc63f93a8e97a8c6c623e56a666775b57 Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Tue, 15 Jun 2010 15:23:28 +1000 Subject: Fix bug with childrenRect resizing on startup. This also optimizes the implementation. Task-number: QTBUG-11383 --- .../qdeclarativeitem/data/childrenRectBug.qml | 23 ++++++++++++++++++++++ .../qdeclarativeitem/tst_qdeclarativeitem.cpp | 17 ++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 tests/auto/declarative/qdeclarativeitem/data/childrenRectBug.qml (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeitem/data/childrenRectBug.qml b/tests/auto/declarative/qdeclarativeitem/data/childrenRectBug.qml new file mode 100644 index 0000000000..4a2f0565c3 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeitem/data/childrenRectBug.qml @@ -0,0 +1,23 @@ +import Qt 4.7 + +Rectangle { + width: 400 + height: 200 + + Item { + objectName: "theItem" + anchors.centerIn: parent + width: childrenRect.width + height: childrenRect.height + Rectangle { + id: text1 + anchors.verticalCenter: parent.verticalCenter + width: 100; height: 100; color: "green" + } + Rectangle { + anchors.left: text1.right + anchors.verticalCenter: parent.verticalCenter + width: 100; height: 100; color: "green" + } + } +} diff --git a/tests/auto/declarative/qdeclarativeitem/tst_qdeclarativeitem.cpp b/tests/auto/declarative/qdeclarativeitem/tst_qdeclarativeitem.cpp index c2d366000d..0a66245707 100644 --- a/tests/auto/declarative/qdeclarativeitem/tst_qdeclarativeitem.cpp +++ b/tests/auto/declarative/qdeclarativeitem/tst_qdeclarativeitem.cpp @@ -72,6 +72,7 @@ private slots: void transforms(); void transforms_data(); void childrenRect(); + void childrenRectBug(); void childrenProperty(); void resourcesProperty(); @@ -736,6 +737,22 @@ void tst_QDeclarativeItem::childrenRect() delete o; } +// QTBUG-11383 +void tst_QDeclarativeItem::childrenRectBug() +{ + QDeclarativeView *canvas = new QDeclarativeView(0); + canvas->setSource(QUrl::fromLocalFile(SRCDIR "/data/childrenRectBug.qml")); + canvas->show(); + + QGraphicsObject *o = canvas->rootObject(); + QDeclarativeItem *item = o->findChild("theItem"); + QCOMPARE(item->width(), qreal(200)); + QCOMPARE(item->height(), qreal(100)); + QCOMPARE(item->x(), qreal(100)); + + delete canvas; +} + template T *tst_QDeclarativeItem::findItem(QGraphicsObject *parent, const QString &objectName) { -- cgit v1.2.1 From 11420641d9341af6615baa21453e08c092f7fb10 Mon Sep 17 00:00:00 2001 From: Thomas Zander Date: Tue, 15 Jun 2010 10:42:42 +0200 Subject: Fix symbian building of TARGET with a slash In case there is a slash in the target (for example; ../foo) then we don't want to add a faulty cxxflags to the compile line. Reviewed-by: Axis --- tests/auto/qlocale/test/test.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/qlocale/test/test.pro b/tests/auto/qlocale/test/test.pro index d57f2d1b02..e33d0fe4fc 100644 --- a/tests/auto/qlocale/test/test.pro +++ b/tests/auto/qlocale/test/test.pro @@ -36,4 +36,4 @@ symbian:contains(S60_VERSION,3.2) { "PAGED" \ "$${LITERAL_HASH}endif" MMP_RULES += custom_paged_rule -} \ No newline at end of file +} -- cgit v1.2.1 From df55141aa260c8a10c06aa990b6f20d6fb4718f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20R=C3=B8dal?= Date: Tue, 15 Jun 2010 13:06:19 +0200 Subject: Fixed QImageReader::format() inconsistency. If state is set to ReadHeader before canRead() then setFormat("png") never gets called. We should make sure that setFormat() gets set whenever canRead() returns true. Task-number: QTBUG-2263 Reviewed-by: Kent Hansen --- tests/auto/qimagereader/tst_qimagereader.cpp | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qimagereader/tst_qimagereader.cpp b/tests/auto/qimagereader/tst_qimagereader.cpp index aadee5bf2e..7e5797304b 100644 --- a/tests/auto/qimagereader/tst_qimagereader.cpp +++ b/tests/auto/qimagereader/tst_qimagereader.cpp @@ -138,6 +138,9 @@ private slots: void sizeBeforeRead_data(); void sizeBeforeRead(); + void sizeBeforeFormat_data(); + void sizeBeforeFormat(); + void imageFormatBeforeRead_data(); void imageFormatBeforeRead(); @@ -706,6 +709,31 @@ void tst_QImageReader::sizeBeforeRead() QCOMPARE(size, image.size()); } +void tst_QImageReader::sizeBeforeFormat_data() +{ + imageFormat_data(); +} + +void tst_QImageReader::sizeBeforeFormat() +{ + QFETCH(QString, fileName); + + QByteArray formatA, formatB; + + { + QImageReader reader(prefix + fileName); + formatA = reader.format(); + } + + { + QImageReader reader(prefix + fileName); + QSize size = reader.size(); + formatB = reader.format(); + } + + QCOMPARE(formatA, formatB); +} + void tst_QImageReader::imageFormatBeforeRead_data() { imageFormat_data(); -- cgit v1.2.1 From 20a39c16f236f999cd1694cdc47a3739efcbbfe4 Mon Sep 17 00:00:00 2001 From: Zeno Albisser Date: Tue, 15 Jun 2010 13:39:25 +0200 Subject: Temporary fix for regression in QSslCertificate::fromPath() The regression was introduced with 164f347aba7287407615223dc2219a016ebc8248. As soon as possible we should probably rewrite the fromPath() function, to have a proper solution. Nevertheless this might be a bigger change and should not be done so late in release cycle. Reviewed-by: TrustMe --- tests/auto/qsslcertificate/tst_qsslcertificate.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tests/auto') diff --git a/tests/auto/qsslcertificate/tst_qsslcertificate.cpp b/tests/auto/qsslcertificate/tst_qsslcertificate.cpp index 505b8676fe..d0509bb35e 100644 --- a/tests/auto/qsslcertificate/tst_qsslcertificate.cpp +++ b/tests/auto/qsslcertificate/tst_qsslcertificate.cpp @@ -542,6 +542,9 @@ void tst_QSslCertificate::fromPath_data() QTest::newRow("\"d.*/c.*.pem\" regexp der") << QString("d.*/c.*.pem") << int(QRegExp::RegExp) << false << 0; QTest::newRow("\"d.*/c.*.pem\" wildcard pem") << QString("d.*/c.*.pem") << int(QRegExp::Wildcard) << true << 0; QTest::newRow("\"d.*/c.*.pem\" wildcard der") << QString("d.*/c.*.pem") << int(QRegExp::Wildcard) << false << 0; +#ifdef Q_OS_LINUX + QTest::newRow("absolute path wildcard pem") << QString(QDir::currentPath() + "/certificates/*.pem") << int(QRegExp::Wildcard) << true << 4; +#endif QTest::newRow("trailing-whitespace") << QString("more-certificates/trailing-whitespace.pem") << int(QRegExp::FixedString) << true << 1; QTest::newRow("no-ending-newline") << QString("more-certificates/no-ending-newline.pem") << int(QRegExp::FixedString) << true << 1; -- cgit v1.2.1 From 183abff6ffcb020b8f0c4041cc82bba0d3b03863 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan-Arve=20S=C3=A6ther?= Date: Wed, 16 Jun 2010 10:05:44 +0200 Subject: Fixed problem with wrong size hints when items were removed. The reason was that the row/column count was not updated after an item was removed. (Note that qgraphicslinearlayout already did this, so we just follow the same pattern, except that the code for QGraphicsGridLayout is a bit more complex... Task-number: QTBUG-10314 Reviewed-by: Alexis Menard --- .../tst_qgraphicsgridlayout.cpp | 86 ++++++++++++++++------ 1 file changed, 64 insertions(+), 22 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/qgraphicsgridlayout/tst_qgraphicsgridlayout.cpp b/tests/auto/qgraphicsgridlayout/tst_qgraphicsgridlayout.cpp index 8127f8451d..b9a5c66edd 100644 --- a/tests/auto/qgraphicsgridlayout/tst_qgraphicsgridlayout.cpp +++ b/tests/auto/qgraphicsgridlayout/tst_qgraphicsgridlayout.cpp @@ -741,31 +741,73 @@ void tst_QGraphicsGridLayout::setColumnFixedWidth() // public qreal columnSpacing(int column) const void tst_QGraphicsGridLayout::columnSpacing() { - QGraphicsScene scene; - QGraphicsView view(&scene); - QGraphicsWidget *widget = new QGraphicsWidget(0, Qt::Window); - QGraphicsGridLayout *layout = new QGraphicsGridLayout(); - scene.addItem(widget); - widget->setLayout(layout); - populateLayout(layout, 3, 2); - layout->setContentsMargins(0, 0, 0, 0); - layout->setSpacing(0); - QCOMPARE(layout->columnSpacing(0), 0.0); + { + QGraphicsScene scene; + QGraphicsView view(&scene); + QGraphicsWidget *widget = new QGraphicsWidget(0, Qt::Window); + QGraphicsGridLayout *layout = new QGraphicsGridLayout(); + scene.addItem(widget); + widget->setLayout(layout); + populateLayout(layout, 3, 2); + layout->setContentsMargins(0, 0, 0, 0); + layout->setSpacing(0); + QCOMPARE(layout->columnSpacing(0), 0.0); + + layout->setColumnSpacing(0, 20); + view.show(); + widget->show(); + widget->resize(widget->effectiveSizeHint(Qt::PreferredSize)); + QApplication::processEvents(); - layout->setColumnSpacing(0, 20); - view.show(); - widget->show(); - widget->resize(widget->effectiveSizeHint(Qt::PreferredSize)); - QApplication::processEvents(); + QCOMPARE(layout->itemAt(0,0)->geometry().left(), 0.0); + QCOMPARE(layout->itemAt(0,0)->geometry().right(), 25.0); + QCOMPARE(layout->itemAt(0,1)->geometry().left(), 45.0); + QCOMPARE(layout->itemAt(0,1)->geometry().right(), 70.0); + QCOMPARE(layout->itemAt(0,2)->geometry().left(), 70.0); + QCOMPARE(layout->itemAt(0,2)->geometry().right(), 95.0); - QCOMPARE(layout->itemAt(0,0)->geometry().left(), 0.0); - QCOMPARE(layout->itemAt(0,0)->geometry().right(), 25.0); - QCOMPARE(layout->itemAt(0,1)->geometry().left(), 45.0); - QCOMPARE(layout->itemAt(0,1)->geometry().right(), 70.0); - QCOMPARE(layout->itemAt(0,2)->geometry().left(), 70.0); - QCOMPARE(layout->itemAt(0,2)->geometry().right(), 95.0); + delete widget; + } + + { + // don't include items and spacings that was previously part of the layout + // (horizontal) + QGraphicsGridLayout *layout = new QGraphicsGridLayout; + populateLayout(layout, 3, 1); + layout->setContentsMargins(0, 0, 0, 0); + layout->setSpacing(0); + layout->setColumnSpacing(0, 10); + layout->setColumnSpacing(1, 10); + layout->setColumnSpacing(2, 10); + layout->setColumnSpacing(3, 10); + QCOMPARE(layout->preferredSize(), QSizeF(95, 25)); + layout->removeAt(2); + QCOMPARE(layout->preferredSize(), QSizeF(60, 25)); + layout->removeAt(1); + QCOMPARE(layout->preferredSize(), QSizeF(25, 25)); + delete layout; + } + { + // don't include items and spacings that was previously part of the layout + // (vertical) + QGraphicsGridLayout *layout = new QGraphicsGridLayout; + populateLayout(layout, 2, 2); + layout->setContentsMargins(0, 0, 0, 0); + layout->setSpacing(0); + layout->setColumnSpacing(0, 10); + layout->setColumnSpacing(1, 10); + layout->setRowSpacing(0, 10); + layout->setRowSpacing(1, 10); + QCOMPARE(layout->preferredSize(), QSizeF(60, 60)); + layout->removeAt(3); + QCOMPARE(layout->preferredSize(), QSizeF(60, 60)); + layout->removeAt(2); + QCOMPARE(layout->preferredSize(), QSizeF(60, 25)); + layout->removeAt(1); + QCOMPARE(layout->preferredSize(), QSizeF(25, 25)); + delete layout; + } - delete widget; } // public int columnStretchFactor(int column) const -- cgit v1.2.1 From bc4c5a2d9c5d3841948bc4443f2229d8d6ec0e95 Mon Sep 17 00:00:00 2001 From: Alan Alpert Date: Wed, 16 Jun 2010 12:18:40 +0200 Subject: Fix autoScroll implementation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The scrolling should not be calculated inside the paint event, this leads to some incorrect behaviour. It is now calculated separately when needed. Patch actually written by Alexis, and I reviewed it. Task-number: QTBUG-11127 Reviewed-by: Alexis Ménard --- .../auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp index 3143580ec1..a55b42ecc8 100644 --- a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp +++ b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp @@ -396,7 +396,6 @@ void tst_qdeclarativetextinput::positionAt() #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); -- cgit v1.2.1 From 50f4129a2664ed72de899f4477b47f91488c04d9 Mon Sep 17 00:00:00 2001 From: Alan Alpert Date: Wed, 16 Jun 2010 12:20:41 +0200 Subject: Minor demo fixes Found some minor demo issues while testing a TextInput change. --- .../declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml index 69f57c68f3..e863262370 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml @@ -30,13 +30,14 @@ Item { y: 5 //Below function implements all scrolling logic onCursorPositionChanged: { - if(cursorRect.x < leftMargin - textInp.x){//Cursor went off the front - textInp.x = leftMargin - Math.max(0, cursorRect.x); - }else if(cursorRect.x > parent.width - leftMargin - rightMargin - textInp.x){//Cusor went off the end - textInp.x = leftMargin - Math.max(0, cursorRect.x - (parent.width - leftMargin - rightMargin)); + if(cursorRectangle.x < leftMargin - textInp.x){//Cursor went off the front + textInp.x = leftMargin - Math.max(0, cursorRectangle.x); + }else if(cursorRectangle.x > parent.width - leftMargin - rightMargin - textInp.x){//Cusor went off the end + textInp.x = leftMargin - Math.max(0, cursorRectangle.x - (parent.width - leftMargin - rightMargin)); } } + autoScroll: false //It is preferable to implement your own scrolling text:"" horizontalAlignment: TextInput.AlignLeft font.pixelSize:15 -- cgit v1.2.1 From b294bedf9d6fdabca9fd384f1b2d910c02ec1c50 Mon Sep 17 00:00:00 2001 From: Martin Jones Date: Thu, 17 Jun 2010 13:51:26 +1000 Subject: Add test for model data changes. --- .../qdeclarativerepeater/data/repeater2.qml | 5 ++- .../tst_qdeclarativerepeater.cpp | 44 ++++++++++++++++++++++ 2 files changed, 47 insertions(+), 2 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativerepeater/data/repeater2.qml b/tests/auto/declarative/qdeclarativerepeater/data/repeater2.qml index c8b863c08e..7f2f85a0cb 100644 --- a/tests/auto/declarative/qdeclarativerepeater/data/repeater2.qml +++ b/tests/auto/declarative/qdeclarativerepeater/data/repeater2.qml @@ -9,12 +9,13 @@ Rectangle { Item { objectName: "myDelegate" height: 20 + width: 240 Text { - y: index*20 + objectName: "myName" text: name } Text { - y: index*20 + objectName: "myNumber" x: 100 text: number } diff --git a/tests/auto/declarative/qdeclarativerepeater/tst_qdeclarativerepeater.cpp b/tests/auto/declarative/qdeclarativerepeater/tst_qdeclarativerepeater.cpp index 3cc68f4c8c..7299a43565 100644 --- a/tests/auto/declarative/qdeclarativerepeater/tst_qdeclarativerepeater.cpp +++ b/tests/auto/declarative/qdeclarativerepeater/tst_qdeclarativerepeater.cpp @@ -45,6 +45,7 @@ #include #include #include +#include #include #include @@ -75,6 +76,8 @@ private slots: private: QDeclarativeView *createView(); template + T *findItem(QGraphicsObject *parent, const QString &objectName, int index); + template T *findItem(QGraphicsObject *parent, const QString &id); }; @@ -312,6 +315,20 @@ void tst_QDeclarativeRepeater::dataModel() testModel.removeItem(2); QCOMPARE(container->childItems().count(), 4); + // Check that model changes are propagated + QDeclarativeText *text = findItem(canvas->rootObject(), "myName", 1); + QVERIFY(text); + QCOMPARE(text->text(), QString("two")); + + testModel.modifyItem(1, "Item two", "_2"); + text = findItem(canvas->rootObject(), "myName", 1); + QVERIFY(text); + QCOMPARE(text->text(), QString("Item two")); + + text = findItem(canvas->rootObject(), "myNumber", 1); + QVERIFY(text); + QCOMPARE(text->text(), QString("_2")); + delete testObject; delete canvas; } @@ -386,6 +403,33 @@ QDeclarativeView *tst_QDeclarativeRepeater::createView() return canvas; } +template +T *tst_QDeclarativeRepeater::findItem(QGraphicsObject *parent, const QString &objectName, int index) +{ + const QMetaObject &mo = T::staticMetaObject; + //qDebug() << parent->childItems().count() << "children"; + for (int i = 0; i < parent->childItems().count(); ++i) { + QDeclarativeItem *item = qobject_cast(parent->childItems().at(i)); + if(!item) + continue; + //qDebug() << "try" << item; + if (mo.cast(item) && (objectName.isEmpty() || item->objectName() == objectName)) { + if (index != -1) { + QDeclarativeExpression e(qmlContext(item), item, "index"); + if (e.evaluate().toInt() == index) + return static_cast(item); + } else { + return static_cast(item); + } + } + item = findItem(item, objectName, index); + if (item) + return static_cast(item); + } + + return 0; +} + template T *tst_QDeclarativeRepeater::findItem(QGraphicsObject *parent, const QString &objectName) { -- cgit v1.2.1 From d8d547b92e02546cb030ac9d4a45fe0d89e0e7f6 Mon Sep 17 00:00:00 2001 From: Kent Hansen Date: Thu, 17 Jun 2010 12:27:43 +0200 Subject: Usefully convert from QtScript object/array to QVariant For arrays, the conversion would crash if the array was cyclic. Introduce a set that keeps track of which objects are being converted, and return an empty list when a cycle is detected. For other types of objects, the object was previously attempted to be converted to a primitive, which typically meant you would get the string representation ("[object Object]"), since most (practically all) objects can be converted to a string -- not useful at all. Change the conversion so it converts the object to a QVariantMap instead. This was already done for slots that took a QVariantMap as argument, but only one level deep. Make the conversion recursive, using the same mechanism as for arrays to detect cycles. This change also means that you get a meaningful JS object => QVariant => JS object roundtrip. It also aligns the behavior with the Qt WebKit bridge. Update the documentation to describe the new behavior. The 4.7 changelog will also be updated under "important behavioral changes". This change exposed an issue with one of the QML autotests: A JS object was assigned to a QVariant property, which caused it to be converted to a string (rather than a QVariantMap) -- just shows that the previous behavior was unintuitive). Later, this variant property is compared to another object, the intention being to compare the _properties_ of the two objects; but because the variant property contained a string, this would cause the other operand (object) to be converted to a string as well ("[object Object]"), causing a meaningless test pass. Change the test to deserialize both objects using JSON.stringify, and compare the resulting strings, so that actual JS object => QVariant(Map) => JS object roundtrip is tested (the intention). Task-number: QTBUG-3511 Reviewed-by: Olivier Goffart --- .../qdeclarativeworkerscript/data/BaseWorker.qml | 2 +- .../tst_qdeclarativeworkerscript.cpp | 6 +- .../qscriptextqobject/tst_qscriptextqobject.cpp | 140 +++++++++++++++++++++ tests/auto/qscriptvalue/tst_qscriptvalue.cpp | 89 ++++++++++++- tests/auto/qscriptvalue/tst_qscriptvalue.h | 2 + 5 files changed, 234 insertions(+), 5 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/declarative/qdeclarativeworkerscript/data/BaseWorker.qml b/tests/auto/declarative/qdeclarativeworkerscript/data/BaseWorker.qml index d275ca8511..e06afa2a4d 100644 --- a/tests/auto/declarative/qdeclarativeworkerscript/data/BaseWorker.qml +++ b/tests/auto/declarative/qdeclarativeworkerscript/data/BaseWorker.qml @@ -13,7 +13,7 @@ WorkerScript { function compareLiteralResponse(expected) { var e = eval('(' + expected + ')') - return worker.response == e + return JSON.stringify(worker.response) == JSON.stringify(e) } onMessage: { diff --git a/tests/auto/declarative/qdeclarativeworkerscript/tst_qdeclarativeworkerscript.cpp b/tests/auto/declarative/qdeclarativeworkerscript/tst_qdeclarativeworkerscript.cpp index 52c11e9b47..8e98874ecc 100644 --- a/tests/auto/declarative/qdeclarativeworkerscript/tst_qdeclarativeworkerscript.cpp +++ b/tests/auto/declarative/qdeclarativeworkerscript/tst_qdeclarativeworkerscript.cpp @@ -170,13 +170,15 @@ void tst_QDeclarativeWorkerScript::messaging_sendJsObject() QDeclarativeWorkerScript *worker = qobject_cast(component.create()); QVERIFY(worker != 0); - QString jsObject = "{'name': 'zyz', 'spell power': 3101, 'haste': 1125}"; + // Properties are in alphabetical order to enable string-based comparison after + // QVariant roundtrip, since the properties will be stored in a QVariantMap. + QString jsObject = "{'haste': 1125, 'name': 'zyz', 'spell power': 3101}"; QScriptEngine *engine = QDeclarativeEnginePrivate::getScriptEngine(qmlEngine(worker)); QScriptValue sv = engine->newObject(); + sv.setProperty("haste", 1125); sv.setProperty("name", "zyz"); sv.setProperty("spell power", 3101); - sv.setProperty("haste", 1125); QVERIFY(QMetaObject::invokeMethod(worker, "testSend", Q_ARG(QVariant, qVariantFromValue(sv)))); waitForEchoMessage(worker); diff --git a/tests/auto/qscriptextqobject/tst_qscriptextqobject.cpp b/tests/auto/qscriptextqobject/tst_qscriptextqobject.cpp index 09070e60f2..11813d865e 100644 --- a/tests/auto/qscriptextqobject/tst_qscriptextqobject.cpp +++ b/tests/auto/qscriptextqobject/tst_qscriptextqobject.cpp @@ -287,6 +287,8 @@ public: { m_qtFunctionInvoked = 15; m_actuals << v; return v; } Q_INVOKABLE QVariantMap myInvokableWithVariantMapArg(const QVariantMap &vm) { m_qtFunctionInvoked = 16; m_actuals << vm; return vm; } + Q_INVOKABLE QVariantList myInvokableWithVariantListArg(const QVariantList &lst) + { m_qtFunctionInvoked = 62; m_actuals.append(QVariant(lst)); return lst; } Q_INVOKABLE QList myInvokableWithListOfIntArg(const QList &lst) { m_qtFunctionInvoked = 17; m_actuals << qVariantFromValue(lst); return lst; } Q_INVOKABLE QObject* myInvokableWithQObjectStarArg(QObject *obj) @@ -535,6 +537,10 @@ private slots: void emitAfterReceiverDeleted(); void inheritedSlots(); void enumerateMetaObject(); + void nestedArrayAsSlotArgument_data(); + void nestedArrayAsSlotArgument(); + void nestedObjectAsSlotArgument_data(); + void nestedObjectAsSlotArgument(); private: QScriptEngine *m_engine; @@ -3164,5 +3170,139 @@ void tst_QScriptExtQObject::enumerateMetaObject() } } +void tst_QScriptExtQObject::nestedArrayAsSlotArgument_data() +{ + QTest::addColumn("program"); + QTest::addColumn("expected"); + + QTest::newRow("[[]]") + << QString::fromLatin1("[[]]") + << (QVariantList() << (QVariant(QVariantList()))); + QTest::newRow("[[123]]") + << QString::fromLatin1("[[123]]") + << (QVariantList() << (QVariant(QVariantList() << 123))); + QTest::newRow("[[], 123]") + << QString::fromLatin1("[[], 123]") + << (QVariantList() << QVariant(QVariantList()) << 123); + + // Cyclic + QTest::newRow("var a=[]; a.push(a)") + << QString::fromLatin1("var a=[]; a.push(a); a") + << (QVariantList() << QVariant(QVariantList())); + QTest::newRow("var a=[]; a.push(123, a)") + << QString::fromLatin1("var a=[]; a.push(123, a); a") + << (QVariantList() << 123 << QVariant(QVariantList())); + QTest::newRow("var a=[]; var b=[]; a.push(b); b.push(a)") + << QString::fromLatin1("var a=[]; var b=[]; a.push(b); b.push(a); a") + << (QVariantList() << QVariant(QVariantList() << QVariant(QVariantList()))); + QTest::newRow("var a=[]; var b=[]; a.push(123, b); b.push(456, a)") + << QString::fromLatin1("var a=[]; var b=[]; a.push(123, b); b.push(456, a); a") + << (QVariantList() << 123 << QVariant(QVariantList() << 456 << QVariant(QVariantList()))); +} + +void tst_QScriptExtQObject::nestedArrayAsSlotArgument() +{ + QFETCH(QString, program); + QFETCH(QVariantList, expected); + QScriptValue a = m_engine->evaluate(program); + QVERIFY(!a.isError()); + QVERIFY(a.isArray()); + // Slot that takes QVariantList + { + QVERIFY(!m_engine->evaluate("myObject.myInvokableWithVariantListArg") + .call(QScriptValue(), QScriptValueList() << a).isError()); + QCOMPARE(m_myObject->qtFunctionInvoked(), 62); + QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); + QCOMPARE(m_myObject->qtFunctionActuals().at(0).type(), QVariant::List); + QCOMPARE(m_myObject->qtFunctionActuals().at(0).toList(), expected); + } + // Slot that takes QVariant + { + m_myObject->resetQtFunctionInvoked(); + QVERIFY(!m_engine->evaluate("myObject.myInvokableWithVariantArg") + .call(QScriptValue(), QScriptValueList() << a).isError()); + QCOMPARE(m_myObject->qtFunctionInvoked(), 15); + QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); + QCOMPARE(m_myObject->qtFunctionActuals().at(0).type(), QVariant::List); + QCOMPARE(m_myObject->qtFunctionActuals().at(0).toList(), expected); + } +} + +void tst_QScriptExtQObject::nestedObjectAsSlotArgument_data() +{ + QTest::addColumn("program"); + QTest::addColumn("expected"); + + { + QVariantMap m; + m["a"] = QVariantMap(); + QTest::newRow("{ a:{} }") + << QString::fromLatin1("({ a:{} })") + << m; + } + { + QVariantMap m, m2; + m2["b"] = 10; + m2["c"] = 20; + m["a"] = m2; + QTest::newRow("{ a:{b:10, c:20} }") + << QString::fromLatin1("({ a:{b:10, c:20} })") + << m; + } + { + QVariantMap m; + m["a"] = 10; + m["b"] = QVariantList() << 20 << 30; + QTest::newRow("{ a:10, b:[20, 30]}") + << QString::fromLatin1("({ a:10, b:[20,30]})") + << m; + } + + // Cyclic + { + QVariantMap m; + m["p"] = QVariantMap(); + QTest::newRow("var o={}; o.p=o") + << QString::fromLatin1("var o={}; o.p=o; o") + << m; + } + { + QVariantMap m; + m["p"] = 123; + m["q"] = QVariantMap(); + QTest::newRow("var o={}; o.p=123; o.q=o") + << QString::fromLatin1("var o={}; o.p=123; o.q=o; o") + << m; + } +} + +void tst_QScriptExtQObject::nestedObjectAsSlotArgument() +{ + QFETCH(QString, program); + QFETCH(QVariantMap, expected); + QScriptValue o = m_engine->evaluate(program); + QVERIFY(!o.isError()); + QVERIFY(o.isObject()); + // Slot that takes QVariantMap + { + QVERIFY(!m_engine->evaluate("myObject.myInvokableWithVariantMapArg") + .call(QScriptValue(), QScriptValueList() << o).isError()); + QCOMPARE(m_myObject->qtFunctionInvoked(), 16); + QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); + QCOMPARE(m_myObject->qtFunctionActuals().at(0).type(), QVariant::Map); + QCOMPARE(m_myObject->qtFunctionActuals().at(0).toMap(), expected); + } + // Slot that takes QVariant + { + m_myObject->resetQtFunctionInvoked(); + QVERIFY(!m_engine->evaluate("myObject.myInvokableWithVariantArg") + .call(QScriptValue(), QScriptValueList() << o).isError()); + QCOMPARE(m_myObject->qtFunctionInvoked(), 15); + QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); + QCOMPARE(m_myObject->qtFunctionActuals().at(0).type(), QVariant::Map); + QCOMPARE(m_myObject->qtFunctionActuals().at(0).toMap(), expected); + } +} + QTEST_MAIN(tst_QScriptExtQObject) #include "tst_qscriptextqobject.moc" diff --git a/tests/auto/qscriptvalue/tst_qscriptvalue.cpp b/tests/auto/qscriptvalue/tst_qscriptvalue.cpp index aa9fa15e55..8aa4e711de 100644 --- a/tests/auto/qscriptvalue/tst_qscriptvalue.cpp +++ b/tests/auto/qscriptvalue/tst_qscriptvalue.cpp @@ -1270,7 +1270,7 @@ void tst_QScriptValue::toVariant_old() QCOMPARE(opaque.toVariant(), var); QScriptValue object = eng.newObject(); - QCOMPARE(object.toVariant(), QVariant(QString("[object Object]"))); + QCOMPARE(object.toVariant(), QVariant(QVariantMap())); QScriptValue qobject = eng.newQObject(this); { @@ -2296,7 +2296,7 @@ void tst_QScriptValue::getSetScriptClass() QCOMPARE(obj.scriptClass(), (QScriptClass*)&testClass); QVERIFY(obj.isObject()); QVERIFY(!obj.isVariant()); - QVERIFY(!obj.toVariant().isValid()); + QCOMPARE(obj.toVariant(), QVariant(QVariantMap())); } { QScriptValue obj = eng.newQObject(this); @@ -3472,4 +3472,89 @@ void tst_QScriptValue::objectId() QVERIFY(obj.strictlyEquals(eng.globalObject())); } +void tst_QScriptValue::nestedObjectToVariant_data() +{ + QTest::addColumn("program"); + QTest::addColumn("expected"); + + // Array literals + QTest::newRow("[[]]") + << QString::fromLatin1("[[]]") + << QVariant(QVariantList() << (QVariant(QVariantList()))); + QTest::newRow("[[123]]") + << QString::fromLatin1("[[123]]") + << QVariant(QVariantList() << (QVariant(QVariantList() << 123))); + QTest::newRow("[[], 123]") + << QString::fromLatin1("[[], 123]") + << QVariant(QVariantList() << QVariant(QVariantList()) << 123); + + // Cyclic arrays + QTest::newRow("var a=[]; a.push(a)") + << QString::fromLatin1("var a=[]; a.push(a); a") + << QVariant(QVariantList() << QVariant(QVariantList())); + QTest::newRow("var a=[]; a.push(123, a)") + << QString::fromLatin1("var a=[]; a.push(123, a); a") + << QVariant(QVariantList() << 123 << QVariant(QVariantList())); + QTest::newRow("var a=[]; var b=[]; a.push(b); b.push(a)") + << QString::fromLatin1("var a=[]; var b=[]; a.push(b); b.push(a); a") + << QVariant(QVariantList() << QVariant(QVariantList() << QVariant(QVariantList()))); + QTest::newRow("var a=[]; var b=[]; a.push(123, b); b.push(456, a)") + << QString::fromLatin1("var a=[]; var b=[]; a.push(123, b); b.push(456, a); a") + << QVariant(QVariantList() << 123 << QVariant(QVariantList() << 456 << QVariant(QVariantList()))); + + // Object literals + { + QVariantMap m; + m["a"] = QVariantMap(); + QTest::newRow("{ a:{} }") + << QString::fromLatin1("({ a:{} })") + << QVariant(m); + } + { + QVariantMap m, m2; + m2["b"] = 10; + m2["c"] = 20; + m["a"] = m2; + QTest::newRow("{ a:{b:10, c:20} }") + << QString::fromLatin1("({ a:{b:10, c:20} })") + << QVariant(m); + } + { + QVariantMap m; + m["a"] = 10; + m["b"] = QVariantList() << 20 << 30; + QTest::newRow("{ a:10, b:[20, 30]}") + << QString::fromLatin1("({ a:10, b:[20,30]})") + << QVariant(m); + } + + // Cyclic objects + { + QVariantMap m; + m["p"] = QVariantMap(); + QTest::newRow("var o={}; o.p=o") + << QString::fromLatin1("var o={}; o.p=o; o") + << QVariant(m); + } + { + QVariantMap m; + m["p"] = 123; + m["q"] = QVariantMap(); + QTest::newRow("var o={}; o.p=123; o.q=o") + << QString::fromLatin1("var o={}; o.p=123; o.q=o; o") + << QVariant(m); + } +} + +void tst_QScriptValue::nestedObjectToVariant() +{ + QScriptEngine eng; + QFETCH(QString, program); + QFETCH(QVariant, expected); + QScriptValue o = eng.evaluate(program); + QVERIFY(!o.isError()); + QVERIFY(o.isObject()); + QCOMPARE(o.toVariant(), expected); +} + QTEST_MAIN(tst_QScriptValue) diff --git a/tests/auto/qscriptvalue/tst_qscriptvalue.h b/tests/auto/qscriptvalue/tst_qscriptvalue.h index aae35b22ee..8bfaa6a944 100644 --- a/tests/auto/qscriptvalue/tst_qscriptvalue.h +++ b/tests/auto/qscriptvalue/tst_qscriptvalue.h @@ -225,6 +225,8 @@ private slots: void engineDeleted(); void valueOfWithClosure(); void objectId(); + void nestedObjectToVariant_data(); + void nestedObjectToVariant(); private: typedef void (tst_QScriptValue::*InitDataFunction)(); -- cgit v1.2.1