TraceCanvas QML Type
A specialized Canvas type for rendering Trace objects. More...
Import Statement: | import QtQuick.VirtualKeyboard.Styles |
Since: | QtQuick.VirtualKeyboard 2.0 |
Inherits: |
Properties
- autoDestroy : bool
- autoDestroyDelay : int
- renderFunction : var
- trace : Trace
Signals
- onRecycle(var traceCanvas)
(since QtQuick.VirtualKeyboard.Styles 6.1)
Methods
- recycle()
(since QtQuick.VirtualKeyboard.Styles 6.1)
- renderClear()
(since QtQuick.VirtualKeyboard.Styles 6.1)
- renderSmoothedLine()
Detailed Description
This type provides capabilities for rendering Trace objects on the screen.
To make the Trace rendering available in the keyboard, this type must be declared as the KeyboardStyle.traceCanvasDelegate component.
traceCanvasDelegate: TraceCanvas { }
Custom drawing attributes can be initialized in the Canvas.available signal. For example:
onAvailableChanged: { if (!available) return; var ctx = getContext("2d") ctx.lineWidth = 8 * scaleHint ctx.lineCap = "round" ctx.strokeStyle = Qt.rgba(0xFF, 0xFF, 0xFF) ctx.fillStyle = ctx.strokeStyle }
The type offers built-in options for Trace rendering. Currently the following rendering options are available:
renderSmoothedLine
Renders smoothed line with round corners (the default)
The rendering function can be changed with the renderFunction property.
renderFunction: renderSmoothedLine
Custom rendering function is also supported. Consider the following example:
renderFunction: renderCustomLine function renderCustomLine() { getContext("2d") var points = trace.points() ... }
Property Documentation
autoDestroy : bool |
Enables auto destruction mode.
If enabled, this item will be destroyed when the trace
object is destroyed.
The default value is false. In this case the canvas can be reused after onRecycle signal is triggered.
autoDestroyDelay : int |
Specifies the approximate delay in milliseconds, counted from the beginning of the auto destruction, before the object is to be destroyed or recycled.
This delay makes it possible, for example, to animate the item before destruction.
The default value is 0.
renderFunction : var |
This property defines the rendering function.
The default value is renderSmoothedLine
Signal Documentation
|
Emitted when the traceCanvas is recycled.
Note: The corresponding handler is onOnRecycle
.
This signal was introduced in QtQuick.VirtualKeyboard.Styles 6.1.
Method Documentation
|
Recycles trace canvas by clearing all drawings and resetting the variables.
The function triggers onRecycle signal after completed (before the return).
The function returns true when recycling is successful.
This method was introduced in QtQuick.VirtualKeyboard.Styles 6.1.
|
Clears screen and resets the rendering.
This method was introduced in QtQuick.VirtualKeyboard.Styles 6.1.
renderSmoothedLine() |
Renders smoothed line with round corners.
This function is incremental and renders only the new part added to the Trace.
This function does not alter any of the canvas attributes (i.e. they can be set elsewhere.)
© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.