def __init__(self, db, icons, pkgname):
Gtk.HBox.__init__(self)
self.set_spacing(StockEms.SMALL)
self.set_border_width(2)
# data
self.app = Application("", pkgname)
self.app_details = self.app.get_details(db)
# checkbutton
self.checkbutton = Gtk.CheckButton()
self.checkbutton.pkgname = self.app.pkgname
self.pack_start(self.checkbutton, False, False, 12)
self.connect('realize', self._on_realize, icons, pkgname)
评论列表
文章目录