newt_refresh

(PECL newt >= 0.1) Updates modified portions of the screen void newt_refresh ( void ) To increase performance, newt only updates the display when it needs to, not when the program tells it to write to the terminal. Applications can force newt to immediately update modified portions of the screen by calling this function. Returns: No value is returned.

newt_resize_screen

(PECL newt >= 0.1) void newt_resize_screen ([ bool $redraw ] ) Parameters: redraw Returns: No value is returned. This function is currently not documented; only its argument list is available.

newt_resume

(PECL newt >= 0.1) Resume using the newt interface after calling newt_suspend() void newt_resume ( void ) Resume using the newt interface after calling newt_suspend(). Returns: No value is returned. See also: newt_suspend() -

newt_run_form

(PECL newt >= 0.1) Runs a form resource newt_run_form ( resource $form ) This function runs the form passed to it. Parameters: form Form component Returns: The component which caused the form to stop running. Note: Notice that this function doesn't fit in with newt's normal naming convention. It is an older interface which will not work fo

newt_scale_set

(PECL newt >= 0.1) void newt_scale_set ( resource $scale, int $amount ) Parameters: scale amount Returns: No value is returned. This function is currently not documented; only its argument list is available.

newt_scale

(PECL newt >= 0.1) resource newt_scale ( int $left, int $top, int $width, int $full_value ) Parameters: left top width full_value Returns: This function is currently not documented; only its argument list is available.

newt_scrollbar_set

(PECL newt >= 0.1) void newt_scrollbar_set ( resource $scrollbar, int $where, int $total ) Parameters: scrollbar where total Returns: No value is returned. This function is currently not documented; only its argument list is available.

newt_set_help_callback

(PECL newt >= 0.1) void newt_set_help_callback ( mixed $function ) Parameters: function Returns: No value is returned. This function is currently not documented; only its argument list is available.

newt_set_suspend_callback

(PECL newt >= 0.1) Set a callback function which gets invoked when user presses the suspend key void newt_set_suspend_callback ( callable $function, mixed $data ) Set a callback function which gets invoked when user presses the suspend key (normally ^Z). If no suspend callback is registered, the suspend keystroke is ignored. Parameters: function A callback function, w

newt_suspend

(PECL newt >= 0.1) Tells newt to return the terminal to its initial state void newt_suspend ( void ) Tells newt to return the terminal to its initial state. Once this is done, the application can suspend itself (by sending itself a SIGTSTP, fork a child program, or do whatever else it likes). Returns: No value is returned. See a