Jan 21, 2013

HowTo: Select an item in perl Gtk2::IconView


You can get the iterator when you add / remove data on the liststore

$ls - is a liststore
$iter - is a iterator
$iv - is an iconview


my $path = $ls->get_path($iter);
$iv->select_path($path);


No comments:

Post a Comment