tickit_term_get_size - Man Page

manage terminal size

Synopsis

#include <tickit.h>

void tickit_term_get_size(TickitTerm *tt, int *lines, int *cols);
void tickit_term_set_size(TickitTerm *tt, int lines, int cols);
void tickit_term_refresh_size(TickitTerm *tt);

Link with -ltickit.

Description

tickit_term_get_size() fetches the currently-known size of the terminal into the two integers supplied by pointers.

tickit_term_set_size() stores a new size for the terminal into the instance, and invokes any TICKIT_EV_RESIZE event handlers.

tickit_term_refresh_size() queries the size of the terminal by using the TIOCGWINSZ ioctl(2) call on the currently-associated output filehandle, and invokes any TICKIT_EV_RESIZE event handlers if the size has changed.

Return Value

tickit_term_get_size, tickit_term_set_size and tickit_term_refresh_size return no value.

See Also

tickit_term_build(3), tickit_term_goto(3), tickit_term_bind_event(3), tickit_term(7), tickit(7)

Referenced By

tickit_term(7), tickit_term_build(3), tickit_term_observe_sigwinch(3).

The man pages tickit_term_refresh_size(3) and tickit_term_set_size(3) are aliases of tickit_term_get_size(3).