rbaleksandar
rbaleksandar

Reputation: 9701

Layout support for ncurses?

As far as I know there is no such thing as a layout in ncurses however I am wondering if there isn't a third party extension which allows that.

I'm looking for support for the typical layouts such as horizontal, vertical and grid. Of course being able to automatically resize the "children" of a layout is a plus.

Upvotes: 1

Views: 332

Answers (1)

Thomas Dickey
Thomas Dickey

Reputation: 54524

no - the space available for characters is usually small enough that no one bothers with more than a few choices in fixed-layouts. Some applications resize, but use simple schemes for layout, e.g., all of the screen, half, etc.

Upvotes: 1

Related Questions