From e93b9bbc02e2791f3a35b6f077fcbb8514c28aed Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Sun, 12 Jan 2025 01:14:58 +1300 Subject: Refactored draw/handle methods in Widgets hierarchy, improved docs, added a few minor method bindings here and there --- src/c_fl_pack.cpp | 69 +++++++++++++++++++++++++------------------------------ 1 file changed, 31 insertions(+), 38 deletions(-) (limited to 'src/c_fl_pack.cpp') diff --git a/src/c_fl_pack.cpp b/src/c_fl_pack.cpp index e0a6e9d..2e83b3f 100644 --- a/src/c_fl_pack.cpp +++ b/src/c_fl_pack.cpp @@ -6,62 +6,44 @@ #include #include "c_fl_pack.h" -#include "c_fl_type.h" -class My_Pack : public Fl_Pack { - public: - using Fl_Pack::Fl_Pack; - friend void pack_set_draw_hook(PACK n, void * d); - friend void fl_pack_draw(PACK n); - friend void pack_set_handle_hook(PACK n, void * h); - friend int fl_pack_handle(PACK n, 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; -}; +// Exports from Ada -void My_Pack::draw() { - (*draw_hook)(this->user_data()); -} +extern "C" void widget_draw_hook(void * ud); +extern "C" int widget_handle_hook(void * ud, int e); -void My_Pack::real_draw() { - Fl_Pack::draw(); -} -int My_Pack::handle(int e) { - return (*handle_hook)(this->user_data(), e); -} -int My_Pack::real_handle(int e) { - return Fl_Pack::handle(e); -} -void pack_set_draw_hook(PACK n, void * d) { - reinterpret_cast(n)->draw_hook = reinterpret_cast(d); -} +// Attaching all relevant hooks and friends -void fl_pack_draw(PACK n) { - reinterpret_cast(n)->real_draw(); -} +class My_Pack : public Fl_Pack { +public: + using Fl_Pack::Fl_Pack; + + friend void fl_pack_draw(PACK n); + friend int fl_pack_handle(PACK n, int e); + + void draw(); + int handle(int e); +}; -void pack_set_handle_hook(PACK n, void * h) { - reinterpret_cast(n)->handle_hook = reinterpret_cast(h); +void My_Pack::draw() { + widget_draw_hook(this->user_data()); } -int fl_pack_handle(PACK n, int e) { - return reinterpret_cast(n)->real_handle(e); +int My_Pack::handle(int e) { + return widget_handle_hook(this->user_data(), e); } +// Flattened C API + PACK new_fl_pack(int x, int y, int w, int h, char* label) { My_Pack *b = new My_Pack(x, y, w, h, label); return b; @@ -83,3 +65,14 @@ void fl_pack_set_spacing(PACK p, int t) { } + + +void fl_pack_draw(PACK n) { + reinterpret_cast(n)->Fl_Pack::draw(); +} + +int fl_pack_handle(PACK n, int e) { + return reinterpret_cast(n)->Fl_Pack::handle(e); +} + + -- cgit