summaryrefslogtreecommitdiff
path: root/src/c_fl_radio_button.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_fl_radio_button.cpp')
-rw-r--r--src/c_fl_radio_button.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/c_fl_radio_button.cpp b/src/c_fl_radio_button.cpp
index 643e8e1..3ae1ca4 100644
--- a/src/c_fl_radio_button.cpp
+++ b/src/c_fl_radio_button.cpp
@@ -23,42 +23,34 @@ class My_Radio_Button : public Fl_Radio_Button {
h_hook_p handle_hook;
};
-
void My_Radio_Button::draw() {
(*draw_hook)(this->user_data());
}
-
void My_Radio_Button::real_draw() {
Fl_Radio_Button::draw();
}
-
int My_Radio_Button::handle(int e) {
return (*handle_hook)(this->user_data(), e);
}
-
int My_Radio_Button::real_handle(int e) {
return Fl_Radio_Button::handle(e);
}
-
void radio_button_set_draw_hook(RADIOBUTTON b, void * d) {
reinterpret_cast<My_Radio_Button*>(b)->draw_hook = reinterpret_cast<d_hook_p>(d);
}
-
void fl_radio_button_draw(RADIOBUTTON b) {
reinterpret_cast<My_Radio_Button*>(b)->real_draw();
}
-
void radio_button_set_handle_hook(RADIOBUTTON b, void * h) {
reinterpret_cast<My_Radio_Button*>(b)->handle_hook = reinterpret_cast<h_hook_p>(h);
}
-
int fl_radio_button_handle(RADIOBUTTON b, int e) {
return reinterpret_cast<My_Radio_Button*>(b)->real_handle(e);
}
@@ -71,7 +63,6 @@ RADIOBUTTON new_fl_radio_button(int x, int y, int w, int h, char* label) {
return b;
}
-
void free_fl_radio_button(RADIOBUTTON b) {
delete reinterpret_cast<My_Radio_Button*>(b);
}