<b>A ver quien me guia que no doy en el clavo:</b><br><br><span style="color: rgb(153, 0, 0);">...</span><br><span style="color: rgb(153, 0, 0);">    self.liststore = gtk.ListStore(str)</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">    self.treeview = gtk.TreeView()</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    treeselection = self.treeview.get_selection()</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">    treeselection.set_mode(gtk.SELECTION_SINGLE)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    self.treeview.connect(&quot;row-activated&quot;, self.open_file)</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">    self.treeview.set_model(self.liststore)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    self.treeview.append_column(gtk.TreeViewColumn(&#39;Tu música&#39;, gtk.CellRendererText(), text=0))</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">    self.viewportderecho.add_with_viewport(self.treeview)</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    self.viewportderecho.show_all()</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">    self.treeview.show_all()</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    for archivo in self.listadereproduccion:</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">        if os.path.isfile(archivo):</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">            nombre_de_archivo = os.path.basename(archivo)</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">            self.liststore.append([nombre_de_archivo])</span><br><span style="color: rgb(153, 0, 0);">...</span><br><br><b>¿Cómo hago para itinerar sobre el las filas en el treeview?</b>