#include #include "c_fl_widget.h" int fl_widget_get_box(WIDGET w) { return reinterpret_cast(w)->box(); } void fl_widget_set_box(WIDGET w, int b) { reinterpret_cast(w)->box(static_cast(b)); } const char* fl_widget_get_label(WIDGET w) { return reinterpret_cast(w)->label(); } void fl_widget_set_label(WIDGET w, const char* t) { reinterpret_cast(w)->copy_label(t); } int fl_widget_get_label_font(WIDGET w) { return reinterpret_cast(w)->labelfont(); } void fl_widget_set_label_font(WIDGET w, int f) { reinterpret_cast(w)->labelfont(static_cast(f)); } int fl_widget_get_label_size(WIDGET w) { return reinterpret_cast(w)->labelsize(); } void fl_widget_set_label_size(WIDGET w, int s) { reinterpret_cast(w)->labelsize(static_cast(s)); } int fl_widget_get_label_type(WIDGET w) { return reinterpret_cast(w)->labeltype(); } void fl_widget_set_label_type(WIDGET w, int l) { reinterpret_cast(w)->labeltype(static_cast(l)); }