summaryrefslogtreecommitdiffstats
path: root/tests/manual/iconbrowser/Main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/iconbrowser/Main.qml')
-rw-r--r--tests/manual/iconbrowser/Main.qml31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/manual/iconbrowser/Main.qml b/tests/manual/iconbrowser/Main.qml
new file mode 100644
index 0000000000..fd16df58ec
--- /dev/null
+++ b/tests/manual/iconbrowser/Main.qml
@@ -0,0 +1,31 @@
+// Copyright (C) 2023 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+import QtQuick
+import QtQuick.Controls
+
+Rectangle {
+ anchors.fill: parent
+ Column {
+ Row {
+ ToolButton {
+ id: normalButton
+ icon.name: iconName.text
+ }
+ ToolButton {
+ id: disabledButton
+ enabled: false
+ icon.name: iconName.text
+ }
+ ToolButton {
+ id: checkedButton
+ checked: true
+ icon.name: iconName.text
+ }
+ }
+ TextField {
+ id: iconName
+ text: "folder"
+ }
+ }
+}