def showAbout(self, *args):
dia = gtk.AboutDialog()
dia.set_property('program-name', 'Micro:Pi')
dia.set_property('version', '0.0.1')
dia.set_property('copyright', '(c) Nathan Taylor 2016\nThe words "BBC" and "Micro:Bit" and the BBC Micro:Bit logo are all\ntrademarks of the BBC and I lay no claim to them.')
dia.set_property('website', 'http://bottersnike.github.io/Micro-Pi')
dia.set_property('comments', 'A pure python IDE for the BBC:MicroBit for C++')
dia.set_property('license', open('data", "LICENSE').read())
dia.show()
dia.run()
dia.destroy()
return False
评论列表
文章目录