aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@qt.io>2017-03-06 10:44:29 +0100
committerMitch Curtis <mitch.curtis@qt.io>2017-03-06 12:33:46 +0000
commit71c2ef11dac691b8c794dba29f487a3c36bfb53b (patch)
tree6c1423f0e912d737f8c70a3f39420fe75156b290 /src/imports/controls
parent1fb19570009c598a26ea87419ed14a877eabf045 (diff)
Improve qtquickcontrols2-buttons.qdoc
Change-Id: Ie417f6377016e1a28122efefcc9fcef5e642d027 Reviewed-by: J-P Nurmi <jpnurmi@qt.io>
Diffstat (limited to 'src/imports/controls')
-rw-r--r--src/imports/controls/doc/src/qtquickcontrols2-buttons.qdoc13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/imports/controls/doc/src/qtquickcontrols2-buttons.qdoc b/src/imports/controls/doc/src/qtquickcontrols2-buttons.qdoc
index a3ab35b2..a1f2dd57 100644
--- a/src/imports/controls/doc/src/qtquickcontrols2-buttons.qdoc
+++ b/src/imports/controls/doc/src/qtquickcontrols2-buttons.qdoc
@@ -79,12 +79,12 @@
be taken, a switch is recommended.
When options can be grouped, you can use a partially checked CheckBox to
- represent the whole group. Use the checkbox's indeterminate state when
- a user selects some, but not all, sub-items in the group.
+ represent the whole group. Use the checkbox's
+ \l {CheckBox::checkState}{partially checked state} when a user selects
+ some, but not all, sub-items in the group.
- The three availables statuses are: checked, unchecked and disabled.
- "Disabled" is useful when the user should not be able to check or uncheck
- a checkbox.
+ The three availables check states are: checked, partially checked and
+ unchecked.
The checkable options are often listed vertically.
@@ -121,9 +121,6 @@
\l RadioButton is used to select only one option from a set of options.
Selecting one option automatically deselects the one selected before.
- The set of options should not be too large, otherwise it starts taking too much
- space on the screen. In that case it would be more practical to use a \l ComboBox.
-
If there are only two mutually exclusive options, combine them into a
single checkbox or a switch.