summaryrefslogtreecommitdiff
path: root/src/styles/Base/CheckBoxStyle.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/styles/Base/CheckBoxStyle.qml')
-rw-r--r--src/styles/Base/CheckBoxStyle.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/styles/Base/CheckBoxStyle.qml b/src/styles/Base/CheckBoxStyle.qml
index 1323aa85..6aa6f9b5 100644
--- a/src/styles/Base/CheckBoxStyle.qml
+++ b/src/styles/Base/CheckBoxStyle.qml
@@ -45,13 +45,14 @@ import QtQuick.Controls.Private 1.0
\qmltype CheckBoxStyle
\inqmlmodule QtQuick.Controls.Styles 1.0
\since QtQuick.Controls.Styles 1.0
+ \ingroup controlsstyling
\brief Provides custom styling for CheckBox
Example:
\qml
CheckBox {
text: "Check Box"
- style: CheckBoxStyle{
+ style: CheckBoxStyle {
indicator: Rectangle {
implicitWidth: 16
implicitHeight: 16
@@ -66,13 +67,12 @@ import QtQuick.Controls.Private 1.0
anchors.margins: 4
anchors.fill: parent
}
- }
}
}
}
\endqml
*/
-PaddedStyle {
+Style {
id: checkboxStyle
/*! The \l CheckBox attached to this style. */
@@ -83,7 +83,7 @@ PaddedStyle {
SystemPalette.Active : SystemPalette.Disabled
}
- /*! The text label. */
+ /*! This defines the text label. */
property Component label: Text {
text: control.text
color: __syspal.text
@@ -102,7 +102,7 @@ PaddedStyle {
/*! The spacing between indicator and label. */
property int spacing: 4
- /*! The indicator button. */
+ /*! This defines the indicator button. */
property Component indicator: Item {
implicitWidth: 18
implicitHeight: 18