Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
No way an Image can receive button press events without an EventBox. At least according to my C GTK3 documentation: developer.gnome.org/gtk3/3.4/GtkImage.html#GtkImage.description – ptomato Feb 18 at 20:28

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.