blob: 6c2184d53cbf9a16d378d084984613d19ec99752 [file] [log] [blame]
Arnaldo Carvalho de Melo34cea7f2010-08-08 19:56:47 -03001#include "../cache.h"
Namhyung Kim7da5c852012-11-13 22:30:31 +09002#include "../progress.h"
3#include "../libslang.h"
4#include "../ui.h"
5#include "../browser.h"
Arnaldo Carvalho de Melo34cea7f2010-08-08 19:56:47 -03006
Namhyung Kim688f2f52012-11-13 22:30:32 +09007static void tui_progress__update(u64 curr, u64 total, const char *title)
Arnaldo Carvalho de Melo34cea7f2010-08-08 19:56:47 -03008{
Arnaldo Carvalho de Meloca59bcb2011-10-25 13:29:11 -02009 int bar, y;
Arnaldo Carvalho de Melo34cea7f2010-08-08 19:56:47 -030010 /*
11 * FIXME: We should have a per UI backend way of showing progress,
12 * stdio will just show a percentage as NN%, etc.
13 */
14 if (use_browser <= 0)
15 return;
Arnaldo Carvalho de Melo34cea7f2010-08-08 19:56:47 -030016
Arnaldo Carvalho de Melo18b55232011-11-11 22:08:07 -020017 if (total == 0)
18 return;
19
Arnaldo Carvalho de Melo71172ed2011-10-25 13:45:16 -020020 ui__refresh_dimensions(true);
Arnaldo Carvalho de Meloca59bcb2011-10-25 13:29:11 -020021 pthread_mutex_lock(&ui__lock);
22 y = SLtt_Screen_Rows / 2 - 2;
23 SLsmg_set_color(0);
24 SLsmg_draw_box(y, 0, 3, SLtt_Screen_Cols);
25 SLsmg_gotorc(y++, 1);
26 SLsmg_write_string((char *)title);
27 SLsmg_set_color(HE_COLORSET_SELECTED);
28 bar = ((SLtt_Screen_Cols - 2) * curr) / total;
29 SLsmg_fill_region(y, 1, 1, bar, ' ');
30 SLsmg_refresh();
31 pthread_mutex_unlock(&ui__lock);
Arnaldo Carvalho de Melo34cea7f2010-08-08 19:56:47 -030032}
Namhyung Kim688f2f52012-11-13 22:30:32 +090033
34static struct ui_progress tui_progress_fns =
35{
36 .update = tui_progress__update,
37};
38
39void ui_progress__init(void)
40{
41 progress_fns = &tui_progress_fns;
42}