C
SafePicture QML Type
Provides a QML Picture type which can be rendered in the Qt Safe Renderer runtime. More...
Import Statement: | import QtSafeRenderer 1.2 |
Properties
- color : color
- height : real
- objectName : string
- opacity : real
- source : url
- width : real
- x : real
- y : real
Detailed Description
SafePicture is an indicator that displays the colorized scalable vector QPicture in the Safe Renderer runtime.
The following code provides an example how to use the SafePicture type:
SafePicture { id: iconCoolant objectName: "iconCoolant" width: 30 height: 30 color: "#e41e25" source: "qrc:/iso-icons/iso_grs_7000_4_2426.dat" }
Property Documentation
Defines the picture's position and size. The default value is 0
.
This property holds the opacity of the item. Opacity is specified as a number between 0.0 (fully transparent) and 1.0 (fully opaque). The default value is 1.0. For more information, see Opacity Property.
This property specifies the URL of the icon to use. The URL must point to a file that contains QPicture data. For example:
source: "qrc:/iso-icons/iso_grs_7000_4_0238.dat"
Available under certain Qt licenses.
Find out more.