def __init__(self, parent, message=""):
Gtk.Dialog.__init__(self, "Confirmation", parent, 0,
(Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL,
Gtk.STOCK_OK, Gtk.ResponseType.OK))
self.set_resizable(False)
self.get_content_area().add(Gtk.Label(message))
self.show_all()
评论列表
文章目录