aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDmytro Tyshchenko <dimitri@froglogic.com>2013-03-14 12:09:04 +0100
committerJake Petroules <jake.petroules@petroules.com>2013-03-19 23:13:11 +0100
commit20994f94c592de3e5c023d79c244937ab23f56de (patch)
treed99c7de2585b1b2e4f2315b3d2567527d9ead31c /tests
parent751b942c5c8fea7531c75f5b83c640c063a05ba2 (diff)
Add function toNSMenu() to get NSMenu handle from QMenu object.
Also added test for this function. Task-number: QTBUG-28869 Change-Id: Ia9674dc28b614029423f3f9eb8fd1c8f62b9bcba Reviewed-by: Harri Porten <porten@froglogic.com> Reviewed-by: Morten Johan Sørvig <morten.sorvig@digia.com> Reviewed-by: Laszlo Papp <lpapp@kde.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/auto.pro2
-rw-r--r--tests/auto/macfunctions/macfunctions.pro12
-rw-r--r--tests/auto/macfunctions/tst_qtmacfunctions.mm85
-rw-r--r--tests/tests.pro2
4 files changed, 101 insertions, 0 deletions
diff --git a/tests/auto/auto.pro b/tests/auto/auto.pro
new file mode 100644
index 0000000..998e36a
--- /dev/null
+++ b/tests/auto/auto.pro
@@ -0,0 +1,2 @@
+TEMPLATE = subdirs
+SUBDIRS = macfunctions
diff --git a/tests/auto/macfunctions/macfunctions.pro b/tests/auto/macfunctions/macfunctions.pro
new file mode 100644
index 0000000..c34a9ed
--- /dev/null
+++ b/tests/auto/macfunctions/macfunctions.pro
@@ -0,0 +1,12 @@
+QT += testlib
+
+TARGET = tst_qtmacfunctions
+CONFIG += console
+CONFIG -= app_bundle
+
+TEMPLATE = app
+
+include (../../../src/qtmacextras.pri)
+
+OBJECTIVE_SOURCES += $$PWD/tst_qtmacfunctions.mm
+LIBS *= -framework AppKit
diff --git a/tests/auto/macfunctions/tst_qtmacfunctions.mm b/tests/auto/macfunctions/tst_qtmacfunctions.mm
new file mode 100644
index 0000000..eab6683
--- /dev/null
+++ b/tests/auto/macfunctions/tst_qtmacfunctions.mm
@@ -0,0 +1,85 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 froglogic GmbH and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the QtMacExtras module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Digia gives you certain additional
+** rights. These rights are described in the Digia 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.
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include <QString>
+#include <QtTest>
+#include <QCoreApplication>
+#include <QtWidgets/QMenu>
+#include <QtWidgets/QMenuBar>
+#include <QtWidgets/QMainWindow>
+#include <qtmacfunctions.h>
+
+#import <AppKit/AppKit.h>
+
+class tst_QtMacFunctions : public QObject
+{
+ Q_OBJECT
+
+public:
+ tst_QtMacFunctions();
+
+private slots:
+ void testQMenuToNSMenu();
+};
+
+tst_QtMacFunctions::tst_QtMacFunctions()
+{
+}
+
+void tst_QtMacFunctions::testQMenuToNSMenu()
+{
+ QMainWindow window;
+ QMenu *qMenu = new QMenu("Menu", &window);
+ QAction *action = new QAction("&Item", &window);
+ qMenu->addAction(action);
+ window.menuBar()->addMenu(qMenu);
+
+ NSMenu *nsMenu = toNSMenu(qMenu);
+ QVERIFY(nsMenu != NULL);
+ QCOMPARE([[nsMenu title] UTF8String], "Menu");
+
+ NSMenuItem *item = [nsMenu itemAtIndex:0];
+ QCOMPARE([[item title] UTF8String], "Item");
+}
+
+QTEST_MAIN(tst_QtMacFunctions)
+
+#include "tst_qtmacfunctions.moc"
diff --git a/tests/tests.pro b/tests/tests.pro
new file mode 100644
index 0000000..7fbc8a9
--- /dev/null
+++ b/tests/tests.pro
@@ -0,0 +1,2 @@
+TEMPLATE = subdirs
+SUBDIRS = auto