diff options
author | Jed Barber <jjbarber@y7mail.com> | 2016-09-16 04:10:49 +1000 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2016-09-16 04:10:49 +1000 |
commit | 395e2de5b0d834091637820fc04d731721c771b7 (patch) | |
tree | 64492fca38997578914ac24cd262598af966c241 /src/fltk_binding/c_fl_text_editor.h | |
parent | bfcc3811a3ce55cafa6f7809d0d92c87238ea032 (diff) |
Adapad menus and callbacks now present in skeleton form, also Text_Buffers have callbacks too
Diffstat (limited to 'src/fltk_binding/c_fl_text_editor.h')
-rw-r--r-- | src/fltk_binding/c_fl_text_editor.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/fltk_binding/c_fl_text_editor.h b/src/fltk_binding/c_fl_text_editor.h index 2eda9f3..7c7cee5 100644 --- a/src/fltk_binding/c_fl_text_editor.h +++ b/src/fltk_binding/c_fl_text_editor.h @@ -11,5 +11,11 @@ extern "C" TEXTEDITOR new_fl_text_editor(int x, int y, int w, int h, char* label extern "C" void free_fl_text_editor(TEXTEDITOR te); +extern "C" void fl_text_editor_cut (TEXTEDITOR te); +extern "C" void fl_text_editor_copy (TEXTEDITOR te); +extern "C" void fl_text_editor_paste (TEXTEDITOR te); +extern "C" void fl_text_editor_delete (TEXTEDITOR te); + + #endif |