Reference for the Mosaic class Views::StrokeGradientPath
The class Views::StrokeGradientPath provides a kind of view specialized to stroke a path by using a complex linear or radial gradient.. The coordinates of the path line segments are provided in a Graphics::Path object assigned to the property Path. The position and the size of the area to display the path are determined by the property Bounds. The color gradient information is provided in a Graphics::LinearGradient or Graphics::RadialGradient object assigned to the property Gradient.
The thickness of the stroked path is controlled by the property Width. With the properties StartCap and EndCap the appearance of the path ends, if the path is opened, can be determined. The properties JoinPoints and MiterLimit control the appearance of path corners, the join points between path line segments.
With the property FlipY and Offset you can control the orientation and the origin position of the path coordinate system. Finally, the property Quality determines whether the paths is rasterized with or without antialiasing.
The visibility of the stroked path is controlled by the properties Visible and Embedded. In particular the property Embedded can determine whether the corresponding view is limited (== embedded) to the boundary of a sibling Core::Outline view or not. The embedding of views within a Core::Outline allows a kind of sub-groups within the GUI component itself. Very useful for any kind of scrollable lists, menus, etc. Furthermore, the property Opacity can be used to modulate the transparency of the view.
property bool Embedded = false;
The property 'Embedded' controls how the view should appear and behave within its superior Owner. If this property == 'true', the affected view will be embedded (limited) to the boundary of a preceding Core::Outline sibling view. This is as if the view had been embedded within this outline. Beside the appearance limitation of the outline boundary, the outline also provides more sophisticated arrangement mechanisms and the content scrolling. It is therefore useful to create scrollable menus or lists.
If this property is 'false', the view is considered as a regular view of its Owner - it doesn't belong to any outline.
property Graphics::PathCap EndCap = Graphics::PathCap.Flat;
The property 'EndCap' determines how to rasterize the area at the end of every opened path. Following values are possible:
property bool FlipY = false;
The property 'FlipY' controls the vertical orientation and the position of the origin of the coordinate system of the Path assigned to this view.
If this property is 'false', the coordinates provided within the Path object are assumed as being relative to the top-left corner of the Bounds area with the Y-axis pointing downwards. If the property FlipY is 'true', the coordinates are relative to the bottom-left corner with the positive Y-axis pointing upwards. Please note, the origin position can additionally be moved by using the property Offset.
property Graphics::Gradient Gradient = null;
The property 'Gradient' refers to an object containing the color information of the gradient. At the runtime, when the content of the associated gradient object changes, the view is updated automatically.
property Graphics::PathJoin JoinPoints = Graphics::PathJoin.Bevel;
The property 'JoinPoints' determines how to rasterize the areas where two path segments join together. Following values are possible:
property float MiterLimit = 3.0;
The property 'MiterLimit' determines the maximum ratio between the resulting length of the miter and the half of the thickness (Width) of the stroked path. If this limit is exceeded, the affected corner is rasterized wth the Bevel mode instead of Miter.
property point Offset = <0,0>;
The property 'Offset' specifies an additional displacement to add to the coordinates provided within the Path object when the path is rasterized on the screen. Changing this property allows the view to scroll the rasterized image of the path.
property int32 Opacity = 255;
The property 'Opacity' controls the translucence of the view. This property can take values in range of 0 .. 255. If the value is 255, the view will appear with its full opacity. The value equal to zero results in a fully transparent view. Other values in the range 1 .. 254 show a semitransparent view.
property Graphics::Path Path = null;
The property 'Path' refers to an object containing the coordinates of the path to stroke. From the path data the view rasters line segments with the thickness specified in the property Width. At the runtime, when the content of the associated path object changes, the view is updated automatically.
The coordinates provided within the path object are assumed as being relative to the top-left corner of the Bounds area with the Y-axis pointing downwards. If the property FlipY is 'true', the coordinates are relative to the bottom-left corner with the positive Y-axis pointing upwards. This origin can additionally be moved by using the property Offset.
property bool Quality = true;
The property 'Quality' determines whether the path rasterization should be performed with an additional antialiasing. The usage of the antialiasing produces better and smooth outputs. Without antialiasing the edges of the path appear with steps. Depending on the underlying graphics system, an active antialiasing may impact the resulting performance. Therefore it's up to you to decide which part of the GUI should appear with the higher quality. To activate the antialiasing assign 'true' to this property.
property Graphics::PathCap StartCap = Graphics::PathCap.Flat;
The property 'StartCap' determines how to rasterize the area at the begin of every opened path. Following values are possible:
property bool Visible = true;
The property 'Visible' determines the visibility state of the view. Invisible views will not appear on the screen. Whether a view is really visible depends on the visibility of its Owner and the position of the view within the owners boundary area.
property float Width = 1.0;
The property 'Width' determines the thickness of the path to stroke. It is expressed in pixel.