summaryrefslogtreecommitdiff
path: root/src/c_fl_nice_slider.cpp
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-01-12 01:14:58 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2025-01-12 01:14:58 +1300
commite93b9bbc02e2791f3a35b6f077fcbb8514c28aed (patch)
tree3661530027db6809a9cbad7b2477416009e00787 /src/c_fl_nice_slider.cpp
parent53aa8144851913994b963ed611cca8885b8f9a9e (diff)
Refactored draw/handle methods in Widgets hierarchy, improved docs, added a few minor method bindings here and there
Diffstat (limited to 'src/c_fl_nice_slider.cpp')
-rw-r--r--src/c_fl_nice_slider.cpp69
1 files changed, 31 insertions, 38 deletions
diff --git a/src/c_fl_nice_slider.cpp b/src/c_fl_nice_slider.cpp
index 819bd45..e4263dd 100644
--- a/src/c_fl_nice_slider.cpp
+++ b/src/c_fl_nice_slider.cpp
@@ -6,69 +6,62 @@
#include <FL/Fl_Nice_Slider.H>
#include "c_fl_nice_slider.h"
-#include "c_fl_type.h"
+// Exports from Ada
+
+extern "C" void widget_draw_hook(void * ud);
+extern "C" int widget_handle_hook(void * ud, int e);
+
+
+
+
+// Attaching all relevant hooks and friends
+
class My_Nice_Slider : public Fl_Nice_Slider {
- public:
- using Fl_Nice_Slider::Fl_Nice_Slider;
- friend void nice_slider_set_draw_hook(NICE_SLIDER s, void * d);
- friend void fl_nice_slider_draw(NICE_SLIDER s);
- friend void nice_slider_set_handle_hook(NICE_SLIDER s, void * h);
- friend int fl_nice_slider_handle(NICE_SLIDER s, 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;
+public:
+ using Fl_Nice_Slider::Fl_Nice_Slider;
+
+ friend void fl_nice_slider_draw(NICESLIDER s);
+ friend int fl_nice_slider_handle(NICESLIDER s, int e);
+
+ void draw();
+ int handle(int e);
};
void My_Nice_Slider::draw() {
- (*draw_hook)(this->user_data());
-}
-
-void My_Nice_Slider::real_draw() {
- Fl_Nice_Slider::draw();
+ widget_draw_hook(this->user_data());
}
int My_Nice_Slider::handle(int e) {
- return (*handle_hook)(this->user_data(), e);
+ return widget_handle_hook(this->user_data(), e);
}
-int My_Nice_Slider::real_handle(int e) {
- return Fl_Nice_Slider::handle(e);
-}
-void nice_slider_set_draw_hook(NICE_SLIDER s, void * d) {
- reinterpret_cast<My_Nice_Slider*>(s)->draw_hook = reinterpret_cast<d_hook_p>(d);
-}
-void fl_nice_slider_draw(NICE_SLIDER s) {
- reinterpret_cast<My_Nice_Slider*>(s)->real_draw();
-}
-void nice_slider_set_handle_hook(NICE_SLIDER s, void * h) {
- reinterpret_cast<My_Nice_Slider*>(s)->handle_hook = reinterpret_cast<h_hook_p>(h);
+// Flattened C API
+
+NICESLIDER new_fl_nice_slider(int x, int y, int w, int h, char* label) {
+ My_Nice_Slider *s = new My_Nice_Slider(x, y, w, h, label);
+ return s;
}
-int fl_nice_slider_handle(NICE_SLIDER s, int e) {
- return reinterpret_cast<My_Nice_Slider*>(s)->real_handle(e);
+void free_fl_nice_slider(NICESLIDER s) {
+ delete reinterpret_cast<My_Nice_Slider*>(s);
}
-NICE_SLIDER new_fl_nice_slider(int x, int y, int w, int h, char* label) {
- My_Nice_Slider *s = new My_Nice_Slider(x, y, w, h, label);
- return s;
+void fl_nice_slider_draw(NICESLIDER s) {
+ reinterpret_cast<My_Nice_Slider*>(s)->Fl_Nice_Slider::draw();
}
-void free_fl_nice_slider(NICE_SLIDER s) {
- delete reinterpret_cast<My_Nice_Slider*>(s);
+int fl_nice_slider_handle(NICESLIDER s, int e) {
+ return reinterpret_cast<My_Nice_Slider*>(s)->Fl_Nice_Slider::handle(e);
}