2019-09-01 14:34:00 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
#
|
2019-09-08 16:08:04 +00:00
|
|
|
# ToolRect.py
|
2019-09-04 14:23:59 +00:00
|
|
|
# Copyright (c) 2018, 2019 Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
|
2019-09-01 14:34:00 +00:00
|
|
|
#
|
|
|
|
|
2019-09-03 16:58:50 +00:00
|
|
|
from Tool import Tool
|
2019-09-01 14:34:00 +00:00
|
|
|
|
2019-09-03 16:58:50 +00:00
|
|
|
class ToolRect(Tool):
|
2019-09-01 14:34:00 +00:00
|
|
|
name = "Rectangle"
|
|
|
|
|
|
|
|
#
|
2019-09-08 16:08:04 +00:00
|
|
|
# onMouseEvent(self, event, atPoint, brushColours, brushSize, isDragging, isLeftDown, isRightDown, dispatchFn, eventDc)
|
2019-09-01 14:34:00 +00:00
|
|
|
def onMouseEvent(self, event, atPoint, brushColours, brushSize, isDragging, isLeftDown, isRightDown, dispatchFn, eventDc):
|
|
|
|
brushColours = brushColours.copy()
|
|
|
|
if isLeftDown:
|
|
|
|
brushColours[1] = brushColours[0]
|
|
|
|
elif isRightDown:
|
|
|
|
brushColours[0] = brushColours[1]
|
|
|
|
else:
|
|
|
|
brushColours[1] = brushColours[0]
|
|
|
|
brushSize = brushSize.copy()
|
|
|
|
if brushSize[0] > 1:
|
|
|
|
brushSize[0] *= 2
|
|
|
|
for brushRow in range(brushSize[1]):
|
|
|
|
for brushCol in range(brushSize[0]):
|
|
|
|
patch = [atPoint[0] + brushCol, atPoint[1] + brushRow, *brushColours, 0, " "]
|
|
|
|
if isLeftDown or isRightDown:
|
|
|
|
dispatchFn(eventDc, False, patch); dispatchFn(eventDc, True, patch);
|
2019-09-06 08:29:45 +00:00
|
|
|
else:
|
2019-09-01 14:34:00 +00:00
|
|
|
dispatchFn(eventDc, True, patch)
|
|
|
|
|
|
|
|
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=120
|