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_value_output.cpp | |
parent | a4703a65b015140cd4a7a985db66264875ade734 (diff) |
Split public API and private implementation files into different directories
Diffstat (limited to 'body/c_fl_value_output.cpp')
-rw-r--r-- | body/c_fl_value_output.cpp | 112 |
1 files changed, 112 insertions, 0 deletions
diff --git a/body/c_fl_value_output.cpp b/body/c_fl_value_output.cpp new file mode 100644 index 0000000..5e42996 --- /dev/null +++ b/body/c_fl_value_output.cpp @@ -0,0 +1,112 @@ + + +// Programmed by Jedidiah Barber +// Released into the public domain + + +#include <FL/Fl_Value_Output.H> +#include "c_fl_value_output.h" + + + + +// Exports from Ada + +extern "C" void widget_draw_hook(void * ud); +extern "C" int widget_handle_hook(void * ud, int e); + +extern "C" int valuator_format_hook(void * ud, char * buf); + + + + +// Attaching all relevant hooks and friends + +class My_Value_Output : public Fl_Value_Output { +public: + using Fl_Value_Output::Fl_Value_Output; + + friend void fl_value_output_draw(VALUEOUTPUT a); + friend int fl_value_output_handle(VALUEOUTPUT a, int e); + + int format(char * buf); + void draw(); + int handle(int e); +}; + +int My_Value_Output::format(char * buf) { + return valuator_format_hook(this->user_data(), buf); +} + +void My_Value_Output::draw() { + widget_draw_hook(this->user_data()); +} + +int My_Value_Output::handle(int e) { + return widget_handle_hook(this->user_data(), e); +} + + + + +// Flattened C API + +VALUEOUTPUT new_fl_value_output(int x, int y, int w, int h, char* label) { + My_Value_Output *a = new My_Value_Output(x, y, w, h, label); + return a; +} + +void free_fl_value_output(VALUEOUTPUT a) { + delete static_cast<My_Value_Output*>(a); +} + + + + +int fl_value_output_is_soft(VALUEOUTPUT a) { + return static_cast<Fl_Value_Output*>(a)->soft(); +} + +void fl_value_output_set_soft(VALUEOUTPUT a, int t) { + static_cast<Fl_Value_Output*>(a)->soft(t); +} + + + + +unsigned int fl_value_output_get_text_color(VALUEOUTPUT v) { + return static_cast<Fl_Value_Output*>(v)->textcolor(); +} + +void fl_value_output_set_text_color(VALUEOUTPUT v, unsigned int c) { + static_cast<Fl_Value_Output*>(v)->textcolor(static_cast<Fl_Color>(c)); +} + +int fl_value_output_get_text_font(VALUEOUTPUT v) { + return static_cast<Fl_Value_Output*>(v)->textfont(); +} + +void fl_value_output_set_text_font(VALUEOUTPUT v, int f) { + static_cast<Fl_Value_Output*>(v)->textfont(static_cast<Fl_Font>(f)); +} + +int fl_value_output_get_text_size(VALUEOUTPUT v) { + return static_cast<Fl_Value_Output*>(v)->textsize(); +} + +void fl_value_output_set_text_size(VALUEOUTPUT v, int s) { + static_cast<Fl_Value_Output*>(v)->textsize(static_cast<Fl_Fontsize>(s)); +} + + + + +void fl_value_output_draw(VALUEOUTPUT a) { + static_cast<My_Value_Output*>(a)->Fl_Value_Output::draw(); +} + +int fl_value_output_handle(VALUEOUTPUT a, int e) { + return static_cast<My_Value_Output*>(a)->Fl_Value_Output::handle(e); +} + + |