我正在编写Gtk应用程序。直到知道我一直在使用pygtk,但因为已经弃用了PyGobject,我决定进行切换。回到pygtk时,可以扩展gtk.GenericCellRenderer,但这个类不再存在。
我试图在python中找到使用新API但我失败的例子。任何人都可以展示我可以用作起点的自定义单元格渲染器的示例吗?
答案 0 :(得分:1)
显然Gtk +没有任何名为GtkGenericCellRenderer的类,是PyGtk独有的。 由于PyGObject绑定几乎与C API相同,因为内省技术,我建议使用GtkCellRenderer,存在于Gtk +中。
from gi.repository import Gtk
class MyCellRenderer(Gtk.CellRenderer):
def __init__(self):
Gtk.CellRenderer.__init__(self)