Add Text::get_chars() method declaration

Add the declaration for a clutter_text_get_chars() function that
returns a portion of the contents of a Text actor.
This commit is contained in:
Emmanuele Bassi 2008-12-11 11:31:48 +00:00 committed by Emmanuele Bassi
parent 430d1cf347
commit c5f51f7027

View File

@ -124,6 +124,9 @@ void clutter_text_insert_text (ClutterText *self
void clutter_text_delete_text (ClutterText *self,
gssize start_pos,
gssize end_pos);
gchar * clutter_text_get_chars (ClutterText *self,
gssize start_pos,
gssize end_pos);
void clutter_text_set_editable (ClutterText *self,
gboolean editable);
gboolean clutter_text_get_editable (ClutterText *self);