progress.c 745 B

1234567891011121314151617181920212223242526272829
  1. #include "../cache.h"
  2. #include "progress.h"
  3. #include "libslang.h"
  4. #include "ui.h"
  5. #include "browser.h"
  6. void ui_progress__update(u64 curr, u64 total, const char *title)
  7. {
  8. int bar, y;
  9. /*
  10. * FIXME: We should have a per UI backend way of showing progress,
  11. * stdio will just show a percentage as NN%, etc.
  12. */
  13. if (use_browser <= 0)
  14. return;
  15. ui__refresh_dimensions(true);
  16. pthread_mutex_lock(&ui__lock);
  17. y = SLtt_Screen_Rows / 2 - 2;
  18. SLsmg_set_color(0);
  19. SLsmg_draw_box(y, 0, 3, SLtt_Screen_Cols);
  20. SLsmg_gotorc(y++, 1);
  21. SLsmg_write_string((char *)title);
  22. SLsmg_set_color(HE_COLORSET_SELECTED);
  23. bar = ((SLtt_Screen_Cols - 2) * curr) / total;
  24. SLsmg_fill_region(y, 1, 1, bar, ' ');
  25. SLsmg_refresh();
  26. pthread_mutex_unlock(&ui__lock);
  27. }