GUI and non gui difference
as i know we have gui and non gui application today. but remember back in the old days there were many application thats kinda like half gui half not .
the applications are text based and it has no GUI like what we have now if we were to use java swing library or etc.
but you could pretty much select the area that you want using keyboard shortcut . pretty much looks like vim with more features.
basically it is text based but not fully gui
so my question is how did they do this ? to make the text output persistent and process the data as being inputed non sequentially (non gui typically inputs data non se开发者_开发知识库quentially)
One popular way to do this is to use ncurses
and/or its parent, curses
. (The n
in ncurses
is for "new", as in "new curses".)
I think you're looking for something like the curses library.
You mean like ncurses interfaces?
精彩评论