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


Wx-Perl-ListView documentation Contained in the Wx-Perl-ListView distribution.

Index


Code 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 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;