9

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

Shiplu Mokaddim
  • 56,364
  • 17
  • 141
  • 187
Raven
  • 2,187
  • 7
  • 35
  • 61

3 Answers3

2

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.

Community
  • 1
  • 1
Baget
  • 3,318
  • 1
  • 24
  • 44
1

The cygwin suite should contain a complete port of ncurses.

Lightness Races in Orbit
  • 378,754
  • 76
  • 643
  • 1,055
Giuseppe Guerrini
  • 4,274
  • 17
  • 32
0

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.

CodeWeed
  • 971
  • 2
  • 21
  • 40