summaryrefslogtreecommitdiffstats
path: root/source/widgets/textbox.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/widgets/textbox.c')
-rw-r--r--source/widgets/textbox.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/widgets/textbox.c b/source/widgets/textbox.c
index 6b7030db..95e3f3b9 100644
--- a/source/widgets/textbox.c
+++ b/source/widgets/textbox.c
@@ -359,6 +359,15 @@ void textbox_set_pango_attributes(textbox *tb, PangoAttrList *list) {
pango_layout_set_attributes(tb->layout, list);
}
+char *textbox_get_text ( const textbox *tb ) {
+ if ( tb->text == NULL ) {
+ return g_strdup("");
+ }
+ return g_strdup( tb->text );
+}
+int textbox_get_cursor ( const textbox *tb ) {
+ return tb->cursor;
+}
// set the default text to display
void textbox_text(textbox *tb, const char *text) {
if (tb == NULL) {