Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Library for Dialogs and Widgets in Win32 Console Application ( in C )

I've seen a lot of console apps (that run on windows) having some dialog boxes and widgets inside them. Say for example:

A there are a lot more. Now my question: Is there any library (in C) for creating dialogs and widgets in a Win32 Console App?

UPDATE: Seen pdcurses, but it lacks libraries from the real ncurses library like menu.h and form.h. So ss there any other that is easy to use? Thanks a bunch! :)

like image 446
Raven Avatar asked Jan 28 '12 14:01

Raven


2 Answers

you can use ncurses, please check the following question from stackoverflow.com: Is ncurses available for windows?

there is also PDCurses that support Win32

you can also use the old library Turbo vision, I have never tested it on win32.

like image 160
Baget Avatar answered Oct 19 '22 22:10

Baget


The cygwin suite should contain a complete port of ncurses.

like image 36
Giuseppe Guerrini Avatar answered Oct 19 '22 20:10

Giuseppe Guerrini