| Wx-Perl-ListView documentation | Contained in the Wx-Perl-ListView distribution. |
Wx::Perl::ListView::Model - virtual list control model class
An abstract base class for all models.
my $item = $model->get_item( $row, $column );
Where item has the form (only string is mandatory):
{ string => 'text',
image => $image_index,
attr => $list_item_attribute,
foreground => $foreground_colour,
background => $background_colour,
font => $font,
}
my $count = $model->get_item_count;
Returns the number of items in the model.
| Wx-Perl-ListView documentation | Contained in the Wx-Perl-ListView distribution. |
package Wx::Perl::ListView::Model;
use strict;
sub get_item { my( $self, $row, $column ) = @_; die 'Implement me'; }
sub get_item_count { my( $self ) = @_; die 'Implement me'; } 1;