Wx::Perl::ListView::Model - virtual list control model class


Wx-Perl-ListView documentation  | view source Contained in the Wx-Perl-ListView distribution.

Index


NAME

Top

Wx::Perl::ListView::Model - virtual list control model class

DESCRIPTION

Top

An abstract base class for all models.

METHODS

Top

get_item

  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,
    }

get_item_count

  my $count = $model->get_item_count;

Returns the number of items in the model.


Wx-Perl-ListView documentation  | view source Contained in the Wx-Perl-ListView distribution.