Curses::Widgets is a base widget class for use with the Curses::Application framework.
SYNOPSIS
use Curses::Widgets;
$rv = test_colour();
test_color();
$colpr = select_colour($fore, $back);
$colpr = select_color($fore, $back);
$key = scankey($mwh);
@lines = textwrap($text, 40);
# The following are provided for use with descendent
# classes, and while they are not expected to be
# overridden, they can be.
$obj = Curses::Widgets->new({KEY => 'value'});
$obj->_copy($href1, $href2);
$obj->reset;
$obj->input($string);
$value = $obj->getField('VALUE');
$obj->setField(
'FIELD1' => 1,
'FIELD2' => 'value'
);
$obj->execute($mwh);
$obj->draw($mwh, 1);
@geom = $obj->_geometry;
@geom = $obj->_cgeometry;
$dwh = $obj->_canvas($mwh, @geom);
$obj->_save($mwh);
$obj->_restore($mwh);
$obj->_border($mwh);
$obj->_caption
# The following are provided for use with descendent
# classes, and are expected to be overridden.
$obj->_conf(%conf);
$obj->input_key($ch);
$obj->_content($mwh);
$obj->_cursor
Product's homepage
Requirements:
· Perl