KeyboardColumn.qml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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.Layouts
  5. /*!
  6. \qmltype KeyboardColumn
  7. \inqmlmodule QtQuick.VirtualKeyboard.Components
  8. \ingroup qmlclass
  9. \ingroup qtvirtualkeyboard-components-qml
  10. \inherits ColumnLayout
  11. \brief Keyboard column for keyboard layouts.
  12. This type can be used in special cases where multiple columns
  13. are added to a single keyboard layout.
  14. */
  15. ColumnLayout {
  16. /*! Sets the key weight for all children keys.
  17. The default value is inherited from the parent element
  18. in the layout hierarchy.
  19. */
  20. property real keyWeight: parent ? parent.keyWeight : undefined
  21. /*! \since QtQuick.VirtualKeyboard 2.0
  22. Sets the \c smallTextVisible for all children keys.
  23. The default value is inherited from the parent element
  24. in the layout hierarchy.
  25. */
  26. property bool smallTextVisible: parent ? parent.smallTextVisible : false
  27. spacing: 0
  28. }