I'd like to write an application (in C) that uses the terminal of a *nix OS as its GUI. I mean an application of the kinds of emacs, vi etc. that take up the whole terminal window and jump back to the input prompt after quitting.
How would you go about doing that, preferably in C? Can someone point me to a tutorial covering that?

link|improve this question

1  
you can use ncurses for that. – Niklas B. Dec 17 '11 at 18:41
1  
You could look at the ncurses library. – Oli Charlesworth Dec 17 '11 at 18:41
1  
Sounds like you want the ncurses library. – Amazed Dec 17 '11 at 18:41
feedback

4 Answers

up vote 3 down vote accepted

You need to use ncurses:

http://en.wikipedia.org/wiki/Ncurses
http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/

It is available on all major distros.

link|improve this answer
To sue? :p Nice typo :p – fge Dec 17 '11 at 18:48
:-), Did I just wrote it that way? lol – RedComet Dec 17 '11 at 18:57
feedback

Well, actually this is not GUI (graphic user interface) but a text based interface. You can use the library ncurses to create such applications in C.

link|improve this answer
feedback

Use a library like ncurses, it is specifically designed for this purpose.

link|improve this answer
feedback

Throwing in alternate solutions so that this question thread does not look so monotonic:

  • the slang library (mc uses it, for example)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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