Bonsoir,
J’aimerai pouvoir récupérer la valeur d’un widget de l’enfant d’une ListBox.
#!/usr/bin/python
# coding: utf-8
from gi.repository import Gtk
import pygame
class Lecteur(Gtk.Window):
def __init__(self):
''' Fonction de construction de l'interface '''
Gtk.Window.__init__(self, title="Test")
pygame.mixer.init()
box = Gtk.Box()
listbox = Gtk.ListBox()
addfile = Gtk.FileChooserButton()
listbox.insert(Gtk.Label("label test"), 0)
listbox.connect('row-activated', self.ecouter)
box.pack_start(listbox, True, True, 0)
box.pack_start(addfile, True, True, 0)
self.add(box)
window = Lecteur()
window.connect('delete-event', Gtk.main_quit)
window.set_border_width(10)
window.show_all()
Gtk.main()
Dans mon exemple, j’ai un label comme enfant de la listebox, et je voudrai récupérer la valeur du label justement. J’ai beau fouillé la doc et les forums je ne trouve pas grand-chose.
Je vous remercie.