From c8cd2fb80ecd64a9cfbed1caff9855794102b537 Mon Sep 17 00:00:00 2001 From: Timotej Lazar Date: Thu, 16 Sep 2021 20:24:07 +0200 Subject: Add Hotkey type for defining and displaying shortcuts --- Hotkey.qml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Hotkey.qml (limited to 'Hotkey.qml') diff --git a/Hotkey.qml b/Hotkey.qml new file mode 100644 index 0000000..2dd333f --- /dev/null +++ b/Hotkey.qml @@ -0,0 +1,30 @@ +// SPDX-License-Identifier: Unlicense + +import QtQuick 2.12 +import QtQuick.Controls 2.13 + +// Define and display a shortcut to focus the given control. +Label { + required property Item control + property alias sequence: shortcut.sequence + + text: shortcut.nativeText + visible: !control.activeFocus + + color: 'gray' + padding: 1 + leftPadding: 2*padding + rightPadding: 2*padding + + background: Rectangle { + color: palette.base + border { color: Qt.lighter(parent.color); width: 1 } + opacity: 0.9 + radius: 2 + } + + Shortcut { + id: shortcut + onActivated: control.forceActiveFocus() + } +} -- cgit v1.3