Fix typos and style in QInputDialog's docs
Change-Id: I1285938efd252346c4016c8f059c7e4f78ca12a9 Reviewed-by: Sze Howe Koh <szehowe.koh@gmail.com> Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
This commit is contained in:
parent
305300cd9c
commit
cfaa98011b
@ -440,7 +440,7 @@ void QInputDialogPrivate::_q_currentRowChanged(const QModelIndex &newIndex,
|
|||||||
|
|
||||||
\snippet dialogs/standarddialogs/dialog.cpp 3
|
\snippet dialogs/standarddialogs/dialog.cpp 3
|
||||||
|
|
||||||
The \c ok variable is set to true if the user clicks \uicontrol OK; otherwise it
|
The \c ok variable is set to true if the user clicks \uicontrol OK; otherwise, it
|
||||||
is set to false.
|
is set to false.
|
||||||
|
|
||||||
\image inputdialogs.png Input Dialogs
|
\image inputdialogs.png Input Dialogs
|
||||||
@ -492,7 +492,7 @@ QInputDialog::~QInputDialog()
|
|||||||
|
|
||||||
\brief the mode used for input
|
\brief the mode used for input
|
||||||
|
|
||||||
This property help determines which widget is used for entering input into
|
This property helps determine which widget is used for entering input into
|
||||||
the dialog.
|
the dialog.
|
||||||
*/
|
*/
|
||||||
void QInputDialog::setInputMode(InputMode mode)
|
void QInputDialog::setInputMode(InputMode mode)
|
||||||
@ -545,7 +545,7 @@ QInputDialog::InputMode QInputDialog::inputMode() const
|
|||||||
|
|
||||||
\property QInputDialog::labelText
|
\property QInputDialog::labelText
|
||||||
|
|
||||||
\brief the text to for the label to describe what needs to be input
|
\brief the label's text which describes what needs to be input
|
||||||
*/
|
*/
|
||||||
void QInputDialog::setLabelText(const QString &text)
|
void QInputDialog::setLabelText(const QString &text)
|
||||||
{
|
{
|
||||||
@ -572,7 +572,7 @@ QString QInputDialog::labelText() const
|
|||||||
This enum specifies various options that affect the look and feel
|
This enum specifies various options that affect the look and feel
|
||||||
of an input dialog.
|
of an input dialog.
|
||||||
|
|
||||||
\value NoButtons Don't display \uicontrol{OK} and \uicontrol{Cancel} buttons. (Useful for "live dialogs".)
|
\value NoButtons Don't display \uicontrol{OK} and \uicontrol{Cancel} buttons (useful for "live dialogs").
|
||||||
\value UseListViewForComboBoxItems Use a QListView rather than a non-editable QComboBox for
|
\value UseListViewForComboBoxItems Use a QListView rather than a non-editable QComboBox for
|
||||||
displaying the items set with setComboBoxItems().
|
displaying the items set with setComboBoxItems().
|
||||||
|
|
||||||
@ -698,7 +698,7 @@ QLineEdit::EchoMode QInputDialog::textEchoMode() const
|
|||||||
|
|
||||||
\property QInputDialog::comboBoxEditable
|
\property QInputDialog::comboBoxEditable
|
||||||
|
|
||||||
\brief whether or not the combo box is used in the input dialog is editable
|
\brief whether or not the combo box used in the input dialog is editable
|
||||||
*/
|
*/
|
||||||
void QInputDialog::setComboBoxEditable(bool editable)
|
void QInputDialog::setComboBoxEditable(bool editable)
|
||||||
{
|
{
|
||||||
@ -956,7 +956,7 @@ void QInputDialog::setDoubleRange(double min, double max)
|
|||||||
|
|
||||||
\property QInputDialog::doubleDecimals
|
\property QInputDialog::doubleDecimals
|
||||||
|
|
||||||
\brief sets the percision of the double spinbox in decimals
|
\brief sets the precision of the double spinbox in decimals
|
||||||
|
|
||||||
\sa QDoubleSpinBox::setDecimals()
|
\sa QDoubleSpinBox::setDecimals()
|
||||||
*/
|
*/
|
||||||
@ -1313,7 +1313,7 @@ double QInputDialog::getDouble(QWidget *parent, const QString &title, const QStr
|
|||||||
\a inputMethodHints is the input method hints that will be used if the
|
\a inputMethodHints is the input method hints that will be used if the
|
||||||
combo box is editable and an input method is active.
|
combo box is editable and an input method is active.
|
||||||
|
|
||||||
If \a editable is true the user can enter their own text; otherwise the
|
If \a editable is true the user can enter their own text; otherwise, the
|
||||||
user may only select one of the existing items.
|
user may only select one of the existing items.
|
||||||
|
|
||||||
If \a ok is nonnull \e *\a ok will be set to true if the user pressed
|
If \a ok is nonnull \e *\a ok will be set to true if the user pressed
|
||||||
|
Loading…
x
Reference in New Issue
Block a user