TraceInputKeyPanel.qml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. // Copyright (C) 2016 The Qt Company Ltd.
  2. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
  3. import QtQuick
  4. /*!
  5. \qmltype TraceInputKeyPanel
  6. \inqmlmodule QtQuick.VirtualKeyboard.Styles
  7. \brief A base type of the trace input key.
  8. \ingroup qmlclass
  9. \ingroup qtvirtualkeyboard-styles-qml
  10. \since QtQuick.VirtualKeyboard 2.0
  11. This type provides panel for decorating TraceInputKey
  12. items in the keyboard layout.
  13. */
  14. Item {
  15. /*! Provides access to properties in TraceInputKey.
  16. A list of available properties in control:
  17. \list
  18. \li \c patternRecognitionMode Pattern recognition mode of this input area
  19. \li \c horizontalRulers A list of horizontal rulers
  20. \li \c verticalRulers A list of vertical rulers
  21. \li \c boundingBox Bounding box for the trace input
  22. \endlist
  23. */
  24. property Item control
  25. /*! Sets margins of the trace input area.
  26. The margins affect to the bounding box of the trace input area.
  27. */
  28. property real traceMargins
  29. }