![]() |
![]()
| ![]() |
![]()
NAMEPrima::DetailedOutline - a multi-column outline viewer with controlling header widget. SYNOPSISuse Prima qw(DetailedOutline Application); my $l = Prima::DetailedOutline->new( columns => 2, headers => [ 'Column 1', 'Column 2' ], size => [200, 100], items => [ [ ['Item 1, Col 1', 'Item 1, Col 2'], [ [ ['Item 1-1, Col 1', 'Item 1-1, Col 2'] ], [ ['Item 1-2, Col 1', 'Item 1-2, Col 2'], [ [ ['Item 1-2-1, Col 1', 'Item 1-2-1, Col 2'] ], ] ], ] ], [ ['Item 2, Col 1', 'Item 2, Col 2'], [ [ ['Item 2-1, Col 1', 'Item 2-1, Col 2'] ], ] ], ], ); $l-> sort(1); run Prima; my $l = Prima::DetailedOutline->new( style => 'triangle', ... ); DESCRIPTIONPrima::DetailedOutline combines the functionality of Prima::OutlineViewer and Prima::DetailedList. APIThis class inherits all the properties, methods, and events of Prima::OutlineViewer (primary ancestor) and Prima::DetailedList (secondary ancestor). One new property is introduced, and one property is different enough to warrant mention. Methods
COPYRIGHTCopyright 2003 Teo Sankaro This program is distributed under the BSD License. (Although a credit would be nice.) AUTHORTeo Sankaro, <teo_sankaro@hotmail.com>. SEE ALSOPrima, Prima::Outlines, Prima::DetailedList
|