CheckBox.qml 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the Qt Quick Controls module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. import QtQuick 2.2
  40. import QtQuick.Controls 1.2
  41. import QtQuick.Controls.Private 1.0
  42. /*!
  43. \qmltype CheckBox
  44. \inqmlmodule QtQuick.Controls
  45. \since 5.1
  46. \ingroup controls
  47. \brief A checkbox with a text label.
  48. \image checkbox.png
  49. A CheckBox is an option button that can be toggled on (checked) or off
  50. (unchecked). Checkboxes are typically used to represent features in an
  51. application that can be enabled or disabled without affecting others.
  52. The state of the checkbox can be set with the \l {AbstractCheckable::checked}{checked} property.
  53. In addition to the checked and unchecked states, there is a third state:
  54. partially checked. This state indicates that the
  55. regular checked/unchecked state can not be determined; generally because of
  56. other states that affect the checkbox. This state is useful when several
  57. child nodes are selected in a treeview, for example.
  58. The partially checked state can be made available to the user by setting
  59. \l partiallyCheckedEnabled to \c true, or set directly by setting
  60. \l checkedState to \c Qt.PartiallyChecked. \l checkedState behaves
  61. identically to \l {AbstractCheckable::checked}{checked} when \l partiallyCheckedEnabled
  62. is \c false; setting one will appropriately set the other.
  63. The label is shown next to the checkbox, and you can set the label text using its
  64. \l {AbstractCheckable::text}{text} property.
  65. \qml
  66. Column {
  67. CheckBox {
  68. text: qsTr("Breakfast")
  69. checked: true
  70. }
  71. CheckBox {
  72. text: qsTr("Lunch")
  73. }
  74. CheckBox {
  75. text: qsTr("Dinner")
  76. checked: true
  77. }
  78. }
  79. \endqml
  80. Whenever a CheckBox is clicked, it emits the \l {AbstractCheckable::clicked}{clicked()} signal.
  81. You can create a custom appearance for a CheckBox by
  82. assigning a \l {CheckBoxStyle}.
  83. */
  84. AbstractCheckable {
  85. id: checkBox
  86. /*!
  87. \qmlproperty enumeration CheckBox::checkedState
  88. This property indicates the current checked state of the checkbox.
  89. Possible values:
  90. \c Qt.UnChecked - The checkbox is not checked (default).
  91. \c Qt.Checked - The checkbox is checked.
  92. \c Qt.PartiallyChecked - The checkbox is in a partially checked (or
  93. "mixed") state.
  94. The \l {AbstractCheckable::checked}{checked} property also determines whether
  95. this property is \c Qt.Checked or \c Qt.UnChecked, and vice versa.
  96. */
  97. property int checkedState: checked ? Qt.Checked : Qt.Unchecked
  98. /*!
  99. This property determines whether the \c Qt.PartiallyChecked state is
  100. available.
  101. A checkbox may be in a partially checked state when the regular checked
  102. state can not be determined.
  103. Setting \l checkedState to \c Qt.PartiallyChecked will implicitly set
  104. this property to \c true.
  105. If this property is \c true, \l {AbstractCheckable::checked}{checked} will be \c false.
  106. By default, this property is \c false.
  107. */
  108. property bool partiallyCheckedEnabled: false
  109. /*!
  110. \internal
  111. True if onCheckedChanged should be ignored because we were reacting
  112. to onCheckedStateChanged.
  113. */
  114. property bool __ignoreChecked: false
  115. /*!
  116. \internal
  117. True if onCheckedStateChanged should be ignored because we were reacting
  118. to onCheckedChanged.
  119. */
  120. property bool __ignoreCheckedState: false
  121. style: Settings.styleComponent(Settings.style, "CheckBoxStyle.qml", checkBox)
  122. activeFocusOnTab: true
  123. Accessible.role: Accessible.CheckBox
  124. Accessible.name: text
  125. __cycleStatesHandler: __cycleCheckBoxStates
  126. onCheckedChanged: {
  127. if (!__ignoreChecked) {
  128. __ignoreCheckedState = true;
  129. checkedState = checked ? Qt.Checked : Qt.Unchecked;
  130. __ignoreCheckedState = false;
  131. }
  132. }
  133. onCheckedStateChanged: {
  134. __ignoreChecked = true;
  135. if (checkedState === Qt.PartiallyChecked) {
  136. partiallyCheckedEnabled = true;
  137. checked = false;
  138. } else if (!__ignoreCheckedState) {
  139. checked = checkedState === Qt.Checked;
  140. }
  141. __ignoreChecked = false;
  142. }
  143. onPartiallyCheckedEnabledChanged: {
  144. if (exclusiveGroup && partiallyCheckedEnabled) {
  145. console.warn("Cannot have partially checked boxes in an ExclusiveGroup.");
  146. }
  147. }
  148. onExclusiveGroupChanged: {
  149. if (exclusiveGroup && partiallyCheckedEnabled) {
  150. console.warn("Cannot have partially checked boxes in an ExclusiveGroup.");
  151. }
  152. }
  153. /*! \internal */
  154. function __cycleCheckBoxStates() {
  155. if (!partiallyCheckedEnabled) {
  156. checked = !checked;
  157. } else {
  158. switch (checkedState) {
  159. case Qt.Unchecked: checkedState = Qt.Checked; break;
  160. case Qt.Checked: checkedState = Qt.PartiallyChecked; break;
  161. case Qt.PartiallyChecked: checkedState = Qt.Unchecked; break;
  162. }
  163. }
  164. }
  165. }