aboutsummaryrefslogtreecommitdiff
path: root/src/fltk_binding/c_fl_group.h
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-09-07 02:15:57 +1000
committerJed Barber <jjbarber@y7mail.com>2016-09-07 02:15:57 +1000
commit6e16a790b13ec50390c3b019598c1fa649f32c98 (patch)
tree2ce6f1b773b90c51e6b4dfc2974da6464b1bb29c /src/fltk_binding/c_fl_group.h
parent48f31d9f71523aa9cc027c16e5c8cd48ff1e792a (diff)
Now using widget user data to refer back to Ada side of things, will enable easy implementation of callbacks
Diffstat (limited to 'src/fltk_binding/c_fl_group.h')
-rw-r--r--src/fltk_binding/c_fl_group.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/fltk_binding/c_fl_group.h b/src/fltk_binding/c_fl_group.h
index ccd00e7..3c7a8fb 100644
--- a/src/fltk_binding/c_fl_group.h
+++ b/src/fltk_binding/c_fl_group.h
@@ -15,11 +15,14 @@ extern "C" void free_fl_group(GROUP g);
extern "C" void fl_group_end(GROUP g);
extern "C" void fl_group_add(GROUP g, WIDGET item);
-extern "C" void fl_group_clear(GROUP g);
+extern "C" int fl_group_find(GROUP g, WIDGET item);
extern "C" void fl_group_insert(GROUP g, WIDGET item, int place);
extern "C" void fl_group_remove(GROUP g, WIDGET item);
extern "C" void fl_group_remove2(GROUP g, int place);
+extern "C" int fl_group_children(GROUP g);
+extern "C" void * fl_group_child(GROUP g, int place);
+
#endif