From 727cd771facf506910ddbb63532b3b6af7fb1b77 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Mon, 1 May 2017 20:53:10 +1000 Subject: Draw method implemented for all Button variations (ugh) --- src/c_fl_radio_light_button.cpp | 44 +++++++++++++++++++++++++++++++++++++++-- 1 file changed, 42 insertions(+), 2 deletions(-) (limited to 'src/c_fl_radio_light_button.cpp') diff --git a/src/c_fl_radio_light_button.cpp b/src/c_fl_radio_light_button.cpp index 7dd4a5f..c865480 100644 --- a/src/c_fl_radio_light_button.cpp +++ b/src/c_fl_radio_light_button.cpp @@ -4,13 +4,53 @@ #include "c_fl_radio_light_button.h" +typedef void (hook)(void*); +typedef hook* hook_p; + + + + +class My_Radio_Light_Button : public Fl_Radio_Light_Button { + public: + using Fl_Radio_Light_Button::Fl_Radio_Light_Button; + friend void radio_light_button_set_draw_hook(RADIOLIGHTBUTTON b, void * d); + friend void fl_radio_light_button_draw(RADIOLIGHTBUTTON b); + protected: + void draw(); + void real_draw(); + hook_p draw_hook; +}; + + +void My_Radio_Light_Button::draw() { + (*draw_hook)(this->user_data()); +} + + +void My_Radio_Light_Button::real_draw() { + Fl_Radio_Light_Button::draw(); +} + + +void radio_light_button_set_draw_hook(RADIOLIGHTBUTTON b, void * d) { + reinterpret_cast(b)->draw_hook = reinterpret_cast(d); +} + + +void fl_radio_light_button_draw(RADIOLIGHTBUTTON b) { + reinterpret_cast(b)->real_draw(); +} + + + + RADIOLIGHTBUTTON new_fl_radio_light_button(int x, int y, int w, int h, char* label) { - Fl_Radio_Light_Button *b = new Fl_Radio_Light_Button(x, y, w, h, label); + My_Radio_Light_Button *b = new My_Radio_Light_Button(x, y, w, h, label); return b; } void free_fl_radio_light_button(RADIOLIGHTBUTTON b) { - delete reinterpret_cast(b); + delete reinterpret_cast(b); } -- cgit