The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Wx::Perl::ListView::SimpleModel - virtual list control simple model class

DESCRIPTION

A simple model class for Wx::Perl::ListView.

METHODS

new

  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.

data

  my $data = $self->data;

Accessor for the model data.