mirror of
https://github.com/lalbornoz/roar.git
synced 2024-11-02 13:56:39 +00:00
752af56774
assets/text/ImgurApiKey.py.template: updated from assets/text/MiRCARTImgurApiKey.py.template. librtl/IrcClient.py: minor cleanup.
26 lines
900 B
Python
26 lines
900 B
Python
#!/usr/bin/env python3
|
|
#
|
|
# Tool.py -- XXX
|
|
# Copyright (c) 2018, 2019 Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
|
|
#
|
|
|
|
class Tool():
|
|
"""XXX"""
|
|
parentCanvas = None
|
|
|
|
# {{{ onKeyboardEvent(self, event, atPoint, brushColours, brushSize, keyChar, dispatchFn, eventDc):
|
|
def onKeyboardEvent(self, event, atPoint, brushColours, brushSize, keyChar, dispatchFn, eventDc):
|
|
return True
|
|
# }}}
|
|
# {{{ onMouseEvent(self, event, atPoint, brushColours, brushSize, isDragging, isLeftDown, isRightDown, dispatchFn, eventDc): XXX
|
|
def onMouseEvent(self, event, atPoint, brushColours, brushSize, isDragging, isLeftDown, isRightDown, dispatchFn, eventDc):
|
|
return ()
|
|
# }}}
|
|
|
|
#
|
|
# __init__(self, parentCanvas): initialisation method
|
|
def __init__(self, parentCanvas):
|
|
self.parentCanvas = parentCanvas
|
|
|
|
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=120
|