summaryrefslogtreecommitdiff
path: root/src/c_fl_radio_button.cpp
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2017-05-01 20:53:10 +1000
committerJed Barber <jjbarber@y7mail.com>2017-05-01 20:53:10 +1000
commit727cd771facf506910ddbb63532b3b6af7fb1b77 (patch)
tree3115d4e112efad94c30d7c00be0569bb201515ad /src/c_fl_radio_button.cpp
parent306adba6ddaab80c6929fe955567f25d9da7915f (diff)
Draw method implemented for all Button variations (ugh)
Diffstat (limited to 'src/c_fl_radio_button.cpp')
-rw-r--r--src/c_fl_radio_button.cpp44
1 files changed, 42 insertions, 2 deletions
diff --git a/src/c_fl_radio_button.cpp b/src/c_fl_radio_button.cpp
index 1cac323..9eb55cb 100644
--- a/src/c_fl_radio_button.cpp
+++ b/src/c_fl_radio_button.cpp
@@ -4,13 +4,53 @@
#include "c_fl_radio_button.h"
+typedef void (hook)(void*);
+typedef hook* hook_p;
+
+
+
+
+class My_Radio_Button : public Fl_Radio_Button {
+ public:
+ using Fl_Radio_Button::Fl_Radio_Button;
+ friend void radio_button_set_draw_hook(RADIOBUTTON b, void * d);
+ friend void fl_radio_button_draw(RADIOBUTTON b);
+ protected:
+ void draw();
+ void real_draw();
+ hook_p draw_hook;
+};
+
+
+void My_Radio_Button::draw() {
+ (*draw_hook)(this->user_data());
+}
+
+
+void My_Radio_Button::real_draw() {
+ Fl_Radio_Button::draw();
+}
+
+
+void radio_button_set_draw_hook(RADIOBUTTON b, void * d) {
+ reinterpret_cast<My_Radio_Button*>(b)->draw_hook = reinterpret_cast<hook_p>(d);
+}
+
+
+void fl_radio_button_draw(RADIOBUTTON b) {
+ reinterpret_cast<My_Radio_Button*>(b)->real_draw();
+}
+
+
+
+
RADIOBUTTON new_fl_radio_button(int x, int y, int w, int h, char* label) {
- Fl_Radio_Button *b = new Fl_Radio_Button(x, y, w, h, label);
+ My_Radio_Button *b = new My_Radio_Button(x, y, w, h, label);
return b;
}
void free_fl_radio_button(RADIOBUTTON b) {
- delete reinterpret_cast<Fl_Radio_Button*>(b);
+ delete reinterpret_cast<My_Radio_Button*>(b);
}