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_single_window.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/c_fl_single_window.h') diff --git a/src/c_fl_single_window.h b/src/c_fl_single_window.h index a0af35b..72db038 100644 --- a/src/c_fl_single_window.h +++ b/src/c_fl_single_window.h @@ -9,11 +9,15 @@ typedef void* SINGLEWINDOW; extern "C" void single_window_set_draw_hook(SINGLEWINDOW n, void * d); extern "C" void fl_single_window_draw(SINGLEWINDOW n); +extern "C" void single_window_set_handle_hook(SINGLEWINDOW n, void * h); +extern "C" int fl_single_window_handle(SINGLEWINDOW n, int e); + extern "C" SINGLEWINDOW new_fl_single_window(int x, int y, int w, int h, char* label); extern "C" SINGLEWINDOW new_fl_single_window2(int x, int y); extern "C" void free_fl_single_window(SINGLEWINDOW w); + extern "C" void fl_single_window_show(SINGLEWINDOW w); extern "C" void fl_single_window_flush(SINGLEWINDOW w); -- cgit