diff options
author | Caroline Chao <caroline.chao@digia.com> | 2013-04-03 11:05:40 +0200 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-04-04 17:45:43 +0200 |
commit | 4f8c3cfc8f6a3f3ccf245a196a5288bd0a242e49 (patch) | |
tree | b3fc8d61756c4661b047068c954721be1e0b9453 /tests/manual | |
parent | 6758f510dc70551114366f8e76887a7d585290c4 (diff) | |
download | qtquickcontrols-4f8c3cfc8f6a3f3ccf245a196a5288bd0a242e49.tar.gz |
TestBench: Add activeFocusOnTab property and Label
Change-Id: I0e416d21987d0b36f7ae2a7d537276889bc067e1
Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
Diffstat (limited to 'tests/manual')
-rw-r--r-- | tests/manual/testbench/content/Components.qml | 2 | ||||
-rw-r--r-- | tests/manual/testbench/main.qml | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/tests/manual/testbench/content/Components.qml b/tests/manual/testbench/content/Components.qml index 8eca5e75..531e68ad 100644 --- a/tests/manual/testbench/content/Components.qml +++ b/tests/manual/testbench/content/Components.qml @@ -53,6 +53,7 @@ Item { property Component textarea: TextArea { text: loremIpsum } property Component toolbar: ToolBar { } property Component statusbar: StatusBar { } + property Component label: Label {text: "I am a label" } property Component tableview: TableView { model: testDataModel ; TableViewColumn {title: "Column 1"}} property Component tabView: TabView { Repeater { model: 3 ; delegate:Tab { title: "Tab " + index } }} property Component scrollview: ScrollView { @@ -126,6 +127,7 @@ Item { append({ name: "ScrollView", component: scrollview}); append({ name: "GroupBox", component: groupbox}); append({ name: "TabView", component: tabView}); + append({ name: "Label", component: label}); } } } diff --git a/tests/manual/testbench/main.qml b/tests/manual/testbench/main.qml index cc20290e..e1363ee8 100644 --- a/tests/manual/testbench/main.qml +++ b/tests/manual/testbench/main.qml @@ -184,6 +184,7 @@ ApplicationWindow { switch (substr) { case "ActiveFocusOnPress": + case "ActiveFocusOnTab": case "Enabled": case "Visible": case "Checkable": |