From 59f03c5663d07f87993d682e7fd07b453fc19a11 Mon Sep 17 00:00:00 2001 From: "Gabriel A. Giovanini" Date: Wed, 14 Feb 2024 12:25:42 +0100 Subject: feat: Add spellfix extension --- ui.c | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'ui.c') diff --git a/ui.c b/ui.c index 8837bab..2e779e3 100644 --- a/ui.c +++ b/ui.c @@ -5,30 +5,11 @@ const char *uload = "█"; - PROGRESS_BAR* new_progress_bar(WINDOW* scr, float total) { PROGRESS_BAR *bar = (PROGRESS_BAR*)malloc(sizeof(PROGRESS_BAR)); bar->scr = scr; bar->total = total; bar->current = 0; - - int x, y; - int hx, hy; - - getmaxyx(scr, y, x); - - hx = x/2; - hy = y/2; - - wmove(scr, hy-1, 0); - wprintw(scr, uload); - - wmove(scr, hy, hx-4); - wprintw(scr, "000%%"); - - wmove(scr, hy+1, hx); - wprintw(scr, "%.0f/%.0f", 0.0, total); - return bar; } -- cgit v1.2.3