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_file_input.cpp | 97 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 body/c_fl_file_input.cpp (limited to 'body/c_fl_file_input.cpp') diff --git a/body/c_fl_file_input.cpp b/body/c_fl_file_input.cpp new file mode 100644 index 0000000..8d0b15f --- /dev/null +++ b/body/c_fl_file_input.cpp @@ -0,0 +1,97 @@ + + +// Programmed by Jedidiah Barber +// Released into the public domain + + +#include +#include "c_fl_file_input.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_File_Input : public Fl_File_Input { +public: + using Fl_File_Input::Fl_File_Input; + + friend void fl_file_input_draw(FILEINPUT i); + friend int fl_file_input_handle(FILEINPUT i, int e); + + void draw(); + int handle(int e); +}; + +void My_File_Input::draw() { + widget_draw_hook(this->user_data()); +} + +int My_File_Input::handle(int e) { + return widget_handle_hook(this->user_data(), e); +} + + + + +// Flattened C API + +FILEINPUT new_fl_file_input(int x, int y, int w, int h, char* label) { + My_File_Input *i = new My_File_Input(x, y, w, h, label); + return i; +} + +void free_fl_file_input(FILEINPUT i) { + delete static_cast(i); +} + + + + +int fl_file_input_get_down_box(FILEINPUT i) { + return static_cast(i)->down_box(); +} + +void fl_file_input_set_down_box(FILEINPUT i, int t) { + static_cast(i)->down_box(static_cast(t)); +} + +unsigned int fl_file_input_get_errorcolor(FILEINPUT i) { + return static_cast(i)->errorcolor(); +} + +void fl_file_input_set_errorcolor(FILEINPUT i, unsigned int t) { + static_cast(i)->errorcolor(t); +} + + + + +const char * fl_file_input_get_value(FILEINPUT i) { + return static_cast(i)->value(); +} + +int fl_file_input_set_value(FILEINPUT i, const char * s, int len) { + return static_cast(i)->value(s,len); +} + + + + +void fl_file_input_draw(FILEINPUT i) { + static_cast(i)->Fl_File_Input::draw(); +} + +int fl_file_input_handle(FILEINPUT i, int e) { + return static_cast(i)->Fl_File_Input::handle(e); +} + + -- cgit