summaryrefslogtreecommitdiff
path: root/src/c_fl_slider.h
blob: c06f20985bb2228d4b728dbdfb28b3044f2a5a49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37


#ifndef FL_SLIDER_GUARD
#define FL_SLIDER_GUARD




typedef void* SLIDER;




extern "C" void slider_set_draw_hook(SLIDER s, void * d);
extern "C" void fl_slider_draw(SLIDER s);
extern "C" void slider_set_handle_hook(SLIDER s, void * h);
extern "C" int fl_slider_handle(SLIDER s, int e);




extern "C" SLIDER new_fl_slider(int x, int y, int w, int h, char* label);
extern "C" void free_fl_slider(SLIDER s);




extern "C" void fl_slider_set_bounds(SLIDER s, double a, double b);
extern "C" int fl_slider_get_slider(SLIDER s);
extern "C" void fl_slider_set_slider(SLIDER s, int t);
extern "C" float fl_slider_get_slider_size(SLIDER s);
extern "C" void fl_slider_set_slider_size(SLIDER s, float t);
extern "C" int fl_slider_scrollvalue(SLIDER s, int p, int z, int f, int t);


#endif