DESCRIPTION

This module contains some atomic operations used by all Term::ReadLine::Zoid objects. It is intended as a base class.

At the very least, to child class needs to define a \*(C`default()\*(C' function to handle key bindings and a \*(C`draw()\*(C' function which in turn calls \*(C`print()\*(C'. Also the attributes \*(C`IN\*(C' and \*(C`OUT\*(C' should contain valid filehandles.

METHODS

\$1

Positions the cursor on screen, dimensions are 1-based. Clear screen. Set terminal title to $string. When using for example xterm\|(1) this is the window name. Returns the printable length of $string, not counting (some) ansi sequences. Methods for use in overload classes. Avoid using these methods from the application. Notify the user of an error or limit. Low level function used by readline. Calls \*(C`draw()\*(C' and \*(C`do_key()\*(C'. Method called by intervals while waiting for input, to be overloaded. Returns one key read from input (this is the named key, not the char when mapped). Execute a key, calls subroutine for a key binding or the default binding. If $key is undefined \*(C`read_key()\*(C' is called first. Do chars in $string like they were typed on the keyboard. Used for testing puposes and to make macros possible. If you give more then one argument, these are considered individual characters, use this to press named keys. Unshifts characters on the read buffer, arguments the same as \*(C`press()\*(C'. Returns a name for a character or character sequence. Returns the keybinding for $key in $mode, mode defaults to the current one. Bind a key name to a character, or a character sequence. All bindings of this kind are global (you're using only one keyboard, right ?). Recalculates the chr map, you need to call this after deleting from %chr_names. Low level function used by draw. Both arguments need to be array references.

BUGS

Undefined behaviour when the buffer has more lines then the terminal.

Please mail the author if you find any other bugs.

AUTHOR

Jaap Karssenberg || Pardus [Larus] <[email protected]>

Copyright (c) 2004 Jaap G Karssenberg. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

RELATED TO Term::ReadLine::Zoid::Base…

Term::ReadLine::Zoid