From c5f51f7027dbbac373587621a52fc6f95f529e69 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Thu, 11 Dec 2008 11:31:48 +0000 Subject: [PATCH] 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. --- clutter/clutter-text.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/clutter/clutter-text.h b/clutter/clutter-text.h index 054c941c3..65c919796 100644 --- a/clutter/clutter-text.h +++ b/clutter/clutter-text.h @@ -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);