Pages

Showing posts with label iconview. Show all posts
Showing posts with label iconview. Show all posts

Thursday, February 12, 2015

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


Read more »