Help for this page

Select Code to Download


  1. or download this
    my $model = Gtk3::ListStore->new('Glib::String');
    my $list = Gtk3::TreeView->new();
    ...
    $cell->set('editable'=>1);
    my $column = Gtk3::TreeViewColumn->new_with_attributes('name',$cell,'t
    +ext',$i);
    $list->append_column($column);
    
  2. or download this
    http://python-gtk-3-tutorial.readthedocs.org/en/latest/cellrenderers.h
    +tml#cellrenderertext
    
  3. or download this
    $list->set($iter,0,'edited text here');