From b4438b2fbe895694be98e6e8426103deefc51448 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Tue, 21 Jan 2025 21:04:54 +1300 Subject: Split public API and private implementation files into different directories --- body/c_fl_value_output.cpp | 112 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 body/c_fl_value_output.cpp (limited to 'body/c_fl_value_output.cpp') 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 +#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(a); +} + + + + +int fl_value_output_is_soft(VALUEOUTPUT a) { + return static_cast(a)->soft(); +} + +void fl_value_output_set_soft(VALUEOUTPUT a, int t) { + static_cast(a)->soft(t); +} + + + + +unsigned int fl_value_output_get_text_color(VALUEOUTPUT v) { + return static_cast(v)->textcolor(); +} + +void fl_value_output_set_text_color(VALUEOUTPUT v, unsigned int c) { + static_cast(v)->textcolor(static_cast(c)); +} + +int fl_value_output_get_text_font(VALUEOUTPUT v) { + return static_cast(v)->textfont(); +} + +void fl_value_output_set_text_font(VALUEOUTPUT v, int f) { + static_cast(v)->textfont(static_cast(f)); +} + +int fl_value_output_get_text_size(VALUEOUTPUT v) { + return static_cast(v)->textsize(); +} + +void fl_value_output_set_text_size(VALUEOUTPUT v, int s) { + static_cast(v)->textsize(static_cast(s)); +} + + + + +void fl_value_output_draw(VALUEOUTPUT a) { + static_cast(a)->Fl_Value_Output::draw(); +} + +int fl_value_output_handle(VALUEOUTPUT a, int e) { + return static_cast(a)->Fl_Value_Output::handle(e); +} + + -- cgit