From f4b68da1d14d39ab4140d8c5e7fbbf45525e7e77 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sat, 13 May 2017 23:05:47 +1000 Subject: Text_Editor, Text_Display, Double_Window, Single_Window, Menu_Window, Window, Group widgets all now have Handle methods --- src/c_fl_text_editor.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/c_fl_text_editor.h') diff --git a/src/c_fl_text_editor.h b/src/c_fl_text_editor.h index 87a09ce..f6abc6e 100644 --- a/src/c_fl_text_editor.h +++ b/src/c_fl_text_editor.h @@ -9,6 +9,8 @@ typedef void* TEXTEDITOR; extern "C" void text_editor_set_draw_hook(TEXTEDITOR te, void * d); extern "C" void fl_text_editor_draw(TEXTEDITOR te); +extern "C" void text_editor_set_handle_hook(TEXTEDITOR te, void * h); +extern "C" int fl_text_editor_handle(TEXTEDITOR te, int e); extern "C" TEXTEDITOR new_fl_text_editor(int x, int y, int w, int h, char* label); -- cgit