diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-02-04 18:51:17 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-02-04 18:51:17 +1300 |
commit | befe66a0a98a58e0bdb31bb8c2db4a975a744072 (patch) | |
tree | 2bfb9099aa67b7f677ca5fe9785e8eb44a226792 /body/c_fl_scroll.h | |
parent | d9b29d2242b7384f4a9a0e7b424dd54fd9fcb740 (diff) |
Filled holes in Fl_Scroll binding
Diffstat (limited to 'body/c_fl_scroll.h')
-rw-r--r-- | body/c_fl_scroll.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/body/c_fl_scroll.h b/body/c_fl_scroll.h index 60cf9a0..17dec0f 100644 --- a/body/c_fl_scroll.h +++ b/body/c_fl_scroll.h @@ -32,6 +32,20 @@ extern "C" int fl_scroll_get_size(SCROLL s); extern "C" void fl_scroll_set_size(SCROLL s, int t); +extern "C" void fl_scroll_resize(SCROLL s, int x, int y, int w, int h); +extern "C" void fl_scroll_recalc_scrollbars(SCROLL s, + int &cb_x, int &cb_y, int &cb_w, int &cb_h, + int &ib_x, int &ib_y, int &ib_w, int &ib_h, + int &ic_x, int &ic_y, int &ic_w, int &ic_h, + int &chneed, int &cvneed, + int &hs_x, int &hs_y, int &hs_w, int &hs_h, + int &hs_size, int &hs_total, int &hs_first, int &hs_pos, + int &vs_x, int &vs_y, int &vs_w, int &vs_h, + int &vs_size, int &vs_total, int &vs_first, int &vs_pos, + int &ssize); + + +extern "C" void fl_scroll_bbox(SCROLL s, int &x, int &y, int &w, int &h); extern "C" void fl_scroll_draw(SCROLL s); extern "C" int fl_scroll_handle(SCROLL s, int e); |