double t
current time (added for simulation)
unsigned long value
current value
Progressbar data structure (do not modify or create directly)
void progressbar_inc(progressbar *bar, double t)
Increment the given progressbar. Don't increment past the initialized # of steps, though.
unsigned long max
maximum value
time_t draw_time_interval
time interval between consecutive bar redraws (seconds)
time_t start
time progressbar was started
struct progressbar::@8 format
characters for the beginning, filling and end of the progressbar.
unsigned long prev_sample_value
value of the previous progress bar drawn in output
progressbar * progressbar_new(const char *label, unsigned long max)
Create a new progressbar with the specified label and number of steps.
progressbar * progressbar_new_with_format(const char *label, unsigned long max, const char *format)
Create a new progressbar with the specified label, number of steps, and format string.
void progressbar_finish(progressbar *bar)
Finalize (and free!) a progressbar.
unsigned long drawn_count
number of redrawn bars
time_t prev_t
time progressbar was drawn for last time
void progressbar_update(progressbar *bar, unsigned long value, double t)
Set the current status on the given progressbar.
void progressbar_free(progressbar *bar)
Free an existing progress bar. Don't call this directly; call progressbar_finish instead.
void progressbar_update_label(progressbar *bar, const char *label)
Set the label of the progressbar.