GroupBox.qml 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  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. import QtQuick.Controls.Styles 1.1
  43. import QtQuick.Layouts 1.0
  44. /*!
  45. \qmltype GroupBox
  46. \inqmlmodule QtQuick.Controls
  47. \since 5.1
  48. \ingroup controls
  49. \brief GroupBox provides a group box frame with a title.
  50. \image groupbox.png
  51. A group box provides a frame, a title on top and displays various other controls inside itself. Group boxes can also be checkable.
  52. Child controls in checkable group boxes are enabled or disabled depending on whether or not the group box is checked.
  53. You can minimize the space consumption of a group box by enabling the flat property.
  54. In most styles, enabling this property results in the removal of the left, right and bottom edges of the frame.
  55. To add content to a group box, you can reparent it to its contentItem property.
  56. The implicit size of the GroupBox is calculated based on the size of its content. If you want to anchor
  57. items inside the group box, you must specify an explicit width and height on the GroupBox itself.
  58. The following example shows how we use a GroupBox:
  59. \qml
  60. GroupBox {
  61. title: "Joining for?"
  62. Column {
  63. spacing: 10
  64. CheckBox {
  65. text: "Breakfast"
  66. checked: true
  67. }
  68. CheckBox {
  69. text: "Lunch"
  70. checked: false
  71. }
  72. CheckBox {
  73. text: "Dinner"
  74. checked: true
  75. }
  76. }
  77. }
  78. \endqml
  79. \sa CheckBox, RadioButton, Layout
  80. */
  81. FocusScope {
  82. id: groupbox
  83. /*!
  84. This property holds the group box title text.
  85. There is no default title text.
  86. */
  87. property string title
  88. /*!
  89. This property holds whether the group box is painted flat or has a frame.
  90. A group box usually consists of a surrounding frame with a title at the top.
  91. If this property is enabled, only the top part of the frame is drawn in most styles;
  92. otherwise, the whole frame is drawn.
  93. By default, this property is disabled, so group boxes are not flat unless explicitly specified.
  94. \note In some styles, flat and non-flat group boxes have similar representations and may not be as
  95. distinguishable as they are in other styles.
  96. */
  97. property bool flat: false
  98. /*!
  99. This property holds whether the group box has a checkbox in its title.
  100. If this property is true, the group box displays its title using a checkbox in place of an ordinary label.
  101. If the checkbox is checked, the group box's children are enabled; otherwise, they are disabled and inaccessible.
  102. By default, group boxes are not checkable.
  103. */
  104. property bool checkable: false
  105. /*!
  106. \qmlproperty bool GroupBox::checked
  107. This property holds whether the group box is checked.
  108. If the group box is checkable, it is displayed with a check box. If the check box is checked, the group
  109. box's children are enabled; otherwise, the children are disabled and are inaccessible to the user.
  110. By default, checkable group boxes are also checked.
  111. */
  112. property alias checked: check.checked
  113. /*! \internal */
  114. default property alias __content: container.data
  115. /*!
  116. \qmlproperty Item GroupBox::contentItem
  117. This property holds the content Item of the group box.
  118. Items declared as children of a GroupBox are automatically parented to the GroupBox's contentItem.
  119. Items created dynamically need to be explicitly parented to the contentItem:
  120. \note The implicit size of the GroupBox is calculated based on the size of its content. If you want to anchor
  121. items inside the group box, you must specify an explicit width and height on the GroupBox itself.
  122. */
  123. readonly property alias contentItem: container
  124. /*! \internal */
  125. property Component style: Settings.styleComponent(Settings.style, "GroupBoxStyle.qml", groupbox)
  126. /*! \internal */
  127. property alias __checkbox: check
  128. /*! \internal */
  129. property alias __style: styleLoader.item
  130. implicitWidth: Math.max((!anchors.fill ? container.calcWidth() : 0) + loader.leftMargin + loader.rightMargin,
  131. sizeHint.implicitWidth + (checkable ? 24 : 6))
  132. implicitHeight: (!anchors.fill ? container.calcHeight() : 0) + loader.topMargin + loader.bottomMargin
  133. Layout.minimumWidth: implicitWidth
  134. Layout.minimumHeight: implicitHeight
  135. Accessible.role: Accessible.Grouping
  136. Accessible.name: title
  137. activeFocusOnTab: false
  138. data: [
  139. Loader {
  140. id: loader
  141. anchors.fill: parent
  142. property int topMargin: __style ? __style.padding.top : 0
  143. property int bottomMargin: __style ? __style.padding.bottom : 0
  144. property int leftMargin: __style ? __style.padding.left : 0
  145. property int rightMargin: __style ? __style.padding.right : 0
  146. sourceComponent: styleLoader.item ? styleLoader.item.panel : null
  147. onLoaded: item.z = -1
  148. Text { id: sizeHint ; visible: false ; text: title }
  149. Loader {
  150. id: styleLoader
  151. property alias __control: groupbox
  152. sourceComponent: groupbox.style
  153. }
  154. },
  155. CheckBox {
  156. id: check
  157. objectName: "check"
  158. checked: true
  159. text: groupbox.title
  160. visible: checkable
  161. anchors.top: parent.top
  162. anchors.left: parent.left
  163. anchors.right: parent.right
  164. height: loader.topMargin
  165. activeFocusOnTab: groupbox.checkable
  166. style: CheckBoxStyle { panel: Item{} }
  167. },
  168. Item {
  169. id: container
  170. objectName: "container"
  171. z: 1
  172. focus: true
  173. anchors.fill: parent
  174. anchors.topMargin: loader.topMargin
  175. anchors.leftMargin: loader.leftMargin
  176. anchors.rightMargin: loader.rightMargin
  177. anchors.bottomMargin: loader.bottomMargin
  178. enabled: (!groupbox.checkable || groupbox.checked)
  179. property Item layoutItem: container.children.length === 1 ? container.children[0] : null
  180. function calcWidth () { return (layoutItem ? (layoutItem.implicitWidth || layoutItem.width) +
  181. (layoutItem.anchors.fill ? layoutItem.anchors.leftMargin +
  182. layoutItem.anchors.rightMargin : 0) : container.childrenRect.width) }
  183. function calcHeight () { return (layoutItem ? (layoutItem.implicitHeight || layoutItem.height) +
  184. (layoutItem.anchors.fill ? layoutItem.anchors.topMargin +
  185. layoutItem.anchors.bottomMargin : 0) : container.childrenRect.height) }
  186. }]
  187. }