From 3c1e9610ac0e503787678cea31d79e3126813a2c Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sat, 13 May 2017 18:37:11 +1000 Subject: Radio_Round_Button, Round_Button, Radio_Button, Repeat_Button, Toggle_Button widgets all now have Handle methods --- src/c_fl_radio_button.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/c_fl_radio_button.h') diff --git a/src/c_fl_radio_button.h b/src/c_fl_radio_button.h index ef8a992..7c6ed35 100644 --- a/src/c_fl_radio_button.h +++ b/src/c_fl_radio_button.h @@ -9,6 +9,8 @@ typedef void* RADIOBUTTON; extern "C" void radio_button_set_draw_hook(RADIOBUTTON b, void * d); extern "C" void fl_radio_button_draw(RADIOBUTTON b); +extern "C" void radio_button_set_handle_hook(RADIOBUTTON b, void * h); +extern "C" int fl_radio_button_handle(RADIOBUTTON b, int e); extern "C" RADIOBUTTON new_fl_radio_button(int x, int y, int w, int h, char* label); extern "C" void free_fl_radio_button(RADIOBUTTON b); -- cgit