ncurses_hide_panel

(PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Remove panel from the stack, making it invisible int ncurses_hide_panel ( resource $panel ) Parameters: panel This function is currently not documented; only its argument list is available.

ncurses_has_key

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Check for presence of a function key on terminal keyboard int ncurses_has_key ( int $keycode ) Parameters: keycode This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future release of P

ncurses_has_il

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Check for line insert- and delete-capabilities bool ncurses_has_il ( void ) Checks whether the terminal has insert- and delete-line-capabilities. Returns: Returns TRUE if the terminal has insert/delete-line capabilities, FALSE otherwise. This function is EXPERIMENTAL. The behaviour of this functio

ncurses_has_ic

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Check for insert- and delete-capabilities bool ncurses_has_ic ( void ) Checks whether the terminal has insert and delete capabilities. Returns: Returns TRUE if the terminal has insert/delete-capabilities, FALSE otherwise. This function is EXPERIMENTAL. The behaviour of this function, its name, and

ncurses_has_colors

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Checks if terminal has color capabilities bool ncurses_has_colors ( void ) Checks whether the terminal has color capabilities. This function can be used to write terminal-independent programs. ncurses must be initialized using ncurses_init() before calling this function. Returns: Return TRUE if the terminal has color capabilities, FAL

ncurses_halfdelay

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Put terminal into halfdelay mode int ncurses_halfdelay ( int $tenth ) Parameters: tenth This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future release of PHP. This function should be

ncurses_getyx

(PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Returns the current cursor position for a window void ncurses_getyx ( resource $window, int &$y, int &$x ) Parameters: window y x This function is currently not documented; only its argument l

ncurses_getmouse

(PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Reads mouse event bool ncurses_getmouse ( array &$mevent ) ncurses_getmouse() reads mouse event out of queue. Parameters: mevent Event options will be delivered in this parameter which has to be an array, passed by reference (see example below). On success an associative array with following keys will b

ncurses_getmaxyx

(PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Returns the size of a window void ncurses_getmaxyx ( resource $window, int &$y, int &$x ) Gets the horizontal and vertical size of the given window into the given variables. Variables must be passed as reference, so they are updated when the user changes the terminal size. Parameters: window The me

ncurses_getch

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Read a character from keyboard int ncurses_getch ( void ) This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future release of PHP. This function should be used at your own risk. This function is currently n