aboutsummaryrefslogtreecommitdiffstats
path: root/tests/baseline/controls/data/roundbutton/roundbutton.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/baseline/controls/data/roundbutton/roundbutton.qml')
-rw-r--r--tests/baseline/controls/data/roundbutton/roundbutton.qml50
1 files changed, 50 insertions, 0 deletions
diff --git a/tests/baseline/controls/data/roundbutton/roundbutton.qml b/tests/baseline/controls/data/roundbutton/roundbutton.qml
new file mode 100644
index 0000000000..5c2c7b2eb8
--- /dev/null
+++ b/tests/baseline/controls/data/roundbutton/roundbutton.qml
@@ -0,0 +1,50 @@
+import QtQuick
+import QtQuick.Controls
+import QtQuick.Layouts
+
+ColumnLayout {
+ spacing: 5
+
+ RoundButton {
+ }
+
+ RoundButton {
+ text: qsTr("2")
+ enabled: false
+ }
+
+ RoundButton {
+ text: qsTr("3")
+ down: true
+ }
+
+ RoundButton {
+ text: qsTr("4")
+ checked: true
+ }
+
+ RoundButton {
+ text: qsTr("5")
+ checkable: true
+ }
+
+ RoundButton {
+ text: qsTr("6")
+ focus: true
+ }
+
+ RoundButton {
+ text: qsTr("7")
+ highlighted: true
+ }
+
+ RoundButton {
+ text: qsTr("8")
+ flat: true
+ }
+
+ RoundButton {
+ text: qsTr("9")
+ LayoutMirroring.enabled: true
+ }
+}