From b35de91c05f67da3b22f9f5b0d69530bb79b8797 Mon Sep 17 00:00:00 2001 From: Jonathan Liu Date: Mon, 7 Nov 2011 20:40:13 +1100 Subject: ActiveQt: Add support for setting properties by reference Add support for setting properties by reference to allow properties that can only be set by reference to be changed. Change-Id: I2f39f8720ecd1ba97139ab42756d686db2211cad Reviewed-by: Friedemann Kleint --- tests/auto/auto.pro | 3 ++ tests/auto/qaxobject/qaxobject.pro | 3 ++ tests/auto/qaxobject/tst_qaxobject.cpp | 77 ++++++++++++++++++++++++++++++++++ tests/tests.pro | 2 + 4 files changed, 85 insertions(+) create mode 100644 tests/auto/auto.pro create mode 100644 tests/auto/qaxobject/qaxobject.pro create mode 100644 tests/auto/qaxobject/tst_qaxobject.cpp create mode 100644 tests/tests.pro (limited to 'tests') diff --git a/tests/auto/auto.pro b/tests/auto/auto.pro new file mode 100644 index 0000000..8e3a63f --- /dev/null +++ b/tests/auto/auto.pro @@ -0,0 +1,3 @@ +TEMPLATE = subdirs +SUBDIRS += \ + qaxobject diff --git a/tests/auto/qaxobject/qaxobject.pro b/tests/auto/qaxobject/qaxobject.pro new file mode 100644 index 0000000..7e0fd69 --- /dev/null +++ b/tests/auto/qaxobject/qaxobject.pro @@ -0,0 +1,3 @@ +CONFIG += testcase qaxcontainer +QT += testlib +SOURCES += tst_qaxobject.cpp diff --git a/tests/auto/qaxobject/tst_qaxobject.cpp b/tests/auto/qaxobject/tst_qaxobject.cpp new file mode 100644 index 0000000..d0ad298 --- /dev/null +++ b/tests/auto/qaxobject/tst_qaxobject.cpp @@ -0,0 +1,77 @@ +/**************************************************************************** +** +** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/ +** +** This file is part of the test suite of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** GNU Lesser General Public License Usage +** This file may be used under the terms of the GNU Lesser General Public +** License version 2.1 as published by the Free Software Foundation and +** appearing in the file LICENSE.LGPL included in the packaging of this +** file. Please review the following information to ensure the GNU Lesser +** General Public License version 2.1 requirements will be met: +** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU General +** Public License version 3.0 as published by the Free Software Foundation +** and appearing in the file LICENSE.GPL included in the packaging of this +** file. Please review the following information to ensure the GNU General +** Public License version 3.0 requirements will be met: +** http://www.gnu.org/copyleft/gpl.html. +** +** Other Usage +** Alternatively, this file may be used in accordance with the terms and +** conditions contained in a signed written agreement between you and Nokia. +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + + +#include +#include +#include + +class tst_QAxObject : public QObject +{ + Q_OBJECT + +private slots: + void propertyByRefWritable(); + void setPropertyByRef(); +}; + +void tst_QAxObject::propertyByRefWritable() +{ + const QAxObject speak("SAPI.SPVoice"); + const QMetaObject *metaObject = speak.metaObject(); + + for (int i = 0; i < metaObject->propertyCount(); ++i) { + if (qstrcmp(metaObject->property(i).name(), "Voice") == 0) { + QVERIFY(metaObject->property(i).isWritable()); + break; + } + } +} + +void tst_QAxObject::setPropertyByRef() +{ + QAxObject speak("SAPI.SPVoice"); + + QVERIFY(speak.setProperty("Voice", speak.property("Voice"))); +} + +QTEST_MAIN(tst_QAxObject) +#include "tst_qaxobject.moc" diff --git a/tests/tests.pro b/tests/tests.pro new file mode 100644 index 0000000..157ef34 --- /dev/null +++ b/tests/tests.pro @@ -0,0 +1,2 @@ +TEMPLATE = subdirs +SUBDIRS += auto -- cgit v1.2.1