summaryrefslogtreecommitdiff
path: root/tests/auto/controls/data/groupbox
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@digia.com>2013-06-10 15:24:16 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-06-10 19:26:39 +0200
commit5d037b17300e814e0e287edfe849badd4e253c1b (patch)
treeb1650088a2d5d5fbfbcfee10cb1c886e09b4321c /tests/auto/controls/data/groupbox
parentb22c5fb19a01c20d576bd7f25334cdf612f0f86a (diff)
downloadqtquickcontrols-5d037b17300e814e0e287edfe849badd4e253c1b.tar.gz
GroupBox: fix the activeFocusOnTab behavior
* change GroupBox to FocusScope * update the autotest Task-number: QTBUG-31306 Change-Id: I72d24b8eb71aa72798e01925691dbb3570518aed Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
Diffstat (limited to 'tests/auto/controls/data/groupbox')
-rw-r--r--tests/auto/controls/data/groupbox/gb_activeFocusOnTab.qml86
1 files changed, 86 insertions, 0 deletions
diff --git a/tests/auto/controls/data/groupbox/gb_activeFocusOnTab.qml b/tests/auto/controls/data/groupbox/gb_activeFocusOnTab.qml
new file mode 100644
index 00000000..6d1956fb
--- /dev/null
+++ b/tests/auto/controls/data/groupbox/gb_activeFocusOnTab.qml
@@ -0,0 +1,86 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the Qt Quick Controls module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:BSD$
+** You may use this file under the terms of the BSD license as follows:
+**
+** "Redistribution and use in source and binary forms, with or without
+** modification, are permitted provided that the following conditions are
+** met:
+** * Redistributions of source code must retain the above copyright
+** notice, this list of conditions and the following disclaimer.
+** * Redistributions in binary form must reproduce the above copyright
+** notice, this list of conditions and the following disclaimer in
+** the documentation and/or other materials provided with the
+** distribution.
+** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
+** of its contributors may be used to endorse or promote products derived
+** from this software without specific prior written permission.
+**
+**
+** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+import QtQuick 2.1
+import QtQuick.Controls 1.0
+
+Column {
+ width: 200
+ height: 200
+ property alias control1: _control1
+ property alias control2: _control2
+ GroupBox {
+ id: _control1
+ title: "control1"
+ checkable: true
+ Column {
+ objectName: "column1"
+ property alias child1: _child1
+ property alias child2: _child2
+ anchors.fill: parent
+ Button {
+ id: _child1
+ text: "child1"
+ }
+ Button {
+ id: _child2
+ text: "child2"
+ }
+ }
+ }
+ GroupBox {
+ id: _control2
+ title: "control2"
+ Column {
+ objectName: "column2"
+ property alias child3: _child3
+ property alias child4: _child4
+ anchors.fill: parent
+ Button {
+ id: _child3
+ text: "child3"
+ }
+ Button {
+ id: _child4
+ text: "child4"
+ }
+ }
+ }
+}