ncurses_def_prog_mode

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Saves terminals (program) mode bool ncurses_def_prog_mode ( void ) Saves the current terminal modes for program (in curses) for use by ncurses_reset_prog_mode(). Returns: Returns FALSE on success, otherwise TRUE. This function is EXPERIMENTAL. The behaviour of this function, its name, and surroundi

ncurses_def_shell_mode

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Saves terminals (shell) mode bool ncurses_def_shell_mode ( void ) Saves the current terminal modes for shell (not in curses) for use by ncurses_reset_shell_mode(). Returns: Returns FALSE on success, TRUE otherwise. This function is EXPERIMENTAL. The behaviour of this function, its name, and surroun

ncurses_define_key

(PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Define a keycode int ncurses_define_key ( string $definition, int $keycode ) Parameters: definition keycode This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without noti

ncurses_del_panel

(PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Remove panel from the stack and delete it (but not the associated window) bool ncurses_del_panel ( resource $panel ) Parameters: panel This function is currently not documented; only its argument list is available.

ncurses_delay_output

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Delay output on terminal using padding characters int ncurses_delay_output ( int $milliseconds ) Parameters: milliseconds This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future relea

ncurses_delch

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Delete character at current position, move rest of line left bool ncurses_delch ( void ) Deletes the character under the cursor. All characters to the right of the cursor on the same line are moved to the left one position and the last character on the line is filled with a blank. The cursor position does not change. Returns: Returns

ncurses_deleteln

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Delete line at current position, move rest of screen up bool ncurses_deleteln ( void ) Deletes the current line under cursor position. All lines below the current line are moved up one line. The bottom line of window is cleared. Cursor position does not change. Returns: Returns FALSE on success, otherwise TRUE.

ncurses_delwin

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Delete a ncurses window bool ncurses_delwin ( resource $window ) Parameters: window 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 use

ncurses_doupdate

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Write all prepared refreshes to terminal bool ncurses_doupdate ( void ) Compares the virtual screen to the physical screen and updates the physical screen. This way is more effective than using multiple refresh calls. Returns: Returns TRUE on success or FALSE on failure. This function is EXPERIMEN

ncurses_echo

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Activate keyboard input echo bool ncurses_echo ( void ) Enables echo mode. All characters typed by user are echoed by ncurses_getch(). Returns: Returns FALSE on success, TRUE if any error occurred. This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentati