ncurses terminal size

40,812

Solution 1

void getmaxyx(WINDOW *win, int y, int x); i believe...

also, this may help...

Getting terminal width in C?

Solution 2

ncurses applications normally handle SIGWINCH and use the ioctl with TIOCGWINSZ to obtain the system's notion of the screensize. That may be overridden by the environment variables LINES and COLUMNS (see use_env).

Given that, the ncurses global variables LINES and COLS are updated as a side-effect when wgetch returns KEY_RESIZE (in response to a SIGWINCH) to give the size of stdscr (the standard screen representing the whole terminal).

You can of course use getmaxx, getmaxy and getmaxyx to get one or both of the limits for the x- and y-ordinates of a window. Only the last is standard (and portable).

Further reading:

Solution 3

i'm using this code:

struct winsize size;
if (ioctl(0, TIOCGWINSZ, (char *) &size) < 0)
    printf("TIOCGWINSZ error");
printf("%d rows, %d columns\n", size.ws_row, size.ws_col);

Solution 4

the variables COLS, LINES are initialized to the screen sizes after initscr().

Source: NCURSES Programming HOWTO

I'm not sure if they get updated on resize though.

Solution 5

What about using SCR_H and SCR_W?

Share:
40,812
Eclipse
Author by

Eclipse

Updated on July 09, 2022

Comments

  • Eclipse
    Eclipse almost 2 years

    How do I find the terminal width & height of an ncurses application?

  • asveikau
    asveikau over 14 years
    Also: Don't forget that some operating systems have SIGWINCH which your process receives when the terminal is resized...
  • jiandingzhe
    jiandingzhe over 9 years
    initscr() will clear screen. Is there any way which can get terminal size and don't clear screen?
  • einpoklum
    einpoklum over 8 years
    That's not very ncurses'ish.
  • Karim Manaouil
    Karim Manaouil almost 7 years
    Not sure this is true because y & x are not pointers and therefore the function will not copy anything to them. And from mkssoftware.com : "getbegyx() and getmaxyx() macros store the current beginning coordinates and size of the specified window."
  • Shelby Oldfield
    Shelby Oldfield almost 7 years
    @afr0ck As your quote states, those are all macros, so y and x do not need to be pointers. The macro works directly on the given variables, with no copy-assignment or pointers needed.
  • Hurukan Imperial Stepper
    Hurukan Imperial Stepper about 2 years
    Yes I used to... until I try to redirect or use a IDE like Netbeans... in those cases, the file descriptor must be changed (in case of redirecting from stdin, use STDOUT_FILENO; and using a IDE it's tricky when debugging/stepping you MUST have the "output" window opened).