1QWSKeyboardHandler(3qt)                                QWSKeyboardHandler(3qt)
2
3
4

NAME

6       QWSKeyboardHandler - Implements the keyboard driver for Qt/Embedded
7

SYNOPSIS

9       #include <qkeyboard_qws.h>
10
11       Inherits QObject.
12
13   Public Members
14       QWSKeyboardHandler ()
15       virtual ~QWSKeyboardHandler ()
16
17   Protected Members
18       virtual void processKeyEvent ( int unicode, int keycode, int modifiers,
19           bool isPress, bool autoRepeat )
20

DESCRIPTION

22       The QWSKeyboardHandler class implements the keyboard driver for
23       Qt/Embedded.
24
25       The keyboard driver handles events from system devices and generates
26       key events.
27
28       A QWSKeyboardHandler will usually open some system device in its
29       constructor, create a QSocketNotifier on that opened device and when it
30       receives data, it will call processKeyEvent() to send the event to
31       Qt/Embedded for relaying to clients.
32
33       See also Qt/Embedded.
34

MEMBER FUNCTION DOCUMENTATION

QWSKeyboardHandler::QWSKeyboardHandler ()

37       Constructs a keyboard handler. The handler may be passed to the system
38       for later destruction with QWSServer::setKeyboardHandler(), although
39       even without doing this, the handler can function, calling
40       processKeyEvent() to emit events.
41

QWSKeyboardHandler::~QWSKeyboardHandler () [virtual]

43       Destroys a keyboard handler. Note that if you have called
44       QWSServer::setKeyboardHandler(), you must not delete the handler.
45

void QWSKeyboardHandler::processKeyEvent ( int unicode, int keycode, int

47       modifiers, bool isPress, bool autoRepeat ) [virtual protected]
48       Subclasses call this function to send a key event. The server may
49       additionally filter the event before sending it on to applications.
50
51       <center>.nf
52
53       </center>
54
55

SEE ALSO

57       http://doc.trolltech.com/qwskeyboardhandler.html
58       http://www.trolltech.com/faq/tech.html
59
61       Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com.  See the
62       license file included in the distribution for a complete license
63       statement.
64

AUTHOR

66       Generated automatically from the source code.
67

BUGS

69       If you find a bug in Qt, please report it as described in
70       http://doc.trolltech.com/bughowto.html.  Good bug reports help us to
71       help you. Thank you.
72
73       The definitive Qt documentation is provided in HTML format; it is
74       located at $QTDIR/doc/html and can be read using Qt Assistant or with a
75       web browser. This man page is provided as a convenience for those users
76       who prefer man pages, although this format is not officially supported
77       by Trolltech.
78
79       If you find errors in this manual page, please report them to qt-
80       bugs@trolltech.com.  Please include the name of the manual page
81       (qwskeyboardhandler.3qt) and the Qt version (3.3.8).
82
83
84
85Trolltech AS                    2 February 2007        QWSKeyboardHandler(3qt)
Impressum