2019-09-10 10:06:56 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
#
|
|
|
|
# RoarCanvasCommandsHelp.py
|
|
|
|
# Copyright (c) 2018, 2019 Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
|
|
|
|
#
|
|
|
|
|
|
|
|
from GuiFrame import GuiCommandDecorator
|
|
|
|
from RoarWindowAbout import RoarWindowAbout
|
|
|
|
|
|
|
|
class RoarCanvasCommandsHelp():
|
|
|
|
# {{{ canvasAbout(self, event)
|
|
|
|
@GuiCommandDecorator("About", "&About", None, None, True)
|
|
|
|
def canvasAbout(self, event):
|
|
|
|
RoarWindowAbout(self.parentFrame)
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
#
|
|
|
|
# __init__(self)
|
|
|
|
def __init__(self):
|
2019-09-10 10:28:26 +00:00
|
|
|
self.menus, self.toolBars = (("&Help", self.canvasAbout,),), ()
|
2019-09-10 10:06:56 +00:00
|
|
|
|
|
|
|
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=0
|