aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/FillerKey.qml
blob: 54c400a54f066aebe54bda1ff8a02087eec93a5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
}