import Quickshell.Widgets WARNING
This type requires at least Qt 6.7.
This is a specialized version of Rectangle that clips content inside of its border, including rounded rectangles. It costs more than Rectangle, so it should not be used unless you need to clip items inside of it to the border.
The item containing the rectangle’s content. There is usually no reason to use this directly.
Radius of the top right corner. Defaults to radius.
See Rectangle.border.
Radius of the bottom right corner. Defaults to radius.
Visual children of the ClippingRectangle’s contentItem. (list<Item>).
See Item.children for details.
Radius of the bottom left corner. Defaults to radius.
Data of the ClippingRectangle’s contentItem. (list<QtObject>).
See Item.data for details.
Radius of all corners. Defaults to 0.
Radius of the top left corner. Defaults to radius.
If the rectangle should be antialiased.
Defaults to true if any corner has a non-zero radius, otherwise false.
If content should be displayed underneath the border.
Defaults to false, does nothing if the border is opaque.
The background color of the rectangle, which goes under its content.
If the content item should be resized to fit inside the border.
Defaults to !contentUnderBorder. Most useful when combined with
anchors.fill: parent on an item passed to the ClippingRectangle.