Merge with git+ssh://pasky.or.cz/srv/git/elinks.git
[elinks.git] / src / dialogs / progress.h
blob7c8f8a93151d8b6ee811bb6eca793223b9ffb794
1 #ifndef EL__DIALOGS_PROGRESS_H
2 #define EL__DIALOGS_PROGRESS_H
4 struct progress;
5 struct terminal;
7 unsigned char *
8 get_progress_msg(struct progress *progress, struct terminal *term,
9 int wide, int full, unsigned char *separator);
11 /* Draws a progress bar meter or progress coloured text depending on whether
12 * @text is NULL. If @meter_color is NULL dialog.meter color is used. */
13 void
14 draw_progress_bar(struct progress *progress, struct terminal *term,
15 int x, int y, int width,
16 unsigned char *text, struct color_pair *meter_color);
18 #endif