summaryrefslogtreecommitdiff
path: root/src/c_fl_radio_round_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_round_button.cpp
parent306adba6ddaab80c6929fe955567f25d9da7915f (diff)
Draw method implemented for all Button variations (ugh)
Diffstat (limited to 'src/c_fl_radio_round_button.cpp')
-rw-r--r--src/c_fl_radio_round_button.cpp44
1 files changed, 42 insertions, 2 deletions
diff --git a/src/c_fl_radio_round_button.cpp b/src/c_fl_radio_round_button.cpp
index 9e94244..de9e928 100644
--- a/src/c_fl_radio_round_button.cpp
+++ b/src/c_fl_radio_round_button.cpp
@@ -4,13 +4,53 @@
#include "c_fl_radio_round_button.h"
+typedef void (hook)(void*);
+typedef hook* hook_p;
+
+
+
+
+class My_Radio_Round_Button : public Fl_Radio_Round_Button {
+ public:
+ using Fl_Radio_Round_Button::Fl_Radio_Round_Button;
+ friend void radio_round_button_set_draw_hook(RADIOROUNDBUTTON b, void * d);
+ friend void fl_radio_round_button_draw(RADIOROUNDBUTTON b);
+ protected:
+ void draw();
+ void real_draw();
+ hook_p draw_hook;
+};
+
+
+void My_Radio_Round_Button::draw() {
+ (*draw_hook)(this->user_data());
+}
+
+
+void My_Radio_Round_Button::real_draw() {
+ Fl_Radio_Round_Button::draw();
+}
+
+
+void radio_round_button_set_draw_hook(RADIOROUNDBUTTON b, void * d) {
+ reinterpret_cast<My_Radio_Round_Button*>(b)->draw_hook = reinterpret_cast<hook_p>(d);
+}
+
+
+void fl_radio_round_button_draw(RADIOROUNDBUTTON b) {
+ reinterpret_cast<My_Radio_Round_Button*>(b)->real_draw();
+}
+
+
+
+
RADIOROUNDBUTTON new_fl_radio_round_button(int x, int y, int w, int h, char* label) {
- Fl_Radio_Round_Button *b = new Fl_Radio_Round_Button(x, y, w, h, label);
+ My_Radio_Round_Button *b = new My_Radio_Round_Button(x, y, w, h, label);
return b;
}
void free_fl_radio_round_button(RADIOROUNDBUTTON b) {
- delete reinterpret_cast<Fl_Radio_Round_Button*>(b);
+ delete reinterpret_cast<My_Radio_Round_Button*>(b);
}