2019-09-01 14:34:00 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
#
|
2019-09-09 10:46:52 +00:00
|
|
|
# ToolFill.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 ToolFill(Tool):
|
2019-09-01 14:34:00 +00:00
|
|
|
name = "Fill"
|
|
|
|
|
|
|
|
#
|
Initial canvas panel scrollbar implementation.
assets/text/TODO: updated.
libgui/GuiCanvasPanel.py:__init__(): provide self.winSize & call SetScrollRate().
libgui/GuiCanvasPanel.py:{_drawPatch,dispatch{DeltaPatches,Patch},onPanel{Input,LeaveWindow},resize,update}(): receive and/or pass viewRect.
libgui/GuiCanvasPanel.py:onPanelPaint(): updated.
libgui/GuiCanvasPanel.py:resize(): call SetVirtualSize().
libgui/GuiCanvasWxBackend.py:_{draw{Brush,Char}Patch,_get{Brush,Char}PatchColours,xlatePoint}(): updated.
libgui/GuiCanvasWxBackend.py:{draw{CursorMaskWithJournal,Patch},getDeviceContext,xlateEventPoint}(): receive and/or pass viewRect.
libgui/GuiCanvasWxBackend.py:getDeviceContext(): return ClientDC() if viewRect > (0, 0)
libgui/GuiCanvasWxBackend.py:onPanelPaintEvent(): blit subset of canvasBitmap into BufferedPaintDC() if viewRect > (0, 0).
libtools/Tool{,Circle,Fill,Line,Rect,Select{,Clone,Move},Text}.py: receive & pass viewRect to dispatchFn().
2019-09-09 10:30:25 +00:00
|
|
|
# onMouseEvent(self, event, atPoint, brushColours, brushSize, isDragging, isLeftDown, isRightDown, dispatchFn, eventDc, viewRect)
|
|
|
|
def onMouseEvent(self, event, atPoint, brushColours, brushSize, isDragging, isLeftDown, isRightDown, dispatchFn, eventDc, viewRect):
|
2019-09-03 16:58:50 +00:00
|
|
|
pointStack, pointsDone = [list(atPoint)], []
|
2019-09-07 08:39:26 +00:00
|
|
|
testColour = self.parentCanvas.canvas.map[atPoint[1]][atPoint[0]][0:2]
|
2019-09-01 14:34:00 +00:00
|
|
|
if isLeftDown or isRightDown:
|
|
|
|
if isRightDown:
|
|
|
|
brushColours = [brushColours[1], brushColours[0]]
|
|
|
|
while len(pointStack) > 0:
|
|
|
|
point = pointStack.pop()
|
2019-09-07 08:39:26 +00:00
|
|
|
pointCell = self.parentCanvas.canvas.map[point[1]][point[0]]
|
|
|
|
if (pointCell[0:2] == testColour) \
|
|
|
|
or ((pointCell[3] == " ") and (pointCell[1] == testColour[1])):
|
2019-09-01 14:34:00 +00:00
|
|
|
if not point in pointsDone:
|
Initial canvas panel scrollbar implementation.
assets/text/TODO: updated.
libgui/GuiCanvasPanel.py:__init__(): provide self.winSize & call SetScrollRate().
libgui/GuiCanvasPanel.py:{_drawPatch,dispatch{DeltaPatches,Patch},onPanel{Input,LeaveWindow},resize,update}(): receive and/or pass viewRect.
libgui/GuiCanvasPanel.py:onPanelPaint(): updated.
libgui/GuiCanvasPanel.py:resize(): call SetVirtualSize().
libgui/GuiCanvasWxBackend.py:_{draw{Brush,Char}Patch,_get{Brush,Char}PatchColours,xlatePoint}(): updated.
libgui/GuiCanvasWxBackend.py:{draw{CursorMaskWithJournal,Patch},getDeviceContext,xlateEventPoint}(): receive and/or pass viewRect.
libgui/GuiCanvasWxBackend.py:getDeviceContext(): return ClientDC() if viewRect > (0, 0)
libgui/GuiCanvasWxBackend.py:onPanelPaintEvent(): blit subset of canvasBitmap into BufferedPaintDC() if viewRect > (0, 0).
libtools/Tool{,Circle,Fill,Line,Rect,Select{,Clone,Move},Text}.py: receive & pass viewRect to dispatchFn().
2019-09-09 10:30:25 +00:00
|
|
|
dispatchFn(eventDc, False, [*point, brushColours[0], brushColours[0], 0, " "], viewRect)
|
2019-09-01 14:34:00 +00:00
|
|
|
if point[0] > 0:
|
|
|
|
pointStack.append([point[0] - 1, point[1]])
|
2019-09-07 08:39:26 +00:00
|
|
|
if point[0] < (self.parentCanvas.canvas.size[0] - 1):
|
2019-09-01 14:34:00 +00:00
|
|
|
pointStack.append([point[0] + 1, point[1]])
|
|
|
|
if point[1] > 0:
|
|
|
|
pointStack.append([point[0], point[1] - 1])
|
2019-09-07 08:39:26 +00:00
|
|
|
if point[1] < (self.parentCanvas.canvas.size[1] - 1):
|
2019-09-01 14:34:00 +00:00
|
|
|
pointStack.append([point[0], point[1] + 1])
|
|
|
|
pointsDone += [point]
|
|
|
|
|
|
|
|
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=120
|