Raven
Raven

Reputation: 2257

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! :)

Upvotes: 9

Views: 956

Answers (3)

Baget
Baget

Reputation: 3344

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.

Upvotes: 3

CodeWeed
CodeWeed

Reputation: 1071

if you ou can get hold of an old borland C/C++ (v3.1 if I remember correctly or 6.0, I guess the former version). It has a framework to get just the same that you showed in your picture.

Upvotes: 0

Giuseppe Guerrini
Giuseppe Guerrini

Reputation: 4438

The cygwin suite should contain a complete port of ncurses.

Upvotes: 1

Related Questions