Movatterモバイル変換


[0]ホーム

URL:


We bake cookies in your browser for a better experience. Using this site means that you consent.Read More

Menu

Qt Documentation

QKeyEvent Class

TheQKeyEvent class describes a key event.More...

Header:#include <QKeyEvent>
Inherits:QInputEvent

Public Functions

QKeyEvent(Type type, int key, Qt::KeyboardModifiers modifiers, const QString & text = QString(), bool autorep = false, ushort count = 1)
intcount() const
boolisAutoRepeat() const
intkey() const
boolmatches(QKeySequence::StandardKey key) const
Qt::KeyboardModifiersmodifiers() const
quint32nativeModifiers() const
quint32nativeScanCode() const
quint32nativeVirtualKey() const
QStringtext() const

Related Non-Members

booloperator==(QKeyEvent * e, QKeySequence::StandardKey key)
booloperator==(QKeySequence::StandardKey key, QKeyEvent * e)

Additional Inherited Members

  • 1 property inherited fromQEvent
  • 1 static public member inherited fromQEvent

Detailed Description

TheQKeyEvent class describes a key event.

Key events are sent to the widget with keyboard input focus when keys are pressed or released.

A key event contains a special accept flag that indicates whether the receiver will handle the key event. You should callignore() 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 withaccept() or an event filter consumes it. Key events for multimedia keys are ignored by default. You should callaccept() 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 handlersQWidget::keyPressEvent(),QWidget::keyReleaseEvent(),QGraphicsItem::keyPressEvent() andQGraphicsItem::keyReleaseEvent() receive key events.

See alsoQFocusEvent andQWidget::grabKeyboard().

Member Function Documentation

QKeyEvent::QKeyEvent(Type type,int key,Qt::KeyboardModifiers modifiers, constQString & text = QString(),bool autorep = false,ushort count = 1)

Constructs a key event object.

Thetype parameter must beQEvent::KeyPress,QEvent::KeyRelease, orQEvent::ShortcutOverride.

Intkey is the code for theQt::Key that the event loop should listen for. Ifkey is 0, the event is not a result of a known key; for example, it may be the result of a compose sequence or keyboard macro. Themodifiers holds the keyboard modifiers, and the giventext is the Unicode text that the key generated. Ifautorep is true,isAutoRepeat() will be true.count is the number of keys involved in the event.

int QKeyEvent::count() const

Returns the number of keys involved in this event. Iftext() is not empty, this is simply the length of the string.

See alsoQt::WA_KeyCompression.

bool QKeyEvent::isAutoRepeat() const

Returns true if this event comes from an auto-repeating key; returns 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

Returns the code of the key that was pressed or released.

SeeQt::Key for the list of keyboard codes. These codes are independent of the underlying window system. Note that this function does not distinguish between capital and non-capital letters, use thetext() function (returning the Unicode text the key generated) for this purpose.

A value of either 0 orQt::Key_unknown means that the event is not the result of a known key; for example, it may be the result of a compose sequence, a keyboard macro, or due to key event compression.

See alsoQt::WA_KeyCompression.

bool QKeyEvent::matches(QKeySequence::StandardKey key) const

Returns true if the key event matches the given standardkey; otherwise returns false.

This function was introduced in Qt 4.2.

Qt::KeyboardModifiers QKeyEvent::modifiers() const

Returns the keyboard modifier flags that existed immediately after the event occurred.

Warning: This function cannot always be trusted. The user can confuse it by pressing bothShift keys simultaneously and releasing one of them, for example.

See alsoQApplication::keyboardModifiers().

quint32 QKeyEvent::nativeModifiers() const

Returns the native modifiers of a key event. If the key event does not contain this data 0 is returned.

Note: The native modifiers may be 0, even if the key event contains extended information.

This function was introduced in Qt 4.2.

quint32 QKeyEvent::nativeScanCode() const

Returns the native scan code of the key event. If the key event does not contain this data 0 is returned.

Note: The native scan code may be 0, even if the key event contains extended information.

Note: On Mac OS/X, this function is not useful, because there is no way to get the scan code from Carbon or Cocoa. The function always returns 1 (or 0 in the case explained above).

This function was introduced in Qt 4.2.

quint32 QKeyEvent::nativeVirtualKey() const

Returns the native virtual key, or key sym of the key event. If the key event does not contain this data 0 is returned.

Note: The native virtual key may be 0, even if the key event contains extended information.

This function was introduced in Qt 4.2.

QString QKeyEvent::text() const

Returns the Unicode text that this key generated. The text returned can be an empty string in cases where modifier keys, such as Shift, Control, Alt, and Meta, are being pressed or released. In such caseskey() will contain a valid value.

See alsoQt::WA_KeyCompression.

Related Non-Members

booloperator==(QKeyEvent * e,QKeySequence::StandardKey key)

Returns true ifkey is currently bound to the key combination specified bye.

Equivalent toe->matches(key).

booloperator==(QKeySequence::StandardKey key,QKeyEvent * e)

Returns true ifkey is currently bound to the key combination specified bye.

Equivalent toe->matches(key).

© 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of theGNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.


[8]ページ先頭

©2009-2025 Movatter.jp