6
Shows the About dialog for the applet.
11
def show_about(parent):
12
about = gtk.AboutDialog()
14
about.set_authors(["Jason Conti <jason.conti@gmail.com>"])
15
about.set_comments("View recent notifications")
16
about.set_copyright(u"Copyright \xa9 2010 Jason Conti.")
17
#about.set_logo(gtk.gdk.pixbuf_new_from_file("/home/jconti/Projects/git/recent-notifications/icons/full_mailbox.svg"))
18
about.set_name("Recent Notifications")
19
about.set_version("1.0.0")
21
about.connect("response", lambda self, *args: self.destroy())
22
about.set_screen(parent.get_screen())