From fb37523537cdb69a31dede401a604981ce8b7b9d Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sat, 17 Jun 2017 11:28:39 +1000 Subject: Updated coding style, added progress log --- src/c_fl_button.cpp | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'src/c_fl_button.cpp') diff --git a/src/c_fl_button.cpp b/src/c_fl_button.cpp index d164fb0..5aa06c4 100644 --- a/src/c_fl_button.cpp +++ b/src/c_fl_button.cpp @@ -23,42 +23,34 @@ class My_Button : public Fl_Button { h_hook_p handle_hook; }; - void My_Button::draw() { (*draw_hook)(this->user_data()); } - void My_Button::real_draw() { Fl_Button::draw(); } - int My_Button::handle(int e) { return (*handle_hook)(this->user_data(), e); } - int My_Button::real_handle(int e) { return Fl_Button::handle(e); } - void button_set_draw_hook(BUTTON b, void * d) { reinterpret_cast(b)->draw_hook = reinterpret_cast(d); } - void fl_button_draw(BUTTON b) { reinterpret_cast(b)->real_draw(); } - void button_set_handle_hook(BUTTON b, void * h) { reinterpret_cast(b)->handle_hook = reinterpret_cast(h); } - int fl_button_handle(BUTTON b, int e) { return reinterpret_cast(b)->real_handle(e); } @@ -71,7 +63,6 @@ BUTTON new_fl_button(int x, int y, int w, int h, char* label) { return b; } - void free_fl_button(BUTTON b) { delete reinterpret_cast(b); } @@ -83,12 +74,10 @@ int fl_button_get_state(BUTTON b) { return reinterpret_cast(b)->value(); } - void fl_button_set_state(BUTTON b, int s) { reinterpret_cast(b)->value(s); } - void fl_button_set_only(BUTTON b) { reinterpret_cast(b)->setonly(); } -- cgit