text translated by google translator!
Friends some time ago that I am creating a program in pygtk. I had to use pygobject, because pygtk does not support css issues with that in vogue in Gnome 3.
Now I make a list of all the problems I noticed in GTK +3:
1 - gtk.itemfactory without support.
2 - Edge buttons with images in containers never decreases, making widgets parents are larger than normal.
3 - themes css does not support PNG images and do not apply to some widgets.
4 - does not have documentation or tutorials for all the widgets.
Code:
#!/usr/bin/python
from gi.repository import Gtk, Wnck
w = Gtk.Window()
w.connect("destroy", lambda w: Gtk.main_quit())
box = Gtk.Box()
p = Wnck.Pager()
b = Gtk.Button()
i = Gtk.Image()
i.set_from_icon_name("softwarecenter",Gtk.IconSize.LARGE_TOOLBAR)
b.add(i)
box.pack_start(p,False,False,0)
box.pack_start(b,False,False,0)
w.add(box)
w.show_all()
Gtk.main()