|
NAMEPrima::ExtLists - extended functionality for list boxes SYNOPSIS use Prima qw(ExtLists Application);
my $vec = '';
vec( $vec, 0, 8) = 0x55;
Prima::CheckList-> new(
items => [1..10],
vector => $vec,
);
run Prima;
DESCRIPTIONThe module is intended to be a collection of list boxes with particular enhancements. Currently the only package is contained is "Prima::CheckList" class. Prima::CheckListProvides a list box, where each item is equipped with a check box. The check box state can interactively be toggled by the enter key; also the list box reacts differently by click and double click. Properties
Methods
AUTHORDmitry Karasik, <dmitry@karasik.eu.org>. SEE ALSOPrima, Prima::Lists, examples/extlist.pl
|