Reference for the Mosaic class Views::FillPath

Views::FillPath
Buffered
Color
ColorBL
ColorBR
ColorTL
ColorTR
Embedded
FillRule
FlipY
Offset
Path
Quality
Visible
Core::RectView
Bounds
Core::View
Layout
Owner
StackingPriority
ArrangeView()
ChangeViewState()
CursorHitTest()
Draw()
GetExtent()
GetRoot()
HandleEvent()
MoveView()

SEE ALSO

Using the Filled Path view to fill a polygon described by a vector graphic path.

The class Views::FillPath provides a kind of view specialized to draw a filled polygon. The shape of the polygon (the coordinates of the line segments) is 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 to fill the path is defined by the property Color. Alternatively, the path can be filled with a color gradient specified by the properties ColorTL, ColorTR, ColorBL and ColorBR. For each view's corner different color can be set.

The property FillRule determines the algorithm to decide which parts of complex nested paths should be considered as filled and which are empty. 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 filled 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.

Finally, the property Buffered controls whether the view should store its aspect in an off-screen bitmap. This feature is useful to optimize screen update avoiding the rasterization of the path.

property bool Buffered = false;

The property 'Buffered' determines whether the view should manage an internal off-screen bitmap containing the rasterized path. Such buffered views are drawn faster when they are moved or faded-in/out because the rasterization of the path can be omitted.

Please note, buffered views may occupy a lot of video memory. Use this feature with prudence, e.g. during active animations only. After the animation is done, set the property to the value 'false' in order to free the video memory.

property color Color = #FFFFFFFF;

The property 'Color' controls the color of the entire path. Changes of this property will be immediately reflected in the properties ColorTL, ColorTR, ColorBL and ColorBR. Thus this property is useful if no gradients are desired.

property color ColorBL = #FFFFFFFF;

The property 'ColorBL' stores the color at the bottom-left corner of the Bounds area.

property color ColorBR = #FFFFFFFF;

The property 'ColorBR' stores the color at the bottom-right corner of the Bounds area.

property color ColorTL = #FFFFFFFF;

The property 'ColorTL' stores the color at the top-left corner of the Bounds area.

property color ColorTR = #FFFFFFFF;

The property 'ColorTR' stores the color at the top-right corner of the Bounds area.

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::FillRule FillRule = Graphics::FillRule.EvenOdd;

The property 'FillRule' determines the modes how complex polygons consisting of nested paths are filled. The possible values are:

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 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 Graphics::Path Path = null;

The property 'Path' refers to an object containing the coordinates of the path to fill. From the path data the view rasters a filled polygon. 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 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.