summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2014-08-30 20:45:08 +0200
committerDave Davenport <qball@gmpclient.org>2014-08-30 20:45:08 +0200
commit229bb6931b278d455a35359db8361c1b9aa6c013 (patch)
tree3d89133b25c706b69026861fca2acba7cf0eca3f /include
parent91ccb54199a533ce574fc9f0d158d64c38d406ec (diff)
Play with adding some more test, bug fixes
* delete an invalid memmove in textbox
Diffstat (limited to 'include')
-rw-r--r--include/textbox.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/textbox.h b/include/textbox.h
index c992fe4b..ff331afb 100644
--- a/include/textbox.h
+++ b/include/textbox.h
@@ -92,4 +92,13 @@ int textbox_get_font_height ( textbox *tb );
int textbox_get_font_width ( textbox *tb );
double textbox_get_estimated_char_width ( );
+
+
+void textbox_cursor_bkspc ( textbox *tb );
+void textbox_cursor_del ( textbox *tb );
+void textbox_cursor_dec ( textbox *tb );
+void textbox_cursor_inc ( textbox *tb );
+
+void textbox_delete ( textbox *tb, int pos, int dlen );
+
#endif //__TEXTBOX_H__