summaryrefslogtreecommitdiff
path: root/body/c_fl_file_input.cpp
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-01-21 21:04:54 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2025-01-21 21:04:54 +1300
commitb4438b2fbe895694be98e6e8426103deefc51448 (patch)
tree760d86cd7c06420a91dad102cc9546aee73146fc /body/c_fl_file_input.cpp
parenta4703a65b015140cd4a7a985db66264875ade734 (diff)
Split public API and private implementation files into different directories
Diffstat (limited to 'body/c_fl_file_input.cpp')
-rw-r--r--body/c_fl_file_input.cpp97
1 files changed, 97 insertions, 0 deletions
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 <FL/Fl_File_Input.H>
+#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<My_File_Input*>(i);
+}
+
+
+
+
+int fl_file_input_get_down_box(FILEINPUT i) {
+ return static_cast<Fl_File_Input*>(i)->down_box();
+}
+
+void fl_file_input_set_down_box(FILEINPUT i, int t) {
+ static_cast<Fl_File_Input*>(i)->down_box(static_cast<Fl_Boxtype>(t));
+}
+
+unsigned int fl_file_input_get_errorcolor(FILEINPUT i) {
+ return static_cast<Fl_File_Input*>(i)->errorcolor();
+}
+
+void fl_file_input_set_errorcolor(FILEINPUT i, unsigned int t) {
+ static_cast<Fl_File_Input*>(i)->errorcolor(t);
+}
+
+
+
+
+const char * fl_file_input_get_value(FILEINPUT i) {
+ return static_cast<Fl_File_Input*>(i)->value();
+}
+
+int fl_file_input_set_value(FILEINPUT i, const char * s, int len) {
+ return static_cast<Fl_File_Input*>(i)->value(s,len);
+}
+
+
+
+
+void fl_file_input_draw(FILEINPUT i) {
+ static_cast<My_File_Input*>(i)->Fl_File_Input::draw();
+}
+
+int fl_file_input_handle(FILEINPUT i, int e) {
+ return static_cast<My_File_Input*>(i)->Fl_File_Input::handle(e);
+}
+
+