The QKeySequenceEdit widget allows to input a QKeySequence. More...
Header: | #include <QKeySequenceEdit> |
CMake: | find_package(Qt6 COMPONENTS Widgets REQUIRED) target_link_libraries(mytarget PRIVATE Qt6::Widgets) |
qmake: | QT += widgets |
Since: | Qt 5.2 |
Inherits: | QWidget |
QKeySequenceEdit(const QKeySequence &keySequence, QWidget *parent = nullptr) | |
QKeySequenceEdit(QWidget *parent = nullptr) | |
virtual | ~QKeySequenceEdit() |
QKeySequence | keySequence() const |
void | clear() |
void | setKeySequence(const QKeySequence &keySequence) |
void | editingFinished() |
void | keySequenceChanged(const QKeySequence &keySequence) |
virtual bool | event(QEvent *e) override |
virtual void | keyPressEvent(QKeyEvent *e) override |
virtual void | keyReleaseEvent(QKeyEvent *e) override |
virtual void | timerEvent(QTimerEvent *e) override |
This widget lets the user choose a QKeySequence, which is usually used as a shortcut. The recording is initiated when the widget receives the focus and ends one second after the user releases the last key.
See also QKeySequenceEdit::keySequence.
This property contains the currently chosen key sequence.
The shortcut can be changed by the user or via setter function.
Access functions:
QKeySequence | keySequence() const |
void | setKeySequence(const QKeySequence &keySequence) |
Notifier signal:
void | keySequenceChanged(const QKeySequence &keySequence) |
Constructs a QKeySequenceEdit widget with the given keySequence and parent.
Constructs a QKeySequenceEdit widget with the given parent.
[slot]
void QKeySequenceEdit::clear()
Clears the current key sequence.
[signal]
void QKeySequenceEdit::editingFinished()
This signal is emitted when the user finishes entering the shortcut.
Note: there is a one second delay before releasing the last key and emitting this signal.
[virtual]
QKeySequenceEdit::~QKeySequenceEdit()
Destroys the QKeySequenceEdit object.
[override virtual protected]
bool QKeySequenceEdit::event(QEvent *e)
Reimplements: QWidget::event(QEvent *event).
[override virtual protected]
void QKeySequenceEdit::keyPressEvent(QKeyEvent *e)
Reimplements: QWidget::keyPressEvent(QKeyEvent *event).
[override virtual protected]
void QKeySequenceEdit::keyReleaseEvent(QKeyEvent *e)
Reimplements: QWidget::keyReleaseEvent(QKeyEvent *event).
[override virtual protected]
void QKeySequenceEdit::timerEvent(QTimerEvent *e)
Reimplements: QObject::timerEvent(QTimerEvent *event).
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.2/qkeysequenceedit.html