File: tst_platform.cpp

package info (click to toggle)
qt6-declarative 6.9.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 308,920 kB
  • sloc: cpp: 775,911; javascript: 514,247; xml: 10,855; python: 2,806; ansic: 2,253; java: 810; sh: 262; makefile: 41; php: 27
file content (44 lines) | stat: -rw-r--r-- 1,184 bytes parent folder | download | duplicates (2)
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"