Top | ![]() |
![]() |
![]() |
![]() |
ClutterActor * | clutter_rectangle_new () |
ClutterActor * | clutter_rectangle_new_with_color () |
void | clutter_rectangle_get_color () |
void | clutter_rectangle_set_color () |
void | clutter_rectangle_get_border_color () |
void | clutter_rectangle_set_border_color () |
guint | clutter_rectangle_get_border_width () |
void | clutter_rectangle_set_border_width () |
ClutterRectangle is a ClutterActor which draws a simple filled rectangle.
ClutterRectangle is deprecated since Clutter 1.10. If you want an actor painting a solid color, you can replace it with ClutterActor and set the “background-color” property to the desired ClutterColor. If you are drawing more complex shapes, use ClutterCanvas to draw using the Cairo 2D API instead.
ClutterActor *
clutter_rectangle_new (void
);
clutter_rectangle_new
has been deprecated since version 1.10 and should not be used in newly-written code.
Use clutter_actor_new()
instead
Creates a new ClutterActor with a rectangular shape.
ClutterActor *
clutter_rectangle_new_with_color (const ClutterColor *color
);
clutter_rectangle_new_with_color
has been deprecated since version 1.10 and should not be used in newly-written code.
Use clutter_actor_new()
and
clutter_actor_set_background_color()
instead
Creates a new ClutterActor with a rectangular shape
and of the given color
.
void clutter_rectangle_get_color (ClutterRectangle *rectangle
,ClutterColor *color
);
clutter_rectangle_get_color
has been deprecated since version 1.10 and should not be used in newly-written code.
Use ClutterActor and clutter_actor_get_background_color()
instead
Retrieves the color of rectangle
.
void clutter_rectangle_set_color (ClutterRectangle *rectangle
,const ClutterColor *color
);
clutter_rectangle_set_color
has been deprecated since version 1.10 and should not be used in newly-written code.
Use ClutterActor and clutter_actor_set_background_color()
instead
Sets the color of rectangle
.
void clutter_rectangle_get_border_color (ClutterRectangle *rectangle
,ClutterColor *color
);
clutter_rectangle_get_border_color
has been deprecated since version 1.10 and should not be used in newly-written code.
Use ClutterActor and a ClutterCanvas to draw the border with Cairo
Gets the color of the border used by rectangle
and places
it into color
.
Since: 0.2
void clutter_rectangle_set_border_color (ClutterRectangle *rectangle
,const ClutterColor *color
);
clutter_rectangle_set_border_color
has been deprecated since version 1.10 and should not be used in newly-written code.
Use ClutterActor and a ClutterCanvas to draw the border with Cairo
Sets the color of the border used by rectangle
using color
guint
clutter_rectangle_get_border_width (ClutterRectangle *rectangle
);
clutter_rectangle_get_border_width
has been deprecated since version 1.10 and should not be used in newly-written code.
Use ClutterActor and a ClutterCanvas content to draw the border using Cairo
Gets the width (in pixels) of the border used by rectangle
Since: 0.2
void clutter_rectangle_set_border_width (ClutterRectangle *rectangle
,guint width
);
clutter_rectangle_set_border_width
has been deprecated since version 1.10 and should not be used in newly-written code.
Use ClutterActor and a ClutterCanvas content to draw the border using Cairo
Sets the width (in pixel) of the border used by rectangle
.
A width
of 0 will unset the border.
Since: 0.2
struct ClutterRectangle { };
The ClutterRectangle structure contains only private data and should be accessed using the provided API
Since: 0.2
struct ClutterRectangleClass { };
The ClutterRectangleClass structure contains only private data
Since: 0.2