summaryrefslogtreecommitdiff
path: root/src/c_fl_file_browser.h
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2024-12-22 21:21:51 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2024-12-22 21:21:51 +1300
commit28cbb294051d47a1dd0731333dd103132b6ae793 (patch)
treee47d1b8f0be8e549184455016ea51e3aafeff650 /src/c_fl_file_browser.h
parentc7e4f58a5fb0d62c4af3b82dabb1b52e72f99743 (diff)
Added Fl_File_Browser
Diffstat (limited to 'src/c_fl_file_browser.h')
-rw-r--r--src/c_fl_file_browser.h83
1 files changed, 83 insertions, 0 deletions
diff --git a/src/c_fl_file_browser.h b/src/c_fl_file_browser.h
new file mode 100644
index 0000000..3ab5c61
--- /dev/null
+++ b/src/c_fl_file_browser.h
@@ -0,0 +1,83 @@
+
+
+// Programmed by Jedidiah Barber
+// Released into the public domain
+
+
+#ifndef FL_FILE_BROWSER_GUARD
+#define FL_FILE_BROWSER_GUARD
+
+
+typedef void* FILEBROWSER;
+
+
+extern "C" FILEBROWSER new_fl_file_browser(int x, int y, int w, int h, char * label);
+extern "C" void free_fl_file_browser(FILEBROWSER b);
+
+
+extern "C" int fl_file_browser_load(FILEBROWSER b, const char * d, void * s);
+
+
+extern "C" int fl_file_browser_get_filetype(FILEBROWSER b);
+extern "C" void fl_file_browser_set_filetype(FILEBROWSER b, int f);
+extern "C" const char * fl_file_browser_get_filter(FILEBROWSER b);
+extern "C" void fl_file_browser_set_filter(FILEBROWSER b, const char * f);
+extern "C" unsigned char fl_file_browser_get_iconsize(FILEBROWSER b);
+extern "C" void fl_file_browser_set_iconsize(FILEBROWSER b, unsigned int i);
+extern "C" int fl_file_browser_get_textsize(FILEBROWSER b);
+extern "C" void fl_file_browser_set_textsize(FILEBROWSER b, int s);
+
+
+// reimp below here
+
+extern "C" int fl_file_browser_full_height(FILEBROWSER c);
+extern "C" int fl_file_browser_incr_height(FILEBROWSER c);
+
+
+extern "C" int fl_file_browser_item_width(FILEBROWSER b, void * item);
+extern "C" int fl_file_browser_item_height(FILEBROWSER b, void * item);
+extern "C" void * fl_file_browser_item_first(FILEBROWSER b);
+extern "C" void * fl_file_browser_item_last(FILEBROWSER b);
+extern "C" void * fl_file_browser_item_next(FILEBROWSER b, void * item);
+extern "C" void * fl_file_browser_item_prev(FILEBROWSER b, void * item);
+extern "C" void * fl_file_browser_item_at(FILEBROWSER b, int index);
+extern "C" void fl_file_browser_item_select(FILEBROWSER b, void * item, int val=1);
+extern "C" int fl_file_browser_item_selected(FILEBROWSER b, void * item);
+extern "C" void fl_file_browser_item_swap(FILEBROWSER b, void * x, void * y);
+extern "C" const char * fl_file_browser_item_text(FILEBROWSER b, void * item);
+extern "C" void fl_file_browser_item_draw(FILEBROWSER b, void * item, int x, int y, int w, int h);
+
+
+extern "C" int fl_file_browser_lineno(FILEBROWSER b, void * item);
+
+
+extern "C" void * fl_file_browser_selection(FILEBROWSER c);
+extern "C" int fl_file_browser_displayed2(FILEBROWSER c, void * i);
+extern "C" void * fl_file_browser_find_item(FILEBROWSER c, int y);
+extern "C" void * fl_file_browser_top(FILEBROWSER c);
+
+
+extern "C" void fl_file_browser_bbox(FILEBROWSER c, int &x, int &y, int &w, int &h);
+extern "C" int fl_file_browser_leftedge(FILEBROWSER c);
+extern "C" void fl_file_browser_redraw_line(FILEBROWSER c, void * i);
+extern "C" void fl_file_browser_redraw_lines(FILEBROWSER c);
+
+
+extern "C" int fl_file_browser_full_width(FILEBROWSER c);
+extern "C" int fl_file_browser_item_quick_height(FILEBROWSER c, void * i);
+
+
+extern "C" void fl_file_browser_new_list(FILEBROWSER b);
+extern "C" void fl_file_browser_inserting(FILEBROWSER b, void * a1, void * a2);
+extern "C" void fl_file_browser_deleting(FILEBROWSER b, void * item);
+extern "C" void fl_file_browser_replacing(FILEBROWSER b, void * a1, void * a2);
+extern "C" void fl_file_browser_swapping(FILEBROWSER b, void * a1, void * a2);
+
+
+extern "C" void fl_file_browser_draw(FILEBROWSER b);
+extern "C" int fl_file_browser_handle(FILEBROWSER b, int e);
+
+
+#endif
+
+