| Wx-Perl-ListView documentation | view source | Contained in the Wx-Perl-ListView distribution. |
Wx::Perl::ListView::SimpleModel - virtual list control simple model class
A simple model class for Wx::Perl::ListView.
my $model = Wx::Perl::ListView::SimpleModel->new( $data );
Where data has the form:
[ [ $item, $item, $item, ... ],
[ $item, $item, $item, ... ],
[ $item, $item, $item, ... ],
]
and each item is a valid return value for get_item.
my $data = $self->data;
Accessor for the model data.
| Wx-Perl-ListView documentation | view source | Contained in the Wx-Perl-ListView distribution. |