Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions | ![]() |
The QKeyEvent class contains describes a key event. More...
#include <qevent.h>
Inherits QEvent.
Key events occur when a key is pressed or released when a widget has keyboard input focus.
A key event contains a special accept flag that indicates whether the receiver wants the key event. You should call QKeyEvent::ignore() if the key press or release event is not handled by your widget. A key event is propagated up the parent widget chain until a widget accepts it with QKeyEvent::accept() or an event filter consumes it.
The QWidget::setEnable() function can be used to enable or disable mouse and keyboard events for a widget.
The event handlers QWidget::keyPressEvent() and QWidget::keyReleaseEvent() receive key events.
See also QFocusEvent, QWidget::grabKeyboard() and Event Classes.
The type parameter must be QEvent::KeyPress or QEvent::KeyRelease. If key is 0 the event is not a result of a known key (e.g. it may be the result of a compose sequence or keyboard macro). ascii is the ASCII code of the key that was pressed or released. state holds the keyboard modifiers. text is the Unicode text that the key generated. If autorep is TRUE, isAutoRepeat() will be TRUE. count is the number of single keys.
The accept flag is set to TRUE.
Setting the accept parameter indicates that the receiver of the event wants the key event. Unwanted key events are sent to the parent widget.
The accept flag is set by default.
See also ignore().
See also text().
Example: picture/picture.cpp.
Returns the number of single keys for this event. If text() is not empty, this is simply the length of the string.
However, Qt also compresses invisible keycodes such as BackSpace. For those, count() returns the number of key presses/repeats this event represents.
See also QWidget::setKeyCompression().
Clearing the accept parameter indicates that the event receiver does not want the key event. Unwanted key events are sent to the parent widget.
The accept flag is set by default.
See also accept().
Returns TRUE if this event comes from an auto-repeating key and FALSE if it comes from an initial key press.
Note that if the event is a multiple-key compressed event that is partly due to auto-repeat, this function could return either TRUE or FALSE indeterminately.
See Qt::Key for the list of keyboard codes. These codes are independent of the underlying window system.
Key code 0 means that the event is not a result of a known key (e.g. it may be the result of a compose sequence or keyboard macro).
Example: fileiconview/qfileiconview.cpp.
The returned value is ShiftButton, ControlButton and AltButton OR'ed together.
See also stateAfter().
Example: fileiconview/qfileiconview.cpp.
Returns the keyboard modifier flags that existed immediately after the event occurred.
Warning: This function cannot be trusted.
See also state().
See also QWidget::setKeyCompression().
This file is part of the Qt toolkit. Copyright © 1995-2002 Trolltech. All Rights Reserved.
Copyright © 2002 Trolltech | Trademarks | Qt version 3.0.3
|