summaryrefslogtreecommitdiff
path: root/src/c_fl_toggle_button.h
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2017-05-13 18:37:11 +1000
committerJed Barber <jjbarber@y7mail.com>2017-05-13 18:37:11 +1000
commit3c1e9610ac0e503787678cea31d79e3126813a2c (patch)
treecb324baa985aebbfc99ebb884cbd4b4131d1f933 /src/c_fl_toggle_button.h
parente35f258838e3a5e5d3458e9d9210deaaace08e9d (diff)
Radio_Round_Button, Round_Button, Radio_Button, Repeat_Button, Toggle_Button widgets all now have Handle methods
Diffstat (limited to 'src/c_fl_toggle_button.h')
-rw-r--r--src/c_fl_toggle_button.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/c_fl_toggle_button.h b/src/c_fl_toggle_button.h
index d69039b..28ad4ec 100644
--- a/src/c_fl_toggle_button.h
+++ b/src/c_fl_toggle_button.h
@@ -9,6 +9,8 @@ typedef void* TOGGLEBUTTON;
extern "C" void toggle_button_set_draw_hook(TOGGLEBUTTON b, void * d);
extern "C" void fl_toggle_button_draw(TOGGLEBUTTON b);
+extern "C" void toggle_button_set_handle_hook(TOGGLEBUTTON b, void * h);
+extern "C" int fl_toggle_button_handle(TOGGLEBUTTON b, int e);
extern "C" TOGGLEBUTTON new_fl_toggle_button(int x, int y, int w, int h, char* label);
extern "C" void free_fl_toggle_button(TOGGLEBUTTON b);