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:

committed by
Shawn O. Pearce

parent
207f1a75e7
commit
42e18fbf5f
10
progress.h
10
progress.h
@ -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
|
||||
|
Reference in New Issue
Block a user