aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/quickcontrols/gifs/data/qtquickcontrols2-button.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/quickcontrols/gifs/data/qtquickcontrols2-button.qml')
-rw-r--r--tests/manual/quickcontrols/gifs/data/qtquickcontrols2-button.qml18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/manual/quickcontrols/gifs/data/qtquickcontrols2-button.qml b/tests/manual/quickcontrols/gifs/data/qtquickcontrols2-button.qml
new file mode 100644
index 0000000000..895a143762
--- /dev/null
+++ b/tests/manual/quickcontrols/gifs/data/qtquickcontrols2-button.qml
@@ -0,0 +1,18 @@
+// Copyright (C) 2017 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+
+import QtQuick
+import QtQuick.Window
+import QtQuick.Controls
+
+Window {
+ width: button.width
+ height: button.height
+ visible: true
+
+ Button {
+ id: button
+ text: pressed ? "Pressed" : "Button"
+ anchors.centerIn: parent
+ }
+}