Border
Category | refcounted |
Type | hime_border_t |
Inherits | Object |
Border of View
.
Constructors
hime_border_t hime_border_create_solid(color, thickness)
Create a border that is a simple line of the specified color
and thickness
.
Parameters
hime_color_t
colorint
thickness
Return
hime_border_t
hime_border_t hime_border_create_themed_solid(color_id, thickness)
Same with CreateSolid except it uses the color specified by the views's ColorProvider and the given color identifier.
Parameters
hime_color_id_t
color_idint
thickness
Return
hime_border_t
hime_border_t hime_border_create_rounded_rect(color, thickness, radius)
Create a border that is a rounded rectangle of the specified color
and thickness
.
Parameters
hime_color_t
colorint
thicknessfloat
radius
Return
hime_border_t
hime_border_t hime_border_create_themed_rounded_rect(color_id, thickness, radius)
Same with CreateThemedRoundedRect except it uses the color specified by the views's ColorProvider and the given color identifier.
Parameters
hime_color_id_t
color_idint
thicknessfloat
radius
Return
hime_border_t