mirror of https://github.com/anoshenko/rui.git
Added comments
This commit is contained in:
parent
daf41dd7e0
commit
b65b7f6df8
|
@ -260,7 +260,14 @@ func newBorderProperty(value any) BorderProperty {
|
|||
return border
|
||||
}
|
||||
|
||||
// NewBorder creates the new BorderProperty
|
||||
// NewBorder creates the new BorderProperty.
|
||||
// The following properties can be used:
|
||||
//
|
||||
// "style" (Style). Determines the line style (int). Valid values: 0 (NoneLine), 1 (SolidLine), 2 (DashedLine), 3 (DottedLine), or 4 (DoubleLine);
|
||||
//
|
||||
// "color" (ColorTag). Determines the line color (Color);
|
||||
//
|
||||
// "width" (Width). Determines the line thickness (SizeUnit).
|
||||
func NewBorder(params Params) BorderProperty {
|
||||
border := new(borderProperty)
|
||||
border.properties = map[string]any{}
|
||||
|
|
|
@ -19,7 +19,8 @@ type boundsPropertyData struct {
|
|||
propertyList
|
||||
}
|
||||
|
||||
// NewBoundsProperty creates the new BoundsProperty object
|
||||
// NewBoundsProperty creates the new BoundsProperty object.
|
||||
// The following SizeUnit properties can be used: "left" (Left), "right" (Right), "top" (Top), and "bottom" (Bottom).
|
||||
func NewBoundsProperty(params Params) BoundsProperty {
|
||||
bounds := new(boundsPropertyData)
|
||||
bounds.properties = map[string]any{}
|
||||
|
|
|
@ -57,7 +57,14 @@ func newColumnSeparatorProperty(value any) ColumnSeparatorProperty {
|
|||
return nil
|
||||
}
|
||||
|
||||
// NewColumnSeparator creates the new ColumnSeparatorProperty
|
||||
// NewColumnSeparator creates the new ColumnSeparatorProperty.
|
||||
// The following properties can be used:
|
||||
//
|
||||
// "style" (Style). Determines the line style (int). Valid values: 0 (NoneLine), 1 (SolidLine), 2 (DashedLine), 3 (DottedLine), or 4 (DoubleLine);
|
||||
//
|
||||
// "color" (ColorTag). Determines the line color (Color);
|
||||
//
|
||||
// "width" (Width). Determines the line thickness (SizeUnit).
|
||||
func NewColumnSeparator(params Params) ColumnSeparatorProperty {
|
||||
separator := new(columnSeparatorProperty)
|
||||
separator.properties = map[string]any{}
|
||||
|
|
|
@ -19,6 +19,12 @@ type outlinePropertyData struct {
|
|||
propertyList
|
||||
}
|
||||
|
||||
// NewOutlineProperty creates the new OutlineProperty.
|
||||
// The following properties can be used:
|
||||
//
|
||||
// "color" (ColorTag). Determines the line color (Color);
|
||||
//
|
||||
// "width" (Width). Determines the line thickness (SizeUnit).
|
||||
func NewOutlineProperty(params Params) OutlineProperty {
|
||||
outline := new(outlinePropertyData)
|
||||
outline.properties = map[string]any{}
|
||||
|
|
46
shadow.go
46
shadow.go
|
@ -118,10 +118,14 @@ type viewShadowData struct {
|
|||
}
|
||||
|
||||
// NewViewShadow create the new shadow for a view. Arguments:
|
||||
// offsetX, offsetY - x and y offset of the shadow
|
||||
// blurRadius - the blur radius of the shadow
|
||||
// spreadRadius - the spread radius of the shadow
|
||||
// color - the color of the shadow
|
||||
//
|
||||
// offsetX, offsetY is x and y offset of the shadow;
|
||||
//
|
||||
// blurRadius is the blur radius of the shadow;
|
||||
//
|
||||
// spreadRadius is the spread radius of the shadow;
|
||||
//
|
||||
// color is the color of the shadow.
|
||||
func NewViewShadow(offsetX, offsetY, blurRadius, spreadRadius SizeUnit, color Color) ViewShadow {
|
||||
return NewShadowWithParams(Params{
|
||||
XOffset: offsetX,
|
||||
|
@ -133,10 +137,14 @@ func NewViewShadow(offsetX, offsetY, blurRadius, spreadRadius SizeUnit, color Co
|
|||
}
|
||||
|
||||
// NewInsetViewShadow create the new inset shadow for a view. Arguments:
|
||||
// offsetX, offsetY - x and y offset of the shadow
|
||||
// blurRadius - the blur radius of the shadow
|
||||
// spreadRadius - the spread radius of the shadow
|
||||
// color - the color of the shadow
|
||||
//
|
||||
// offsetX, offsetY is x and y offset of the shadow;
|
||||
//
|
||||
// blurRadius is the blur radius of the shadow;
|
||||
//
|
||||
// spreadRadius is the spread radius of the shadow;
|
||||
//
|
||||
// color is the color of the shadow.
|
||||
func NewInsetViewShadow(offsetX, offsetY, blurRadius, spreadRadius SizeUnit, color Color) ViewShadow {
|
||||
return NewShadowWithParams(Params{
|
||||
XOffset: offsetX,
|
||||
|
@ -149,9 +157,12 @@ func NewInsetViewShadow(offsetX, offsetY, blurRadius, spreadRadius SizeUnit, col
|
|||
}
|
||||
|
||||
// NewTextShadow create the new text shadow. Arguments:
|
||||
// offsetX, offsetY - x and y offset of the shadow
|
||||
// blurRadius - the blur radius of the shadow
|
||||
// color - the color of the shadow
|
||||
//
|
||||
// offsetX, offsetY is the x- and y-offset of the shadow;
|
||||
//
|
||||
// blurRadius is the blur radius of the shadow;
|
||||
//
|
||||
// color is the color of the shadow.
|
||||
func NewTextShadow(offsetX, offsetY, blurRadius SizeUnit, color Color) ViewShadow {
|
||||
return NewShadowWithParams(Params{
|
||||
XOffset: offsetX,
|
||||
|
@ -162,6 +173,19 @@ func NewTextShadow(offsetX, offsetY, blurRadius SizeUnit, color Color) ViewShado
|
|||
}
|
||||
|
||||
// NewShadowWithParams create the new shadow for a view.
|
||||
// The following properties can be used:
|
||||
//
|
||||
// "color" (ColorTag). Determines the color of the shadow (Color);
|
||||
//
|
||||
// "x-offset" (XOffset). Determines the shadow horizontal offset (SizeUnit);
|
||||
//
|
||||
// "y-offset" (YOffset). Determines the shadow vertical offset (SizeUnit);
|
||||
//
|
||||
// "blur" (BlurRadius). Determines the radius of the blur effect (SizeUnit);
|
||||
//
|
||||
// "spread-radius" (SpreadRadius). Positive values (SizeUnit) will cause the shadow to expand and grow bigger, negative values will cause the shadow to shrink;
|
||||
//
|
||||
// "inset" (Inset). Controls (bool) whether to draw shadow inside the frame or outside.
|
||||
func NewShadowWithParams(params Params) ViewShadow {
|
||||
shadow := new(viewShadowData)
|
||||
shadow.propertyList.init()
|
||||
|
|
Loading…
Reference in New Issue