views:

73

answers:

3

So I have noticed that things (for lack of a better word) like this alt text and alt text are just done in the console using special characters and changing their color. I know how to accomplish this on windows but how would I go about doing this in linux (I am using ubuntu if that matters)? Are there any predefined classes out there to help construct these textboxes?

+6  A: 

The first among the usual suspects would be ncurses. For C++, you probably ought to check out NDX++

Mark Johnson
+1 for brevity.
Jon Purdy
+3  A: 

If you just want to create simple standard widgets you may try dialog library, but if you need something more powerful then ncurses is your choice.

Zuljin
dialog library, exactly what I was looking for thanks!
Pieces
Complementing Zuljin's answer, you also have xdialog [http://xdialog.free.fr/] which is for X (duh)
jyzuz
+1  A: 

I see you already accepted an answer but I think Newt is exactly what you are looking for. Follow the link to the website to download.

Duck
Thanks, I'll check it out.
Pieces