NumberKey.qml 676 B

12345678910111213141516171819202122232425
  1. // Copyright (C) 2016 The Qt Company Ltd.
  2. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
  3. import QtQuick
  4. import QtQuick.VirtualKeyboard
  5. /*!
  6. \qmltype NumberKey
  7. \inqmlmodule QtQuick.VirtualKeyboard.Components
  8. \ingroup qmlclass
  9. \ingroup qtvirtualkeyboard-components-qml
  10. \ingroup qtvirtualkeyboard-key-types
  11. \inherits Key
  12. \brief Specialized number key for keyboard layouts.
  13. This key emits the key code and key text for input method processing.
  14. A NumberKey differs from a normal \l Key in that it does not show a
  15. character preview.
  16. */
  17. Key {
  18. showPreview: false
  19. keyType: QtVirtualKeyboard.KeyType.NumberKey
  20. }