From 09d9f2f6fc83af3bdc76717941eb13b77b2b1613 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Tue, 20 Mar 2018 01:41:49 +1100 Subject: Moved several Widgets from the Partially list to the Done list --- src/c_fl_file_input.cpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'src/c_fl_file_input.cpp') diff --git a/src/c_fl_file_input.cpp b/src/c_fl_file_input.cpp index 03f941c..50b600f 100644 --- a/src/c_fl_file_input.cpp +++ b/src/c_fl_file_input.cpp @@ -68,3 +68,22 @@ void free_fl_file_input(FILE_INPUT i) { } + + +int fl_file_input_get_down_box(FILE_INPUT i) { + return reinterpret_cast(i)->down_box(); +} + +void fl_file_input_set_down_box(FILE_INPUT i, int t) { + reinterpret_cast(i)->down_box(static_cast(t)); +} + +unsigned int fl_file_input_get_errorcolor(FILE_INPUT i) { + return reinterpret_cast(i)->errorcolor(); +} + +void fl_file_input_set_errorcolor(FILE_INPUT i, unsigned int t) { + reinterpret_cast(i)->errorcolor(t); +} + + -- cgit