From de5fa364a30e187fd450bf4420019936f09fd9ab Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Thu, 1 Mar 2018 23:33:48 +1100 Subject: Added FLTK.Widgets.Clocks.Updated.Round --- src/c_fl_round_clock.cpp | 70 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 src/c_fl_round_clock.cpp (limited to 'src/c_fl_round_clock.cpp') diff --git a/src/c_fl_round_clock.cpp b/src/c_fl_round_clock.cpp new file mode 100644 index 0000000..56179fc --- /dev/null +++ b/src/c_fl_round_clock.cpp @@ -0,0 +1,70 @@ + + +#include +#include "c_fl_round_clock.h" +#include "c_fl_type.h" + + + + +class My_Round_Clock : public Fl_Round_Clock { + public: + using Fl_Round_Clock::Fl_Round_Clock; + friend void round_clock_set_draw_hook(ROUND_CLOCK c, void * d); + friend void fl_round_clock_draw(ROUND_CLOCK c); + friend void round_clock_set_handle_hook(ROUND_CLOCK c, void * h); + friend int fl_round_clock_handle(ROUND_CLOCK c, int e); + protected: + void draw(); + void real_draw(); + int handle(int e); + int real_handle(int e); + d_hook_p draw_hook; + h_hook_p handle_hook; +}; + +void My_Round_Clock::draw() { + (*draw_hook)(this->user_data()); +} + +void My_Round_Clock::real_draw() { + Fl_Round_Clock::draw(); +} + +int My_Round_Clock::handle(int e) { + return (*handle_hook)(this->user_data(), e); +} + +int My_Round_Clock::real_handle(int e) { + return Fl_Round_Clock::handle(e); +} + +void round_clock_set_draw_hook(ROUND_CLOCK c, void * d) { + reinterpret_cast(c)->draw_hook = reinterpret_cast(d); +} + +void fl_round_clock_draw(ROUND_CLOCK c) { + reinterpret_cast(c)->real_draw(); +} + +void round_clock_set_handle_hook(ROUND_CLOCK c, void * h) { + reinterpret_cast(c)->handle_hook = reinterpret_cast(h); +} + +int fl_round_clock_handle(ROUND_CLOCK c, int e) { + return reinterpret_cast(c)->real_handle(e); +} + + + + +ROUND_CLOCK new_fl_round_clock(int x, int y, int w, int h, char* label) { + My_Round_Clock *c = new My_Round_Clock(x, y, w, h, label); + return c; +} + +void free_fl_round_clock(ROUND_CLOCK c) { + delete reinterpret_cast(c); +} + + -- cgit