aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmltest/quicktestutil_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qmltest/quicktestutil_p.h')
-rw-r--r--src/qmltest/quicktestutil_p.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/src/qmltest/quicktestutil_p.h b/src/qmltest/quicktestutil_p.h
new file mode 100644
index 0000000000..d9c0241cbe
--- /dev/null
+++ b/src/qmltest/quicktestutil_p.h
@@ -0,0 +1,65 @@
+// Copyright (C) 2019 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+#ifndef QUICKTESTUTIL_P_H
+#define QUICKTESTUTIL_P_H
+
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists purely as an
+// implementation detail. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
+#include <QtQuickTest/private/quicktestglobal_p.h>
+
+#include <QtCore/qobject.h>
+#include <QtQml/qqml.h>
+#include <QtQml/private/qqmlsignalnames_p.h>
+#include <QtQml/qjsvalue.h>
+
+QT_BEGIN_NAMESPACE
+
+class Q_QMLTEST_EXPORT QuickTestUtil : public QObject
+{
+ Q_OBJECT
+ Q_PROPERTY(bool printAvailableFunctions READ printAvailableFunctions NOTIFY printAvailableFunctionsChanged)
+ Q_PROPERTY(int dragThreshold READ dragThreshold NOTIFY dragThresholdChanged)
+ QML_NAMED_ELEMENT(TestUtil)
+ QML_ADDED_IN_VERSION(1, 0)
+public:
+ QuickTestUtil(QObject *parent = nullptr) :QObject(parent) {}
+ ~QuickTestUtil() override {}
+
+ bool printAvailableFunctions() const;
+ int dragThreshold() const;
+
+ Q_INVOKABLE void populateClipboardText(int lineCount);
+
+Q_SIGNALS:
+ void printAvailableFunctionsChanged();
+ void dragThresholdChanged();
+
+public Q_SLOTS:
+
+ QJSValue typeName(const QVariant& v) const;
+ bool compare(const QVariant& act, const QVariant& exp) const;
+
+ QJSValue callerFile(int frameIndex = 0) const;
+ int callerLine(int frameIndex = 0) const;
+
+ Q_REVISION(6, 7) QString signalHandlerName(const QString &signalName)
+ {
+ if (QQmlSignalNames::isHandlerName(signalName))
+ return signalName;
+ return QQmlSignalNames::signalNameToHandlerName(signalName);
+ }
+};
+
+QT_END_NAMESPACE
+
+#endif // QUICKTESTUTIL_P_H