summaryrefslogtreecommitdiff
path: root/body/c_fl_multi_browser.h
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-01-21 21:04:54 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2025-01-21 21:04:54 +1300
commitb4438b2fbe895694be98e6e8426103deefc51448 (patch)
tree760d86cd7c06420a91dad102cc9546aee73146fc /body/c_fl_multi_browser.h
parenta4703a65b015140cd4a7a985db66264875ade734 (diff)
Split public API and private implementation files into different directories
Diffstat (limited to 'body/c_fl_multi_browser.h')
-rw-r--r--body/c_fl_multi_browser.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/body/c_fl_multi_browser.h b/body/c_fl_multi_browser.h
new file mode 100644
index 0000000..29d18ec
--- /dev/null
+++ b/body/c_fl_multi_browser.h
@@ -0,0 +1,48 @@
+
+
+// Programmed by Jedidiah Barber
+// Released into the public domain
+
+
+#ifndef FL_MULTI_BROWSER_GUARD
+#define FL_MULTI_BROWSER_GUARD
+
+
+typedef void* MULTIBROWSER;
+
+
+extern "C" MULTIBROWSER new_fl_multi_browser(int x, int y, int w, int h, char * label);
+extern "C" void free_fl_multi_browser(MULTIBROWSER b);
+
+
+// reimp below here
+
+extern "C" int fl_multi_browser_full_height(MULTIBROWSER c);
+extern "C" int fl_multi_browser_incr_height(MULTIBROWSER c);
+
+
+extern "C" int fl_multi_browser_item_width(MULTIBROWSER b, void * item);
+extern "C" int fl_multi_browser_item_height(MULTIBROWSER b, void * item);
+extern "C" void * fl_multi_browser_item_first(MULTIBROWSER b);
+extern "C" void * fl_multi_browser_item_last(MULTIBROWSER b);
+extern "C" void * fl_multi_browser_item_next(MULTIBROWSER b, void * item);
+extern "C" void * fl_multi_browser_item_prev(MULTIBROWSER b, void * item);
+extern "C" void * fl_multi_browser_item_at(MULTIBROWSER b, int index);
+extern "C" void fl_multi_browser_item_select(MULTIBROWSER b, void * item, int val=1);
+extern "C" int fl_multi_browser_item_selected(MULTIBROWSER b, void * item);
+extern "C" void fl_multi_browser_item_swap(MULTIBROWSER b, void * x, void * y);
+extern "C" const char * fl_multi_browser_item_text(MULTIBROWSER b, void * item);
+extern "C" void fl_multi_browser_item_draw(MULTIBROWSER b, void * item, int x, int y, int w, int h);
+
+
+extern "C" int fl_multi_browser_full_width(MULTIBROWSER c);
+extern "C" int fl_multi_browser_item_quick_height(MULTIBROWSER c, void * i);
+
+
+extern "C" void fl_multi_browser_draw(MULTIBROWSER b);
+extern "C" int fl_multi_browser_handle(MULTIBROWSER b, int e);
+
+
+#endif
+
+