def OnMenuHelpAboutMenu(self, event):
"""
This function is run when About is clicked on the menu. It calls
a standard About dialog window.
"""
info = wx.AboutDialogInfo()
info.Name = u"PAWS"
info.Version = Engine.Version
info.Copyright = u"© 1998–2016 Roger Plowman, Matthias C. Hormann"
info.Description = wordwrap(
u"Core Engine: v" + Engine.Version + u", "
u"Universe: v" + UniverseVersion + u"\n\n"
u"PAWS is the Python Adventure Writing System, "
u"a software to play and develop Interactive Fiction with. "
u"It was originally developed by Roger Plowman and continued "
u"in 2016 by Matthias C. Hormann, just for the fun of it.",
350, wx.ClientDC(self))
info.WebSite = (u"https://github.com/Moonbase59/PAWS", u"PAWS GitHub page")
info.Developers = [u"Roger Plowman", u"Kevin Russell", u"Matthias C. Hormann"]
info.License = wordwrap(
u"Please see the LICENSE file that came with the software.",
350, wx.ClientDC(self))
# show it
wx.AboutBox(info)
# event.Skip()
评论列表
文章目录