Eneboo - Documentación para desarrolladores
|
The QKeyEvent class contains describes a key event. Más...
#include <qevent.h>
Métodos públicos | |
QKeyEvent (Type type, int key, int ascii, int state, const QString &text=QString::null, bool autorep=FALSE, ushort count=1) | |
int | key () const |
int | ascii () const |
ButtonState | state () const |
ButtonState | stateAfter () const |
bool | isAccepted () const |
QString | text () const |
bool | isAutoRepeat () const |
int | count () const |
void | accept () |
void | ignore () |
QKeyEvent (Type type, int key, int ascii, int state, const QString &text=QString::null, bool autorep=FALSE, ushort count=1) | |
int | key () const |
int | ascii () const |
ButtonState | state () const |
ButtonState | stateAfter () const |
bool | isAccepted () const |
QString | text () const |
bool | isAutoRepeat () const |
int | count () const |
void | accept () |
void | ignore () |
Atributos protegidos | |
QString | txt |
ushort | k |
ushort | s |
uchar | a |
uint | accpt:1 |
uint | autor:1 |
ushort | c |
The QKeyEvent class contains describes a key event.
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. Key events for multi media keys are ignored by default. You should call QKeyEvent::accept() if your widget handles those events.
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.
QKeyEvent::QKeyEvent | ( | Type | type, |
int | key, | ||
int | ascii, | ||
int | state, | ||
const QString & | text = QString::null , |
||
bool | autorep = FALSE , |
||
ushort | count = 1 |
||
) | [inline] |
Constructs a key event object.
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.
QKeyEvent::QKeyEvent | ( | Type | type, |
int | key, | ||
int | ascii, | ||
int | state, | ||
const QString & | text = QString::null , |
||
bool | autorep = FALSE , |
||
ushort | count = 1 |
||
) | [inline] |
void QKeyEvent::accept | ( | ) | [inline] |
Sets the accept flag of the key event object.
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.
void QKeyEvent::accept | ( | ) | [inline] |
int QKeyEvent::ascii | ( | ) | const [inline] |
int QKeyEvent::ascii | ( | ) | const [inline] |
int QKeyEvent::count | ( | ) | const [inline] |
Returns the number of single keys for this event. If text() is not empty, this is simply the length of the string.
int QKeyEvent::count | ( | ) | const [inline] |
void QKeyEvent::ignore | ( | ) | [inline] |
Clears the accept flag parameter of the key event object.
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.
void QKeyEvent::ignore | ( | ) | [inline] |
bool QKeyEvent::isAccepted | ( | ) | const [inline] |
Returns TRUE if the receiver of the event wants to keep the key; otherwise returns FALSE
bool QKeyEvent::isAccepted | ( | ) | const [inline] |
bool QKeyEvent::isAutoRepeat | ( | ) | const [inline] |
bool QKeyEvent::isAutoRepeat | ( | ) | const [inline] |
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.
int QKeyEvent::key | ( | ) | const [inline] |
int QKeyEvent::key | ( | ) | const [inline] |
Returns the code of the key that was pressed or released.
See Qt::Key for the list of keyboard codes. These codes are independent of the underlying window system.
A value of either 0 or Key_unknown means that the event is not the result of a known key (e.g. it may be the result of a compose sequence or a keyboard macro, or due to key event compression).
ButtonState QKeyEvent::state | ( | ) | const [inline] |
ButtonState QKeyEvent::state | ( | ) | const [inline] |
Returns the keyboard modifier flags that existed immediately before the event occurred.
The returned value is ShiftButton
, ControlButton
, AltButton
and MetaButton
OR'ed together.
Qt::ButtonState QKeyEvent::stateAfter | ( | ) | const |
Returns the keyboard modifier flags that existed immediately after the event occurred.
ButtonState QKeyEvent::stateAfter | ( | ) | const |
QString QKeyEvent::text | ( | ) | const [inline] |
Returns the Unicode text that this key generated. The text returned migth be empty, which is the case when pressing or releasing modifying keys as Shift, Control, Alt and Meta. In these cases key() will contain a valid value.
QString QKeyEvent::text | ( | ) | const [inline] |
uchar QKeyEvent::a [protected] |
uint QKeyEvent::accpt [protected] |
uint QKeyEvent::autor [protected] |
ushort QKeyEvent::c [protected] |
ushort QKeyEvent::k [protected] |
ushort QKeyEvent::s [protected] |
QString QKeyEvent::txt [protected] |