I'm trying to execute some code whenever the user clicks a Gtk.Image widget. Example code:
from gi.repository import Gtk, Gdk
def callback(*args):
print args
w= Gtk.Window()
w.connect('delete-event', Gtk.main_quit)
#w.set_events(Gdk.EventMask.BUTTON_PRESS_MASK)
i= Gtk.Image.new_from_file('image.png')
#i.set_events(Gdk.EventMask.BUTTON_PRESS_MASK)
i.connect('button-press-event', callback)
w.add(i)
w.show_all()
Gtk.main()
When I click the image, nothing happens; even if I uncomment the two ".set_events" lines. I can't figure out what's wrong with the code, since there's practically no documentation at all, so any help is appreciated.
Edit: I forgot to mention I tried putting a Gtk.EventBox around the Gtk.Image, but that didn't do anything either. According to the C gtk3 documentation, a Gtk.Image can receive a button-press-event, so I'd like to do this without a Gtk.EventBox.
Edit: I tried to put an EventBox around the Image again, and it works; even without any calls to ".set_events". I have no friggin' idea what's different from the first time I tried, and I still want to make this work without an EventBox.
Imagecan receive button press events without anEventBox. At least according to my C GTK3 documentation: developer.gnome.org/gtk3/3.4/GtkImage.html#GtkImage.description – ptomato Feb 18 at 20:28