more compact progress display

Each progress can be on a single line instead of two.

[sp: Changed "Checking files out" to "Checking out files" at
     Johannes Sixt's suggestion as it better explains the
	 action that is taking place]

Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
This commit is contained in:
Nicolas Pitre
2007-10-16 21:55:45 -04:00
committed by Shawn O. Pearce
parent 207f1a75e7
commit 42e18fbf5f
6 changed files with 39 additions and 50 deletions

View File

@ -2,21 +2,19 @@
#define PROGRESS_H
struct progress {
const char *prefix;
const char *title;
int last_value;
unsigned total;
unsigned last_percent;
unsigned delay;
unsigned delayed_percent_treshold;
const char *delayed_title;
int need_lf;
};
int display_progress(struct progress *progress, unsigned n);
void start_progress(struct progress *progress, const char *title,
const char *prefix, unsigned total);
unsigned total);
void start_progress_delay(struct progress *progress, const char *title,
const char *prefix, unsigned total,
unsigned percent_treshold, unsigned delay);
unsigned total, unsigned percent_treshold, unsigned delay);
void stop_progress(struct progress *progress);
#endif