summaryrefslogtreecommitdiff
path: root/src/c_fl_group.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_fl_group.h')
-rw-r--r--src/c_fl_group.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/c_fl_group.h b/src/c_fl_group.h
new file mode 100644
index 0000000..9b58f8c
--- /dev/null
+++ b/src/c_fl_group.h
@@ -0,0 +1,29 @@
+
+
+#ifndef FL_GROUP_GUARD
+#define FL_GROUP_GUARD
+
+#include "c_fl_widget.h"
+
+
+typedef void* GROUP;
+
+
+extern "C" GROUP new_fl_group(int x, int y, int w, int h, char* label);
+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" 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" void fl_group_resizable(GROUP g, WIDGET item);
+
+extern "C" int fl_group_children(GROUP g);
+extern "C" void * fl_group_child(GROUP g, int place);
+
+
+#endif
+