def create_statistics_config(self):
it, page_vbox = self.new_page_box(None, _("Statistics"))
box, category_vbox = gu.hig_category_vbox(_("Statistics from 3.15 and older"))
page_vbox.pack_start(box, False, False, 0)
self.g_old_stat_info = Gtk.Label()
self.g_old_stat_info.set_line_wrap(True)
self.g_old_stat_info.set_alignment(0.0, 0.5)
category_vbox.pack_start(self.g_old_stat_info, False, False, 0)
###
self.g_delete_old_statistics = Gtk.Button(stock=Gtk.STOCK_DELETE)
self.g_delete_old_statistics.connect('clicked', self.delete_obsolete_statistics)
category_vbox.pack_start(self.g_delete_old_statistics, False, False, 0)
box, category_vbox = gu.hig_category_vbox(_("Statistics"))
page_vbox.pack_start(box, False, False, 0)
self.g_stat_info = Gtk.Label()
self.g_stat_info.set_line_wrap(True)
self.g_stat_info.set_alignment(0.0, 0.5)
category_vbox.pack_start(self.g_stat_info, False, False, 0)
b = Gtk.Button(stock=Gtk.STOCK_DELETE)
b.connect('clicked', self.delete_statistics)
category_vbox.pack_start(b, False, False, 0)
self.update_statistics_info()
self.update_old_statistics_info()
评论列表
文章目录