Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Haskell `ncurses` library

I would like to use a text-based UI in my Haskell program. I found some bindings for the ncurses library (see also hscurses or ncurses, which one to use?). The hscurses and nanocurses packages are just simple wrappers around the C library, while vty isn't very well documented and a bit ugly (for example mixing snake_case and CamelCase).

The ncurses library on Hackage looks much more pretty and provides API which nicely fits Haskell. The problem is that it doesn't seem to implement some crucial features, like resizing or refreshing the windows.

So my question is:

  • is there any other Haskell text UI library, either ncurses-based or not, which I missed?
  • if there isn't anyone, is it possible to extend the ncurses Haskell library to at least support window refreshing and resizing? (this should be probably consulted with the project owner, but I need the solution quickly)

EDIT:

I finally used nscurses without windows (and panels) to avoid the troubles with refreshing them. I had problems with output to bottom-right corner of a window (a very similar issue was reported for Python's ncurses binding). I solved it by not writing there :).

like image 635
Jan Špaček Avatar asked Mar 02 '13 15:03

Jan Špaček


3 Answers

Have you looked at vty-ui? It has a very nice user manual with lots of examples. I believe it's essentially a wrapper around vty.

like image 172
mhwombat Avatar answered Nov 06 '22 02:11

mhwombat


I've used nanoncurses and hscurses succesfully, my hmp3 app has a binding that was the basis for nanocurses.

No matter what you probably will want a nice high level API. hscurses does have a box abstraction at least.

You'd be fine going with hscurses.

like image 3
Don Stewart Avatar answered Nov 06 '22 02:11

Don Stewart


There is another good choice for Text-based user interfaces in haskell;

Brick is written by jtdaugherty, the same person that developed vty-ui which is Deprecated now.

The API is Declarative, which is Better for Presenting a language like Haskell. also the Documentation was great and complete.

like image 3
pouya Avatar answered Nov 06 '22 01:11

pouya