![]() |
Home · All Classes · Main Classes · Annotated · Grouped Classes · Functions | ![]() |
The QWSInputMethod class provides international input methods for Qt/Embedded. More...
#include <QWSInputMethod>
Part of the QtGui module.
Inherits QObject.
The QWSInputMethod class provides international input methods for Qt/Embedded.
Subclass this class to implement your own input method.
An input methods consists of a keyboard filter and optionally a graphical interface. The keyboard filter intercepts key events from physical or virtual keyboards by implementing the filter() function.
Use sendIMEvent() to send composition events.
Use QWSServer::setCurrentInputMethod() to install an input method.
This class is still subject to change.
Constructs a new input method
Destructs the input method uninstalling it if it is currently installed.
This function must be implemented in subclasses to handle key input from physical or virtual keyboards. Returning true will block the event from further processing.
The Unicode value is given in unicode and the key code in keycode. Keyboard modifiers are OR-ed together in modifiers. If isPress is true this is a key press; otherwise it is a key release. If autoRepeat is true this is an auto-repeated key press.
Implemented in subclasses to handle mouse presses/releases within the preedit text. The parameter x is the offset within the string that was sent with the InputMethodCompose event. state is either QWSServer::MousePress or QWSServer::MouseRelease
if state < 0 then the mouse event is inside the widget, but outside the preedit text
QWSServer::MouseOutside is sent when clicking in a different widget.
The default implementation resets the input method on all mouse presses.
Implemented in subclasses to reset the state of the input method.
The default implementation calls sendIMEvent() with empty preedit and commit strings, if the input method is in compose mode.
This event handler is implemented in subclasses to receive replies to an input method query.
The specified property and result contain the property queried and the result returned in the reply.
See also sendIMQuery().
Causes a QIMEvent to be sent to the focus widget.
txt is the text being composed (or the finished text if state is InputMethodCommit). cpos is the current cursor position.
If state is InputMethodPreedit, selLen is the number of characters in the composition string (starting at cpos) that should be marked as selected by the input widget receiving the event.
Sends an input method query for the specified property.
You must reimplement the responseHandler() event handler in your subclasses if you want to receive responses to input method queries.
See also responseHandler().
Handles update events, including resets and focus changes.
Reimplementations must call the base implementation for all cases that it does not handle itself.
type is a value defined in QWSIMUpdateCommand::UpdateType.
Copyright © 2005 Trolltech | Trademarks | Qt 4.0.0 |