summaryrefslogtreecommitdiffstats
path: root/doc/src
diff options
context:
space:
mode:
authorAleksandar Sasha Babic <aleksandar.babic@nokia.com>2009-05-06 14:18:38 (GMT)
committerAleksandar Sasha Babic <aleksandar.babic@nokia.com>2009-05-06 14:18:38 (GMT)
commitead212aff40b2edbefb1a10ba14f0afed7236995 (patch)
tree40c82d4b47a9502b6e032b8df2a94fbeec6cfe44 /doc/src
parent913a78a9288bf1f68f4975bec5cc58e699c09f39 (diff)
parent1b0916db13a52d99dad93322aae0c5c6ba4c2d18 (diff)
downloadQt-ead212aff40b2edbefb1a10ba14f0afed7236995.zip
Qt-ead212aff40b2edbefb1a10ba14f0afed7236995.tar.gz
Qt-ead212aff40b2edbefb1a10ba14f0afed7236995.tar.bz2
Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt-s60-public
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/qnamespace.qdoc30
1 files changed, 30 insertions, 0 deletions
diff --git a/doc/src/qnamespace.qdoc b/doc/src/qnamespace.qdoc
index 674169e..84b3a01 100644
--- a/doc/src/qnamespace.qdoc
+++ b/doc/src/qnamespace.qdoc
@@ -2392,6 +2392,36 @@
*/
/*!
+ \enum Qt::InputMethodHint
+
+ \value ImhNone No hints.
+ \value ImhHiddenText Characters should be hidden, as is typically used when entering passwords.
+ This is automatically set when setting QLineEdit::echoMode to \c Password.
+ \value ImhDigitsOnly Only digit input is allowed.
+ \value ImhFormattedNumbersOnly Only number input (including integers and real numbers) is allowed.
+ \value ImhUppercaseOnly Only upper case letter input is allowed.
+ \value ImhLowercaseOnly Only lower case letter input is allowed.
+ \value ImhNoAutoUppercase The input method should not try to automatically switch to upper case
+ at the beginning of a sentence.
+ \value ImhPreferNumbers Numbers are preferred (but not required). This can include only digits,
+ phone numbers, or all numbers, depending on which one of the
+ \c ImhDigitsOnly, \c ImhDialableCharactersOnly and
+ \c ImhFormattedNumbersOnly flags is given.
+ \value ImhPreferUppercase Upper case letters are preferred (but not required).
+ \value ImhPreferLowercase Lower case letters are preferred (but not required).
+ \value ImhNoPredictiveText Do not use predictive text (i.e. dictionary lookup) while typing.
+ \value ImhDialableCharactersOnly Only characters suitable for phone dialling are allowed.
+
+ \note If several flags ending with \c Only are ORed together, the resulting character set will
+ consist of the union of the specified sets. For instance specifying \c ImhNumbersOnly and
+ \c ImhUppercaseOnly would yield a set consisting of numbers and uppercase letters.
+
+ \note If several flags of the \c Prefer type are ORed together, the result is undefined.
+
+ \sa QWidget::inputMethodHints
+*/
+
+/*!
\enum Qt::InputMethodQuery
\value ImMicroFocus The rectangle covering the area of the input cursor in widget coordinates.