I'm trying to create a terminal-based backup program and I'm looking for some C++ code that creates a text-based progress bar. I understand you can implement it yourself with \b but I thought I'd see if there is any well-built implementations already. My favourite implementation of a text-based progress bar is pacman's progress bar on arch linux.

My project is created with C++ (Qt4).

link|improve this question

80% accept rate
try ncurses that's a really good library for this, not sure if it has the exact type of bar you want – Jesus Ramos Aug 5 '11 at 2:12
@Jesus Ramos, I'm not sure about ncurses; once you use it a small amount, your entire project is an ncurses project. It doesn't co-exist well with std input's and output's – Will03uk Aug 5 '11 at 2:18
feedback

1 Answer

The Boost Timer library has a progress timer display.

link|improve this answer
It looks promising, but a progress bar that could fit on one line with possibly a label would be perfect; It's good but for many different bars, can be a bit much – Will03uk Aug 5 '11 at 2:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.