aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2015-12-17 15:05:35 +0100
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-12-17 14:40:42 +0000
commit182b4d5fe364655f9bdc05e8b708b6fe39a7e269 (patch)
tree4f0fcd135b2318b1016180cb060bf9c071c807ba /tests
parent5a21b50e6aeda5bed7d16c28022ec023411f1ba4 (diff)
ToolButton: support highlighted mode
Change-Id: I8fb754080e204384e0215d60e819f9eaac204de7 Task-number: QTBUG-50018 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/manual/testbench/main.qml9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/manual/testbench/main.qml b/tests/manual/testbench/main.qml
index bb36be3f..34baece7 100644
--- a/tests/manual/testbench/main.qml
+++ b/tests/manual/testbench/main.qml
@@ -69,6 +69,15 @@ ApplicationWindow {
pressed: true
}
ToolButton {
+ text: "Checked"
+ checkable: true
+ checked: true
+ }
+ ToolButton {
+ text: "Highlighted"
+ highlighted: true
+ }
+ ToolButton {
text: "Disabled"
enabled: false
}