summaryrefslogtreecommitdiff
path: root/tests/manual/testbench
diff options
context:
space:
mode:
authorJens Bache-Wiig <jens.bache-wiig@digia.com>2013-03-02 09:56:50 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-03-02 10:05:06 +0100
commitad838ec57c675920aab23c449af28249a13ce223 (patch)
tree80075ecf7550a69f76cddce2ede383cb693eecf9 /tests/manual/testbench
parent1e6be176db0c502971b4ed19e06db49d22f99abf (diff)
downloadqtquickcontrols-ad838ec57c675920aab23c449af28249a13ce223.tar.gz
Add TabView to Testbench
Already reveals a size issue.. Change-Id: Ie7e9a2027f1b0c6c4920d1a27c76bdc460e319b3 Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
Diffstat (limited to 'tests/manual/testbench')
-rw-r--r--tests/manual/testbench/content/Components.qml2
-rw-r--r--tests/manual/testbench/main.qml1
2 files changed, 3 insertions, 0 deletions
diff --git a/tests/manual/testbench/content/Components.qml b/tests/manual/testbench/content/Components.qml
index de77c3ac..8a3195b3 100644
--- a/tests/manual/testbench/content/Components.qml
+++ b/tests/manual/testbench/content/Components.qml
@@ -54,6 +54,7 @@ Item {
property Component toolbar: ToolBar { }
property Component statusbar: StatusBar { }
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 {
Rectangle {
color: "#eee"
@@ -124,6 +125,7 @@ Item {
append({ name: "TableView", component: tableview});
append({ name: "ScrollView", component: scrollview});
append({ name: "GroupBox", component: groupbox});
+ append({ name: "TabView", component: tabView});
}
}
}
diff --git a/tests/manual/testbench/main.qml b/tests/manual/testbench/main.qml
index c4195961..1362427e 100644
--- a/tests/manual/testbench/main.qml
+++ b/tests/manual/testbench/main.qml
@@ -190,6 +190,7 @@ ApplicationWindow {
case "Visible":
case "Checkable":
case "Checked":
+ case "FrameVisible":
case "AdjustToContentSize":
case "Flat":
layout = layouts.boolLayout