Emmanuele Bassi > Clutter > xs/ClutterListModel.xs

Download:
Clutter-1.002.tar.gz

Annotate this POD

CPAN RT

New  2
Open  2
View Bugs
Report a bug
Source  

SYNOPSIS ^

    my $model = Clutter::ListModel->new(
        # column type    column title
        'Glib::String',  'Full Name',
        'Glib::String',  'Address',
        'Glib::Uint',    'Age',
        'Glib::Boolean', 'Subscribed',
    );

DESCRIPTION ^

Clutter::ListModel is a Clutter::Model implementation provided by Clutter. Clutter::ListModel uses a bilanced binary tree internally for storing the values for each row, so it's optimized for insertion and look up operations.