summaryrefslogtreecommitdiff
path: root/tests/manual
diff options
context:
space:
mode:
authorJens Bache-Wiig <jens.bache-wiig@digia.com>2013-08-19 17:26:29 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-09 20:05:03 +0200
commitc1d88b95f97a18443c60d62626e86b619cd84f34 (patch)
treed2eece6efeb388c2e9307e9298e4bc26f13a144a /tests/manual
parent66d9c281af9407d920f9cad7020f8314c9945a10 (diff)
downloadqtquickcontrols-c1d88b95f97a18443c60d62626e86b619cd84f34.tar.gz
BusyIndicator
A basic BusyIndicator to indicate activity while blocking the UI. Change-Id: Iec88b6a4c7f23b630ebdf445c4cb288684c24cb7 Reviewed-by: J-P Nurmi <jpnurmi@digia.com>
Diffstat (limited to 'tests/manual')
-rw-r--r--tests/manual/testbench/content/Components.qml4
-rw-r--r--tests/manual/testbench/main.qml1
2 files changed, 5 insertions, 0 deletions
diff --git a/tests/manual/testbench/content/Components.qml b/tests/manual/testbench/content/Components.qml
index 4d406d14..af5dcd00 100644
--- a/tests/manual/testbench/content/Components.qml
+++ b/tests/manual/testbench/content/Components.qml
@@ -49,6 +49,7 @@ Item {
property Component toolbutton: ToolButton { text: "A ToolButton" }
property Component radiobutton: RadioButton { text: "A RadioButton" }
property Component textfield: TextField { }
+ property Component busyIndicator: BusyIndicator { }
property Component spinbox: SpinBox {}
property Component slider : Slider {}
property Component combobox: ComboBox { model: testDataModel }
@@ -114,6 +115,7 @@ Item {
property var componentModel: ListModel {
Component.onCompleted: {
append({ name: "Button", component: button});
+ append({ name: "BusyIndicator", component: busyIndicator});
append({ name: "ToolButton", component: toolbutton});
append({ name: "CheckBox", component: checkbox});
append({ name: "ComboBox", component: combobox});
@@ -149,11 +151,13 @@ Item {
property Component scrollviewStyle: ScrollViewStyle {}
property Component groupboxStyle: GroupBoxStyle {}
property Component tabViewStyle: TabViewStyle {}
+ property Component busyIndicatorStyle: BusyIndicatorStyle {}
property Component labelStyle: null
property var customStyles: ListModel {
Component.onCompleted: {
append({ name: "Button", component: buttonStyle});
+ append({ name: "BusyIndicator", component: busyIndicatorStyle});
append({ name: "ToolButton", component: toolbuttonStyle});
append({ name: "CheckBox", component: checkboxStyle});
append({ name: "ComboBox", component: comboboxStyle});
diff --git a/tests/manual/testbench/main.qml b/tests/manual/testbench/main.qml
index 5c1d4eb7..df7cea9b 100644
--- a/tests/manual/testbench/main.qml
+++ b/tests/manual/testbench/main.qml
@@ -198,6 +198,7 @@ ApplicationWindow {
case "visible":
case "checkable":
case "checked":
+ case "running":
case "frameVisible":
case "adjustToContentSize":
case "flat":