diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-21 21:04:54 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-21 21:04:54 +1300 |
commit | b4438b2fbe895694be98e6e8426103deefc51448 (patch) | |
tree | 760d86cd7c06420a91dad102cc9546aee73146fc /body/c_fl_wizard.cpp | |
parent | a4703a65b015140cd4a7a985db66264875ade734 (diff) |
Split public API and private implementation files into different directories
Diffstat (limited to 'body/c_fl_wizard.cpp')
-rw-r--r-- | body/c_fl_wizard.cpp | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/body/c_fl_wizard.cpp b/body/c_fl_wizard.cpp new file mode 100644 index 0000000..e29995a --- /dev/null +++ b/body/c_fl_wizard.cpp @@ -0,0 +1,106 @@ + + +// Programmed by Jedidiah Barber +// Released into the public domain + + +#include <FL/Fl_Wizard.H> +#include "c_fl_wizard.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_Wizard : public Fl_Wizard { +public: + using Fl_Wizard::Fl_Wizard; + + friend void fl_wizard_draw(WIZARD w); + friend int fl_wizard_handle(WIZARD w, int e); + + void draw(); + void real_draw(); + int handle(int e); +}; + +void My_Wizard::draw() { + widget_draw_hook(this->user_data()); +} + +void My_Wizard::real_draw() { + // required because of Fl_Wizard::draw() being private + // probably a bug in FLTK? + Fl_Widget *kid = value(); + if (damage() & FL_DAMAGE_ALL) { + if (kid) { + draw_box(box(), x(), y(), w(), h(), kid->color()); + draw_child(*kid); + } else { + draw_box(box(), x(), y(), w(), h(), color()); + } + } else if (kid) { + update_child(*kid); + } +} + +int My_Wizard::handle(int e) { + return widget_handle_hook(this->user_data(), e); +} + + + + +// Flattened C API + +WIZARD new_fl_wizard(int x, int y, int w, int h, char* label) { + My_Wizard *g = new My_Wizard(x, y, w, h, label); + return g; +} + +void free_fl_wizard(WIZARD w) { + delete static_cast<My_Wizard*>(w); +} + + + + +void fl_wizard_next(WIZARD w) { + static_cast<Fl_Wizard*>(w)->next(); +} + +void fl_wizard_prev(WIZARD w) { + static_cast<Fl_Wizard*>(w)->prev(); +} + + + + +void * fl_wizard_get_visible(WIZARD w) { + return static_cast<Fl_Wizard*>(w)->value(); +} + +void fl_wizard_set_visible(WIZARD w, void * i) { + static_cast<Fl_Wizard*>(w)->value(static_cast<Fl_Widget*>(i)); +} + + + + +void fl_wizard_draw(WIZARD w) { + static_cast<My_Wizard*>(w)->real_draw(); +} + +int fl_wizard_handle(WIZARD w, int e) { + return static_cast<My_Wizard*>(w)->Fl_Wizard::handle(e); +} + + |