aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/FillerKey.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/FillerKey.qml')
-rw-r--r--src/components/FillerKey.qml23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/components/FillerKey.qml b/src/components/FillerKey.qml
new file mode 100644
index 00000000..54c400a5
--- /dev/null
+++ b/src/components/FillerKey.qml
@@ -0,0 +1,23 @@
+// Copyright (C) 2016 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+import QtQuick
+import QtQuick.VirtualKeyboard
+
+/*!
+ \qmltype FillerKey
+ \inqmlmodule QtQuick.VirtualKeyboard.Components
+ \ingroup qmlclass
+ \ingroup qtvirtualkeyboard-components-qml
+ \ingroup qtvirtualkeyboard-key-types
+ \inherits BaseKey
+
+ \brief Filler key for keyboard layouts.
+
+ This key can be used as a filler in the keyboard layout.
+*/
+
+BaseKey {
+ keyType: QtVirtualKeyboard.KeyType.FillerKey
+ showPreview: false
+}