aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quickcontrols/platform/tst_platform.cpp
blob: dbcc383f03effc8d55873c2b503e63abe5686210 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include <QtQml/qqmlengine.h>
#include <QtQuickTest/quicktest.h>

using namespace Qt::Literals;

class Setup : public QObject
{
    Q_OBJECT
    Q_PROPERTY(bool shortcutsSupported READ areShortcutsSupported CONSTANT FINAL)
    Q_PROPERTY(QString shortcutString MEMBER m_shortcutString CONSTANT FINAL)
#if QT_CONFIG(shortcut)
    Q_PROPERTY(int shortcutInt MEMBER m_shortcutInt CONSTANT FINAL)
    Q_PROPERTY(QKeySequence shortcutKeySequence MEMBER m_shortcutKeySequence CONSTANT FINAL)
#endif

    const QString m_shortcutString = u"CTRL+P"_s;
#if QT_CONFIG(shortcut)
    const int m_shortcutInt = QKeySequence::Print;
    const QKeySequence m_shortcutKeySequence{ Qt::CTRL | Qt::Key_P };
#endif

public:
    bool areShortcutsSupported() const
    {
#if QT_CONFIG(shortcut)
        return true;
#else
        return false;
#endif
    }

public slots:
    void qmlEngineAvailable(QQmlEngine *)
    {
        qmlRegisterSingletonInstance("org.qtproject.Test", 1, 0, "TestHelper", this);
    }
};

QUICK_TEST_MAIN_WITH_SETUP(tst_platform, Setup)

#include "tst_platform.moc"