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_label.cpp | 95 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 body/c_fl_label.cpp (limited to 'body/c_fl_label.cpp') diff --git a/body/c_fl_label.cpp b/body/c_fl_label.cpp new file mode 100644 index 0000000..2200c51 --- /dev/null +++ b/body/c_fl_label.cpp @@ -0,0 +1,95 @@ + + +// Programmed by Jedidiah Barber +// Released into the public domain + + +#include +#include +#include "c_fl_label.h" + + + + +LABEL new_fl_label(const char * v, int f, int s, unsigned int h, int k, unsigned int p) { + Fl_Label *l = new Fl_Label; + l->value = v; + l->font = f; + l->size = s; + l->color = h; + l->align_ = p; + l->type = (uchar)k; + return l; +} + +void free_fl_label(LABEL l) { + delete static_cast(l); +} + + + + +void fl_label_set_value(LABEL l, const char * v) { + static_cast(l)->value = v; +} + +int fl_label_get_font(LABEL l) { + return static_cast(l)->font; +} + +void fl_label_set_font(LABEL l, int f) { + static_cast(l)->font = f; +} + +int fl_label_get_size(LABEL l) { + return static_cast(l)->size; +} + +void fl_label_set_size(LABEL l, int s) { + static_cast(l)->size = s; +} + +unsigned int fl_label_get_color(LABEL l) { + return static_cast(l)->color; +} + +void fl_label_set_color(LABEL l, unsigned int h) { + static_cast(l)->color = h; +} + +int fl_label_get_type(LABEL l) { + return (int)static_cast(l)->type; +} + +void fl_label_set_type(LABEL l, int k) { + static_cast(l)->type = (uchar)k; +} + +unsigned int fl_label_get_align(LABEL l) { + return static_cast(l)->align_; +} + +void fl_label_set_align(LABEL l, unsigned int p) { + static_cast(l)->align_ = p; +} + +void fl_label_set_image(LABEL l, void * i) { + static_cast(l)->image = static_cast(i); +} + +void fl_label_set_deimage(LABEL l, void * i) { + static_cast(l)->deimage = static_cast(i); +} + + + + +void fl_label_draw(LABEL l, int x, int y, int w, int h, unsigned int p) { + static_cast(l)->draw(x, y, w, h, p); +} + +void fl_label_measure(LABEL l, int &w, int &h) { + static_cast(l)->measure(w, h); +} + + -- cgit