summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPekka Vuorela <pekka.ta.vuorela@nokia.com>2011-11-10 13:05:37 +0200
committerQt by Nokia <qt-info@nokia.com>2011-11-10 13:08:00 +0100
commit5665c6a55adc536d14404bd2606ab67ff5101ae9 (patch)
tree2e07820cdf5e90d9c22eec16bc1e2090a1acce39 /src
parenta80688799250d516eebf8c6b9f881af5fe06b1d6 (diff)
Updated Qt::InputMethodQuery documentation
Change-Id: Ibd27231366e4af2780bfe2f8f735da74dc04a1cf Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Diffstat (limited to 'src')
-rw-r--r--src/corelib/global/qnamespace.qdoc29
1 files changed, 22 insertions, 7 deletions
diff --git a/src/corelib/global/qnamespace.qdoc b/src/corelib/global/qnamespace.qdoc
index 5df88898cf..33380324db 100644
--- a/src/corelib/global/qnamespace.qdoc
+++ b/src/corelib/global/qnamespace.qdoc
@@ -2454,13 +2454,28 @@
/*!
\enum Qt::InputMethodQuery
- \value ImMicroFocus The rectangle covering the area of the input cursor in widget coordinates.
- \value ImFont The currently used font for text input.
- \value ImCursorPosition The logical position of the cursor within the text surrounding the input area (see \c ImSurroundingText).
- \value ImSurroundingText The plain text around the input area, for example the current paragraph.
- \value ImCurrentSelection The currently selected text.
- \value ImMaximumTextLength The maximum number of characters that the widget can hold. If there is no limit, QVariant() is returned.
- \value ImAnchorPosition The position of the selection anchor. This may be less or greater than \c ImCursorPosition, depending on which side of selection the cursor is. If there is no selection, it returns the same as \c ImCursorPosition.
+ \value ImEnabled The widget accepts input method input.
+ \value ImCursorRectangle The rectangle covering the area of the input cursor in widget coordinates.
+ \value ImFont The currently used font for text input.
+ \value ImCursorPosition The logical position of the cursor within the text surrounding the input area
+ (see \c ImSurroundingText).
+ \value ImSurroundingText The plain text around the input area, for example the current paragraph.
+ \value ImCurrentSelection The currently selected text.
+ \value ImMaximumTextLength The maximum number of characters that the widget can hold. If there is no limit,
+ QVariant() is returned.
+ \value ImAnchorPosition The position of the selection anchor. This may be less or greater than
+ \c ImCursorPosition, depending on which side of selection the cursor is.
+ If there is no selection, it returns the same as \c ImCursorPosition.
+ \value ImHints The hints for input method on expected input. (See Qt::InputMethodHints)
+ \value ImPreferredLanguage The preferred input language.
+ \value ImPlatformData Platform specific data for input method.
+
+ Masks:
+
+ \value ImQueryInput Commonly changed properties on input.
+ \value ImQueryAll Query for all input method properties.
+
+ \sa QInputMethodQueryEvent
*/
/*!