def show_about_dialog(self, widget):
about_dialog = gtk.AboutDialog()
about_dialog.set_destroy_with_parent(True)
about_dialog.set_icon_name("Evaluator-Centric and Extensible Logger v%s" % (__version__))
about_dialog.set_name('ECEL')
about_dialog.set_version(__version__)
about_dialog.set_comments(("ECEL was developed as the result of a collaborative research project between the US Army Research Laboratory and the University of Texas at El Paso."))
about_dialog.run()
about_dialog.destroy()
评论列表
文章目录