aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/accessibility/content/Checkbox.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/accessibility/content/Checkbox.qml')
-rw-r--r--examples/quick/accessibility/content/Checkbox.qml9
1 files changed, 6 insertions, 3 deletions
diff --git a/examples/quick/accessibility/content/Checkbox.qml b/examples/quick/accessibility/content/Checkbox.qml
index f16f66ebb2..7c20f55e90 100644
--- a/examples/quick/accessibility/content/Checkbox.qml
+++ b/examples/quick/accessibility/content/Checkbox.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the QtDeclarative module of the Qt Toolkit.
@@ -39,10 +39,8 @@
**
****************************************************************************/
-
import QtQuick 2.0
-
FocusScope {
id: checkbox
@@ -56,24 +54,29 @@ FocusScope {
Row {
spacing: 2
+
Rectangle {
width: 12
height: 12
border.width: checkbox.focus ? 2 : 1
border.color: "black"
+
Text {
id: checkboxText
text: checkbox.checked ? "x" : ""
anchors.centerIn: parent
}
}
+
Text {
text: checkbox.text
}
}
+
MouseArea {
anchors.fill: parent
onClicked: checkbox.checked = !checkbox.checked
}
+
Keys.onSpacePressed: checkbox.checked = !checkbox.checked
}