Thread overview
Text UI for D?
Mar 20, 2015
DLearner
Mar 20, 2015
John Colvin
Mar 20, 2015
Suliman
Mar 20, 2015
Baz
Mar 20, 2015
H. S. Teoh
Mar 20, 2015
ketmar
March 20, 2015
Does D have a recommended package for this - like (n)curses for C?

March 20, 2015
On Friday, 20 March 2015 at 10:29:45 UTC, DLearner wrote:
> Does D have a recommended package for this - like (n)curses for C?

You could just use nurses: https://github.com/D-Programming-Deimos/ncurses
March 20, 2015
On Friday, 20 March 2015 at 10:29:45 UTC, DLearner wrote:
> Does D have a recommended package for this - like (n)curses for C?

http://stackoverflow.com/questions/29061809/tui-text-user-interface-for-d
March 20, 2015
On Friday, 20 March 2015 at 10:29:45 UTC, DLearner wrote:
> Does D have a recommended package for this - like (n)curses for C?

I cannot recommend it because i've just found the package, it like Pascal turbo vision but in D.

https://github.com/bbodi/dvision

A few years ago someine else started a similar project but i can't found the link, it's too old.
March 20, 2015
On Fri, Mar 20, 2015 at 10:29:44AM +0000, DLearner via Digitalmars-d-learn wrote:
> Does D have a recommended package for this - like (n)curses for C?

Try Adam Ruppe's excellent terminal.d -- I use it for my own TUI programs, and it's pretty good.

	https://github.com/adamdruppe/arsd/blob/master/terminal.d


T

-- 
LINUX = Lousy Interface for Nefarious Unix Xenophobes.
March 20, 2015
On Fri, 20 Mar 2015 10:29:44 +0000, DLearner wrote:

> Does D have a recommended package for this - like (n)curses for C?

most of the time you don't really need a full-blown UI, but something to control the terminal and draw frames. ;-) Adam's module does that.