C
<platforminterface/drawingengine.h> - Drawing Engine Abstraction
Provides an abstraction for blitting accelerators. More...
Header: | #include <platforminterface/drawingengine.h> |
Types
enum | LineCapStyle { FlatCap, RoundCap, SquareCap } |
enum | LineJoinStyle { MiterJoin, RoundJoin, BevelJoin } |
Detailed Description
Classes
Represents the fill pattern of shapes drawn using DrawingEngine | |
This class provides an abstract interface for blending functions | |
Represents a single gradient stop in a gradient | |
Represents a set of stop points used to define the color transitions of gradients | |
Represents a linear gradient used by Brush | |
A struct specifying the stroke properties of a path |
Type Documentation
[since Qt Quick Ultralite (Platform) 1.8]
enum LineCapStyle
This enum type defines the supported line cap styles that can be drawn using Qul::PlatformInterface::DrawingEngine.
Constant | Value | Description |
---|---|---|
FlatCap | 0 | A square line end that does not go beyond the end of the line. |
RoundCap | 1 | A rounded line end with radius equal to half the line width. |
SquareCap | 2 | A square line end that extends beyond the end of the line by half the line width. |
This enum was introduced or modified in Qt Quick Ultralite (Platform) 1.8.
[since Qt Quick Ultralite (Platform) 1.8]
enum LineJoinStyle
This enum type defines the supported line join styles that can be drawn using Qul::PlatformInterface::DrawingEngine.
Constant | Value | Description |
---|---|---|
MiterJoin | 0 | The outer edges of the lines are extended to meet at an angle, and this area is filled. |
RoundJoin | 1 | A circular arc between the two lines is filled. |
BevelJoin | 2 | The triangular notch between the two lines is filled. |
This enum was introduced or modified in Qt Quick Ultralite (Platform) 1.8.
Available under certain Qt licenses.
Find out more.