summaryrefslogtreecommitdiff
path: root/tests/auto/controls/data/toolbutton
diff options
context:
space:
mode:
authorCaroline Chao <caroline.chao@digia.com>2013-04-24 16:15:20 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-05-23 13:40:29 +0200
commit1c98fb768afcc5d7d689073c2a8146fc2fcb860a (patch)
tree2bffb25f6fffd275980891974b2cb167c87881b2 /tests/auto/controls/data/toolbutton
parente5068aa21e803a7ddb8eec9fadfc00dcd30728ab (diff)
downloadqtquickcontrols-1c98fb768afcc5d7d689073c2a8146fc2fcb860a.tar.gz
ToolButton: Fix checkable behavior
Add autotests. Task-number: QTBUG-31033 Task-number: QTBUG-30971 Change-Id: If82d5a9b6200e62d358ffc83e55137bab9b242c5 Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@digia.com>
Diffstat (limited to 'tests/auto/controls/data/toolbutton')
-rw-r--r--tests/auto/controls/data/toolbutton/tb_checkableActionWithinExclusiveGroup.qml92
-rw-r--r--tests/auto/controls/data/toolbutton/tb_exclusivegroup.qml70
-rw-r--r--tests/auto/controls/data/toolbutton/tb_withCheckableAction.qml87
3 files changed, 249 insertions, 0 deletions
diff --git a/tests/auto/controls/data/toolbutton/tb_checkableActionWithinExclusiveGroup.qml b/tests/auto/controls/data/toolbutton/tb_checkableActionWithinExclusiveGroup.qml
new file mode 100644
index 00000000..d2970466
--- /dev/null
+++ b/tests/auto/controls/data/toolbutton/tb_checkableActionWithinExclusiveGroup.qml
@@ -0,0 +1,92 @@
+/****************************************************************************
+**
+** 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
+
+Row {
+ width: 200
+ height: 100
+ spacing: 10
+ focus: true
+
+ property alias tb1: _tb1
+ property alias tb2: _tb2
+ property alias text: textinput
+
+ ExclusiveGroup{
+ Action {
+ id: bold
+ text: "Bold"
+ checkable: true
+ checked: textinput.font.bold
+ }
+ Action {
+ id: underline
+ text: "Underline"
+ checkable: true
+ checked: textinput.font.underline
+ }
+ }
+ Binding {
+ target: textinput
+ property: "font.bold"
+ value: bold.checked
+ }
+ Binding {
+ target: textinput
+ property: "font.underline"
+ value: underline.checked
+ }
+ ToolButton {
+ id: _tb1
+ action: bold
+ }
+ ToolButton {
+ id: _tb2
+ action: underline
+ }
+ TextInput {
+ id: textinput
+ text: "Hello"
+ property bool isBold: font.bold
+ property bool isUnderline: font.underline
+ }
+}
diff --git a/tests/auto/controls/data/toolbutton/tb_exclusivegroup.qml b/tests/auto/controls/data/toolbutton/tb_exclusivegroup.qml
new file mode 100644
index 00000000..451818f3
--- /dev/null
+++ b/tests/auto/controls/data/toolbutton/tb_exclusivegroup.qml
@@ -0,0 +1,70 @@
+/****************************************************************************
+**
+** 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
+
+Row {
+ width: 100
+ height: 50
+ spacing: 10
+
+ property alias tb1: _tb1
+ property alias tb2: _tb2
+ ExclusiveGroup { id: group }
+ ToolButton {
+ id: _tb1
+ height: 40
+ width: 40
+ checkable: true
+ text: 'A'
+ exclusiveGroup: group
+ }
+
+ ToolButton {
+ id: _tb2
+ height: 40
+ width: 40
+ checkable: true
+ text: 'B'
+ exclusiveGroup: group
+ }
+}
+
diff --git a/tests/auto/controls/data/toolbutton/tb_withCheckableAction.qml b/tests/auto/controls/data/toolbutton/tb_withCheckableAction.qml
new file mode 100644
index 00000000..ff973072
--- /dev/null
+++ b/tests/auto/controls/data/toolbutton/tb_withCheckableAction.qml
@@ -0,0 +1,87 @@
+/****************************************************************************
+**
+** 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
+
+Row {
+ width: 200
+ height: 50
+ spacing: 10
+
+ property var currentTextInput: textinput
+ property alias tb: _tb
+ property alias text1: textinput
+ property alias text2: textinput2
+
+ Action {
+ id: bold
+ text: "&Bold"
+ onTriggered: currentTextInput.font.bold = !currentTextInput.font.bold
+ checkable: true
+ checked: currentTextInput.font.bold
+ }
+ ToolButton {
+ id: _tb
+ action: bold
+ }
+
+ TextInput {
+ id: textinput
+ text: "Hello"
+ property bool isBold: font.bold
+ MouseArea {
+ anchors.fill: parent
+ hoverEnabled: true
+ onClicked: currentTextInput = textinput
+ }
+ }
+
+ TextInput {
+ id: textinput2
+ text: "Hello2"
+ property bool isBold: font.bold
+ MouseArea {
+ anchors.fill: parent
+ hoverEnabled: true
+ onClicked: currentTextInput = textinput2
+ }
+ }
+}