Updated Qt::InputMethodQuery documentation
authorPekka Vuorela <pekka.ta.vuorela@nokia.com>
Thu, 10 Nov 2011 11:05:37 +0000 (13:05 +0200)
committerQt by Nokia <qt-info@nokia.com>
Thu, 10 Nov 2011 12:08:00 +0000 (13:08 +0100)
Change-Id: Ibd27231366e4af2780bfe2f8f735da74dc04a1cf
Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
src/corelib/global/qnamespace.qdoc

index 5df8889..3338032 100644 (file)
 /*!
     \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
 */
 
 /*!