Top | ![]() |
![]() |
![]() |
![]() |
StWidget * | st_label_new () |
const gchar * | st_label_get_text () |
void | st_label_set_text () |
ClutterActor * | st_label_get_clutter_text () |
StLabel is a simple widget for displaying text. It derives from StWidget to add extra style and placement functionality over ClutterText. The internal ClutterText is publicly accessibly to allow applications to set further properties.
StWidget *
st_label_new (const gchar *text
);
Create a new StLabel with the label specified by text
.
const gchar *
st_label_get_text (StLabel *label
);
Get the text displayed on the label.
void st_label_set_text (StLabel *label
,const gchar *text
);
Sets the text displayed by the label.
ClutterActor *
st_label_get_clutter_text (StLabel *label
);
Retrieve the internal ClutterText used by label
so that extra parameters
can be set.