diff options
Diffstat (limited to 'body/c_fl_value_slider.h')
-rw-r--r-- | body/c_fl_value_slider.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/body/c_fl_value_slider.h b/body/c_fl_value_slider.h new file mode 100644 index 0000000..b07a827 --- /dev/null +++ b/body/c_fl_value_slider.h @@ -0,0 +1,32 @@ + + +// Programmed by Jedidiah Barber +// Released into the public domain + + +#ifndef FL_VALUE_SLIDER_GUARD +#define FL_VALUE_SLIDER_GUARD + + +typedef void* VALUESLIDER; + + +extern "C" VALUESLIDER new_fl_value_slider(int x, int y, int w, int h, char* label); +extern "C" void free_fl_value_slider(VALUESLIDER s); + + +extern "C" unsigned int fl_value_slider_get_textcolor(VALUESLIDER s); +extern "C" void fl_value_slider_set_textcolor(VALUESLIDER s, unsigned int t); +extern "C" int fl_value_slider_get_textfont(VALUESLIDER s); +extern "C" void fl_value_slider_set_textfont(VALUESLIDER s, int t); +extern "C" int fl_value_slider_get_textsize(VALUESLIDER s); +extern "C" void fl_value_slider_set_textsize(VALUESLIDER s, int t); + + +extern "C" void fl_value_slider_draw(VALUESLIDER s); +extern "C" int fl_value_slider_handle(VALUESLIDER s, int e); + + +#endif + + |