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_chart.cpp | 69 ++++++++++++++++++++++++------------------------------ 1 file changed, 31 insertions(+), 38 deletions(-) (limited to 'src/c_fl_chart.cpp') diff --git a/src/c_fl_chart.cpp b/src/c_fl_chart.cpp index c3667a2..56bfb80 100644 --- a/src/c_fl_chart.cpp +++ b/src/c_fl_chart.cpp @@ -6,62 +6,44 @@ #include #include "c_fl_chart.h" -#include "c_fl_type.h" -class My_Chart : public Fl_Chart { - public: - using Fl_Chart::Fl_Chart; - friend void chart_set_draw_hook(CHART n, void * d); - friend void fl_chart_draw(CHART n); - friend void chart_set_handle_hook(CHART n, void * h); - friend int fl_chart_handle(CHART 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_Chart::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_Chart::real_draw() { - Fl_Chart::draw(); -} -int My_Chart::handle(int e) { - return (*handle_hook)(this->user_data(), e); -} -int My_Chart::real_handle(int e) { - return Fl_Chart::handle(e); -} -void chart_set_draw_hook(CHART n, void * d) { - reinterpret_cast(n)->draw_hook = reinterpret_cast(d); -} +// Attaching all relevant hooks and friends -void fl_chart_draw(CHART n) { - reinterpret_cast(n)->real_draw(); -} +class My_Chart : public Fl_Chart { +public: + using Fl_Chart::Fl_Chart; + + friend void fl_chart_draw(CHART n); + friend int fl_chart_handle(CHART n, int e); + + void draw(); + int handle(int e); +}; -void chart_set_handle_hook(CHART n, void * h) { - reinterpret_cast(n)->handle_hook = reinterpret_cast(h); +void My_Chart::draw() { + widget_draw_hook(this->user_data()); } -int fl_chart_handle(CHART n, int e) { - return reinterpret_cast(n)->real_handle(e); +int My_Chart::handle(int e) { + return widget_handle_hook(this->user_data(), e); } +// Flattened C API + CHART new_fl_chart(int x, int y, int w, int h, char* label) { My_Chart *b = new My_Chart(x, y, w, h, label); return b; @@ -156,3 +138,14 @@ void fl_chart_set_textsize(CHART b, int s) { } + + +void fl_chart_draw(CHART n) { + reinterpret_cast(n)->Fl_Chart::draw(); +} + +int fl_chart_handle(CHART n, int e) { + return reinterpret_cast(n)->Fl_Chart::handle(e); +} + + -- cgit