ui_browser.h 506 B

12345678910111213141516171819202122232425262728
  1. #ifndef ui_browser_h
  2. #define ui_browser_h
  3. #include "ui/ui_rectangle.h"
  4. #include "ui/ui_text.h"
  5. #include "ui/ui_listbox.h"
  6. typedef struct {
  7. ui_rectangle* outer;
  8. ui_listbox* inner;
  9. fpath directory;
  10. bool active;
  11. } ui_browser;
  12. ui_browser* ui_browser_new();
  13. void ui_browser_delete(ui_browser* b);
  14. void ui_browser_chdir(ui_browser* b, fpath dir);
  15. void ui_browser_event(ui_browser* b, SDL_Event e);
  16. void ui_browser_update(ui_browser* b);
  17. void ui_browser_render(ui_browser* b);
  18. #endif