2019-09-07 08:39:26 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
#
|
2019-09-10 08:14:12 +00:00
|
|
|
# RoarCanvasWindow.py
|
2019-09-07 08:39:26 +00:00
|
|
|
# Copyright (c) 2018, 2019 Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
|
|
|
|
#
|
|
|
|
|
2019-09-10 08:14:12 +00:00
|
|
|
from GuiWindow import GuiWindow
|
2019-09-12 10:49:53 +00:00
|
|
|
from ToolObject import ToolObject
|
|
|
|
import json, wx, sys
|
2019-09-13 18:20:26 +00:00
|
|
|
import time
|
2019-09-12 10:49:53 +00:00
|
|
|
|
|
|
|
class RoarCanvasWindowDropTarget(wx.TextDropTarget):
|
2019-09-15 11:57:41 +00:00
|
|
|
# {{{ done(self)
|
|
|
|
def done(self):
|
|
|
|
self.inProgress = False
|
|
|
|
# }}}
|
2019-09-12 10:49:53 +00:00
|
|
|
# {{{ OnDropText(self, x, y, data)
|
|
|
|
def OnDropText(self, x, y, data):
|
|
|
|
rc = False
|
2019-09-15 13:57:38 +00:00
|
|
|
if ((self.parent.commands.currentTool.__class__ != ToolObject) \
|
|
|
|
or (self.parent.commands.currentTool.toolState == self.parent.commands.currentTool.TS_NONE)) \
|
|
|
|
and (not self.inProgress):
|
2019-09-15 11:57:41 +00:00
|
|
|
try:
|
|
|
|
dropMap, dropSize = json.loads(data)
|
|
|
|
viewRect = self.parent.GetViewStart()
|
|
|
|
rectX, rectY = x - (x % self.parent.backend.cellSize[0]), y - (y % self.parent.backend.cellSize[1])
|
|
|
|
mapX, mapY = int(rectX / self.parent.backend.cellSize[0] if rectX else 0), int(rectY / self.parent.backend.cellSize[1] if rectY else 0)
|
|
|
|
mapPoint = [m + n for m, n in zip((mapX, mapY), viewRect)]
|
|
|
|
self.parent.commands.lastTool, self.parent.commands.currentTool = self.parent.commands.currentTool, ToolObject()
|
|
|
|
self.parent.commands.currentTool.setRegion(self.parent.canvas, mapPoint, dropMap, dropSize, external=True)
|
|
|
|
self.parent.commands.update(toolName=self.parent.commands.currentTool.name)
|
|
|
|
eventDc = self.parent.backend.getDeviceContext(self.parent.GetClientSize(), self.parent, viewRect)
|
|
|
|
self.parent.applyTool(eventDc, True, None, None, self.parent.brushPos, False, False, False, self.parent.commands.currentTool, viewRect)
|
|
|
|
rc = True; self.inProgress = True;
|
|
|
|
except:
|
|
|
|
with wx.MessageDialog(self.parent, "Error: {}".format(sys.exc_info()[1]), "", wx.OK | wx.OK_DEFAULT) as dialog:
|
|
|
|
dialogChoice = dialog.ShowModal()
|
2019-09-12 10:49:53 +00:00
|
|
|
return rc
|
|
|
|
# }}}
|
|
|
|
# {{{ __init__(self, parent)
|
|
|
|
def __init__(self, parent):
|
2019-09-15 11:57:41 +00:00
|
|
|
super().__init__(); self.inProgress, self.parent = False, parent;
|
2019-09-12 10:49:53 +00:00
|
|
|
# }}}
|
2019-09-07 08:39:26 +00:00
|
|
|
|
2019-09-10 08:14:12 +00:00
|
|
|
class RoarCanvasWindow(GuiWindow):
|
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
|
|
|
# {{{ _drawPatch(self, eventDc, isCursor, patch, viewRect)
|
|
|
|
def _drawPatch(self, eventDc, isCursor, patch, viewRect):
|
2019-09-07 08:39:26 +00:00
|
|
|
if not self.canvas.dirtyCursor:
|
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
|
|
|
self.backend.drawCursorMaskWithJournal(self.canvas.journal, eventDc, viewRect)
|
2019-09-07 08:39:26 +00:00
|
|
|
self.canvas.dirtyCursor = True
|
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
|
|
|
if self.backend.drawPatch(eventDc, patch, viewRect) and isCursor:
|
2019-09-07 08:39:26 +00:00
|
|
|
patchDeltaCell = self.canvas.map[patch[1]][patch[0]]; patchDelta = [*patch[0:2], *patchDeltaCell];
|
|
|
|
self.canvas.journal.pushCursor(patchDelta)
|
|
|
|
# }}}
|
|
|
|
|
2019-09-10 08:14:12 +00:00
|
|
|
# {{{ applyTool(self, eventDc, eventMouse, keyChar, keyModifiers, mapPoint, mouseDragging, mouseLeftDown, mouseRightDown, tool, viewRect)
|
|
|
|
def applyTool(self, eventDc, eventMouse, keyChar, keyModifiers, mapPoint, mouseDragging, mouseLeftDown, mouseRightDown, tool, viewRect):
|
2019-09-13 19:09:51 +00:00
|
|
|
if mapPoint != None:
|
|
|
|
mapPoint = [a + b for a, b in zip(mapPoint, viewRect)]
|
libcanvas/Canvas.py:dispatchPatchSingle(): cloned from dispatchPatch().
lib{canvas/Canvas{,Journal},gui/GuiCanvasPanel}.py: replace dirtyJournal & pushDeltas() w/ explicit {begin,end}().
libgui/GuiCanvasPanel.py:applyTool(): updated.
libgui/GuiCanvasPanel.py:dispatchPatchSingle(): cloned from dispatchPatch().
libtools/Tool{,Circle,Fill,Line,Rect,Select{,Clone,Move},Text}.py:on{Mouse,Keyboard}Event(): return rc, dirty.
libtools/ToolSelect{Clone,Move}.py:onSelectEvent(): return rc, dirty.
2019-09-09 16:43:33 +00:00
|
|
|
dirty, self.canvas.dirtyCursor, rc = False, False, False
|
|
|
|
self.canvas.journal.begin()
|
2019-09-10 08:14:12 +00:00
|
|
|
if eventMouse:
|
2019-09-12 14:24:53 +00:00
|
|
|
if ((mapPoint[0] < self.canvas.size[0]) \
|
|
|
|
and (mapPoint[1] < self.canvas.size[1])) \
|
2019-09-13 18:20:26 +00:00
|
|
|
and ((self.lastCellState == None) \
|
|
|
|
or (self.lastCellState != [list(mapPoint), mouseDragging, mouseLeftDown, mouseRightDown, list(viewRect)])):
|
2019-09-12 14:24:53 +00:00
|
|
|
self.brushPos = list(mapPoint)
|
2019-09-13 18:20:26 +00:00
|
|
|
self.lastCellState = [list(mapPoint), mouseDragging, mouseLeftDown, mouseRightDown, list(viewRect)]
|
2019-09-15 19:33:19 +00:00
|
|
|
if tool != None:
|
|
|
|
rc, dirty = tool.onMouseEvent(self.brushColours, self.brushSize, self.canvas, self.dispatchPatchSingle, eventDc, keyModifiers, self.brushPos, mouseDragging, mouseLeftDown, mouseRightDown, viewRect)
|
|
|
|
else:
|
|
|
|
self.dispatchPatchSingle(eventDc, True, [*mapPoint, self.brushColours[0], self.brushColours[0], 0, " "] , viewRect)
|
2019-09-10 08:14:12 +00:00
|
|
|
else:
|
2019-09-15 19:33:19 +00:00
|
|
|
if tool != None:
|
|
|
|
rc, dirty = tool.onKeyboardEvent(self.brushColours, self.brushSize, self.canvas, self.dispatchPatchSingle, eventDc, keyChar, keyModifiers, self.brushPos, viewRect)
|
2019-09-16 06:05:50 +00:00
|
|
|
elif mapPoint != None:
|
2019-09-15 19:33:19 +00:00
|
|
|
self.dispatchPatchSingle(eventDc, True, [*mapPoint, self.brushColours[0], self.brushColours[0], 0, " "] , viewRect)
|
libcanvas/Canvas.py:dispatchPatchSingle(): cloned from dispatchPatch().
lib{canvas/Canvas{,Journal},gui/GuiCanvasPanel}.py: replace dirtyJournal & pushDeltas() w/ explicit {begin,end}().
libgui/GuiCanvasPanel.py:applyTool(): updated.
libgui/GuiCanvasPanel.py:dispatchPatchSingle(): cloned from dispatchPatch().
libtools/Tool{,Circle,Fill,Line,Rect,Select{,Clone,Move},Text}.py:on{Mouse,Keyboard}Event(): return rc, dirty.
libtools/ToolSelect{Clone,Move}.py:onSelectEvent(): return rc, dirty.
2019-09-09 16:43:33 +00:00
|
|
|
if dirty:
|
libgui/GuiCanvasInterface.py:canvasTool(): call applyTool() w/ new tool post-selection.
libgui/GuiCanvasPanel.py:{applyTool,onPanelInput}(): split from onPanelInput().
libtools/Tool{,Circle,Fill,Line,Rect,Select,Text}.py:on{Keyboard,Mouse}Event(): updated.
libtools/ToolFill.py:onMouseEvent(): display cursor.
libtools/ToolSelect{,Clone,Move}.py:onSelectEvent(): updated.
2019-09-09 16:18:54 +00:00
|
|
|
self.dirty = True
|
2019-09-10 10:06:56 +00:00
|
|
|
self.commands.update(dirty=self.dirty, cellPos=self.brushPos, undoLevel=self.canvas.journal.patchesUndoLevel)
|
2019-09-10 08:14:12 +00:00
|
|
|
else:
|
2019-09-10 10:06:56 +00:00
|
|
|
self.commands.update(cellPos=mapPoint if mapPoint else self.brushPos)
|
libcanvas/Canvas.py:dispatchPatchSingle(): cloned from dispatchPatch().
lib{canvas/Canvas{,Journal},gui/GuiCanvasPanel}.py: replace dirtyJournal & pushDeltas() w/ explicit {begin,end}().
libgui/GuiCanvasPanel.py:applyTool(): updated.
libgui/GuiCanvasPanel.py:dispatchPatchSingle(): cloned from dispatchPatch().
libtools/Tool{,Circle,Fill,Line,Rect,Select{,Clone,Move},Text}.py:on{Mouse,Keyboard}Event(): return rc, dirty.
libtools/ToolSelect{Clone,Move}.py:onSelectEvent(): return rc, dirty.
2019-09-09 16:43:33 +00:00
|
|
|
self.canvas.journal.end()
|
2019-09-15 13:57:38 +00:00
|
|
|
if rc and (tool.__class__ == ToolObject):
|
|
|
|
if tool.toolState > tool.TS_NONE:
|
|
|
|
self.commands.update(undoInhibit=True)
|
|
|
|
elif tool.toolState == tool.TS_NONE:
|
|
|
|
if tool.external:
|
|
|
|
self.dropTarget.done()
|
2019-09-16 06:05:50 +00:00
|
|
|
self.commands.currentTool, self.commands.lastTool = self.commands.lastTool, self.commands.currentTool
|
|
|
|
if self.commands.currentTool != None:
|
|
|
|
self.commands.update(toolName=self.commands.currentTool.name, undoInhibit=False)
|
|
|
|
else:
|
|
|
|
self.commands.update(toolName="Cursor", undoInhibit=False)
|
2019-09-15 13:57:38 +00:00
|
|
|
else:
|
|
|
|
self.commands.update(undoInhibit=False)
|
|
|
|
return rc
|
libgui/GuiCanvasInterface.py:canvasTool(): call applyTool() w/ new tool post-selection.
libgui/GuiCanvasPanel.py:{applyTool,onPanelInput}(): split from onPanelInput().
libtools/Tool{,Circle,Fill,Line,Rect,Select,Text}.py:on{Keyboard,Mouse}Event(): updated.
libtools/ToolFill.py:onMouseEvent(): display cursor.
libtools/ToolSelect{,Clone,Move}.py:onSelectEvent(): updated.
2019-09-09 16:18:54 +00:00
|
|
|
# }}}
|
2019-09-08 16:08:04 +00:00
|
|
|
# {{{ dispatchDeltaPatches(self, deltaPatches)
|
2019-09-07 08:39:26 +00:00
|
|
|
def dispatchDeltaPatches(self, deltaPatches):
|
2019-09-12 15:03:21 +00:00
|
|
|
viewRect = self.GetViewStart()
|
|
|
|
eventDc = self.backend.getDeviceContext(self.GetClientSize(), self, viewRect)
|
|
|
|
if self.canvas.dirtyCursor:
|
|
|
|
self.backend.drawCursorMaskWithJournal(self.canvas.journal, eventDc, viewRect)
|
|
|
|
self.canvas.dirtyCursor = False
|
2019-09-07 08:39:26 +00:00
|
|
|
for patch in deltaPatches:
|
|
|
|
if patch == None:
|
|
|
|
continue
|
|
|
|
elif patch[0] == "resize":
|
2019-09-11 06:28:56 +00:00
|
|
|
del eventDc; self.resize(patch[1:], False); eventDc = self.backend.getDeviceContext(self.GetClientSize(), self, self.GetViewStart());
|
2019-09-07 08:39:26 +00:00
|
|
|
else:
|
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
|
|
|
self.canvas._commitPatch(patch); self.backend.drawPatch(eventDc, patch, self.GetViewStart());
|
2019-09-07 08:39:26 +00:00
|
|
|
# }}}
|
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
|
|
|
# {{{ dispatchPatch(self, eventDc, isCursor, patch, viewRect)
|
|
|
|
def dispatchPatch(self, eventDc, isCursor, patch, viewRect):
|
2019-09-08 17:04:27 +00:00
|
|
|
if self.canvas.dispatchPatch(isCursor, patch, False if isCursor else True):
|
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
|
|
|
self._drawPatch(eventDc, isCursor, patch, viewRect)
|
2019-09-07 08:39:26 +00:00
|
|
|
# }}}
|
libcanvas/Canvas.py:dispatchPatchSingle(): cloned from dispatchPatch().
lib{canvas/Canvas{,Journal},gui/GuiCanvasPanel}.py: replace dirtyJournal & pushDeltas() w/ explicit {begin,end}().
libgui/GuiCanvasPanel.py:applyTool(): updated.
libgui/GuiCanvasPanel.py:dispatchPatchSingle(): cloned from dispatchPatch().
libtools/Tool{,Circle,Fill,Line,Rect,Select{,Clone,Move},Text}.py:on{Mouse,Keyboard}Event(): return rc, dirty.
libtools/ToolSelect{Clone,Move}.py:onSelectEvent(): return rc, dirty.
2019-09-09 16:43:33 +00:00
|
|
|
# {{{ dispatchPatchSingle(self, eventDc, isCursor, patch, viewRect)
|
|
|
|
def dispatchPatchSingle(self, eventDc, isCursor, patch, viewRect):
|
|
|
|
if self.canvas.dispatchPatchSingle(isCursor, patch, False if isCursor else True):
|
|
|
|
self._drawPatch(eventDc, isCursor, patch, viewRect)
|
|
|
|
# }}}
|
2019-09-08 16:08:04 +00:00
|
|
|
# {{{ resize(self, newSize, commitUndo=True)
|
2019-09-07 08:39:26 +00:00
|
|
|
def resize(self, newSize, commitUndo=True):
|
|
|
|
oldSize = [0, 0] if self.canvas.map == None else self.canvas.size
|
|
|
|
deltaSize = [b - a for a, b in zip(oldSize, newSize)]
|
|
|
|
if self.canvas.resize(newSize, commitUndo):
|
2019-09-10 08:14:12 +00:00
|
|
|
super().resize([a * b for a, b in zip(newSize, self.backend.cellSize)])
|
2019-09-07 08:39:26 +00:00
|
|
|
self.backend.resize(newSize, self.backend.cellSize)
|
2019-09-11 06:28:56 +00:00
|
|
|
viewRect = self.GetViewStart(); eventDc = self.backend.getDeviceContext(self.GetClientSize(), self, viewRect);
|
2019-09-07 08:39:26 +00:00
|
|
|
if deltaSize[0] > 0:
|
|
|
|
for numRow in range(oldSize[1]):
|
|
|
|
for numNewCol in range(oldSize[0], newSize[0]):
|
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
|
|
|
self._drawPatch(eventDc, False, [numNewCol, numRow, 1, 1, 0, " "], viewRect)
|
2019-09-07 08:39:26 +00:00
|
|
|
if deltaSize[1] > 1:
|
|
|
|
for numNewRow in range(oldSize[1], newSize[1]):
|
|
|
|
for numNewCol in range(newSize[0]):
|
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
|
|
|
self._drawPatch(eventDc, False, [numNewCol, numNewRow, 1, 1, 0, " "], viewRect)
|
2019-09-10 10:06:56 +00:00
|
|
|
self.commands.update(size=newSize, undoLevel=self.canvas.journal.patchesUndoLevel)
|
2019-09-07 08:39:26 +00:00
|
|
|
# }}}
|
2019-09-08 16:08:04 +00:00
|
|
|
# {{{ update(self, newSize, commitUndo=True, newCanvas=None)
|
2019-09-07 08:39:26 +00:00
|
|
|
def update(self, newSize, commitUndo=True, newCanvas=None):
|
|
|
|
self.resize(newSize, commitUndo)
|
|
|
|
self.canvas.update(newSize, newCanvas)
|
2019-09-11 06:28:56 +00:00
|
|
|
eventDc = self.backend.getDeviceContext(self.GetClientSize(), self, self.GetViewStart())
|
2019-09-07 08:39:26 +00:00
|
|
|
for numRow in range(newSize[1]):
|
|
|
|
for numCol in range(newSize[0]):
|
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
|
|
|
self.backend.drawPatch(eventDc, [numCol, numRow, *self.canvas.map[numRow][numCol]], self.GetViewStart())
|
2019-09-07 08:39:26 +00:00
|
|
|
# }}}
|
|
|
|
|
2019-09-10 08:14:12 +00:00
|
|
|
# {{{ onKeyboardInput(self, event)
|
|
|
|
def onKeyboardInput(self, event):
|
2019-09-15 19:33:19 +00:00
|
|
|
keyCode, keyModifiers = event.GetKeyCode(), event.GetModifiers()
|
|
|
|
viewRect = self.GetViewStart(); eventDc = self.backend.getDeviceContext(self.GetClientSize(), self, viewRect);
|
|
|
|
if (keyCode == wx.WXK_PAUSE) \
|
|
|
|
and (keyModifiers == wx.MOD_SHIFT):
|
2019-09-15 13:17:27 +00:00
|
|
|
import pdb; pdb.set_trace()
|
2019-09-15 19:33:19 +00:00
|
|
|
elif keyCode in (wx.WXK_DOWN, wx.WXK_LEFT, wx.WXK_RIGHT, wx.WXK_UP):
|
|
|
|
if (keyCode == wx.WXK_DOWN) and (self.brushPos[1] < (self.canvas.size[1] - 1)):
|
|
|
|
self.brushPos = [self.brushPos[0], self.brushPos[1] + 1]
|
|
|
|
elif (keyCode == wx.WXK_LEFT) and (self.brushPos[0] > 0):
|
|
|
|
self.brushPos = [self.brushPos[0] - 1, self.brushPos[1]]
|
|
|
|
elif (keyCode == wx.WXK_RIGHT) and (self.brushPos[0] < (self.canvas.size[0] - 1)):
|
|
|
|
self.brushPos = [self.brushPos[0] + 1, self.brushPos[1]]
|
|
|
|
elif (keyCode == wx.WXK_UP) and (self.brushPos[1] > 0):
|
|
|
|
self.brushPos = [self.brushPos[0], self.brushPos[1] - 1]
|
|
|
|
self.commands.update(cellPos=self.brushPos)
|
|
|
|
self.applyTool(eventDc, True, None, None, self.brushPos, False, False, False, self.commands.currentTool, viewRect)
|
2019-09-15 13:17:27 +00:00
|
|
|
else:
|
2019-09-15 19:33:19 +00:00
|
|
|
if not self.applyTool(eventDc, False, chr(event.GetUnicodeKey()), keyModifiers, None, None, None, None, self.commands.currentTool, viewRect):
|
2019-09-15 13:17:27 +00:00
|
|
|
event.Skip()
|
2019-09-07 08:39:26 +00:00
|
|
|
# }}}
|
2019-09-12 14:24:53 +00:00
|
|
|
# {{{ onEnterWindow(self, event)
|
|
|
|
def onEnterWindow(self, event):
|
2019-09-13 18:20:26 +00:00
|
|
|
self.lastCellState = None
|
2019-09-12 14:24:53 +00:00
|
|
|
# }}}
|
2019-09-10 08:14:12 +00:00
|
|
|
# {{{ onLeaveWindow(self, event)
|
|
|
|
def onLeaveWindow(self, event):
|
Implements merged object tool & flip operators.
assets/images/toolObject.png: added.
liboperators/Operator{,Flip{Horizontal,Vertical}}.py: initial implementation.
libroar/RoarCanvasCommands.py: adds RoarCanvasCommandsOperators.
libroar/RoarCanvasCommandsOperators.py: initial implementation.
libroar/Roar{CanvasCommands{,Tools},Client}.py: replaces ToolSelect{Clone,Move} w/ ToolObject.
libroar/RoarCanvasWindow.py:RoarCanvasWindowDropTarget.OnDropText(): update ToolObject() invocation.
libroar/RoarCanvasWindow.py:{applyTool,onMouseInput}(): pass keyModifiers to Tool.onMouseEvent().
libroar/RoarCanvasWindow.py:applyTool(): only switch back to lastTool if current object tool contains an external object.
libroar/RoarCanvasWindow.py:onLeaveWindow(): disable hiding cursor for now.
libtools/Tool{,Circle,Fill,Line,Rect,Text}.py:onMouseEvent(): update type signature.
libtools/Tool{Object,Select{,Clone,Move}}.py: merged into libtools/ToolObject.py.
roar.py: add liboperators to sys.path[].
assets/text/TODO: updated.
2019-09-15 09:06:25 +00:00
|
|
|
if False:
|
|
|
|
eventDc = self.backend.getDeviceContext(self.GetClientSize(), self, self.GetViewStart())
|
|
|
|
self.backend.drawCursorMaskWithJournal(self.canvas.journal, eventDc, self.GetViewStart())
|
2019-09-13 18:20:26 +00:00
|
|
|
self.lastCellState = None
|
2019-09-07 08:39:26 +00:00
|
|
|
# }}}
|
2019-09-10 08:14:12 +00:00
|
|
|
# {{{ onMouseInput(self, event)
|
|
|
|
def onMouseInput(self, event):
|
2019-09-11 06:28:56 +00:00
|
|
|
viewRect = self.GetViewStart(); eventDc = self.backend.getDeviceContext(self.GetClientSize(), self, viewRect);
|
2019-09-10 08:14:12 +00:00
|
|
|
mouseDragging, mouseLeftDown, mouseRightDown = event.Dragging(), event.LeftIsDown(), event.RightIsDown()
|
|
|
|
mapPoint = self.backend.xlateEventPoint(event, eventDc, viewRect)
|
2019-09-15 11:52:44 +00:00
|
|
|
if mouseRightDown \
|
|
|
|
and (self.commands.currentTool.__class__ == ToolObject) \
|
|
|
|
and (self.commands.currentTool.toolState >= self.commands.currentTool.TS_SELECT):
|
|
|
|
self.popupEventDc = eventDc; self.PopupMenu(self.operatorsMenu); self.popupEventDc = None;
|
|
|
|
elif not self.applyTool(eventDc, True, None, event.GetModifiers(), mapPoint, mouseDragging, mouseLeftDown, mouseRightDown, self.commands.currentTool, viewRect):
|
2019-09-10 08:14:12 +00:00
|
|
|
event.Skip()
|
2019-09-07 08:39:26 +00:00
|
|
|
# }}}
|
2019-09-14 13:44:17 +00:00
|
|
|
# {{{ onMouseWheel(self, event)
|
|
|
|
def onMouseWheel(self, event):
|
|
|
|
if event.GetModifiers() == wx.MOD_CONTROL:
|
|
|
|
cd = +1 if event.GetWheelRotation() >= event.GetWheelDelta() else -1
|
|
|
|
newCellSize = [cs + cd for cs in self.backend.cellSize]
|
|
|
|
if (newCellSize[0] > 0) and (newCellSize[1] > 0):
|
|
|
|
self.backend.cellSize = newCellSize
|
|
|
|
super().resize([a * b for a, b in zip(self.canvas.size, self.backend.cellSize)])
|
|
|
|
self.backend.resize(self.canvas.size, self.backend.cellSize)
|
|
|
|
viewRect = self.GetViewStart(); eventDc = self.backend.getDeviceContext(self.GetClientSize(), self, viewRect);
|
|
|
|
for numRow in range(self.canvas.size[1]):
|
|
|
|
for numCol in range(len(self.canvas.map[numRow])):
|
|
|
|
self._drawPatch(eventDc, False, [numCol, numRow, *self.canvas.map[numRow][numCol]], viewRect)
|
|
|
|
else:
|
|
|
|
event.Skip()
|
|
|
|
# }}}
|
2019-09-10 08:14:12 +00:00
|
|
|
# {{{ onPaint(self, event)
|
|
|
|
def onPaint(self, event):
|
2019-09-14 09:33:13 +00:00
|
|
|
viewRect = self.GetViewStart()
|
|
|
|
eventDc = self.backend.getDeviceContext(self.GetClientSize(), self, viewRect)
|
|
|
|
self.backend.drawCursorMaskWithJournal(self.canvas.journal, eventDc, viewRect)
|
2019-09-15 10:58:39 +00:00
|
|
|
self.backend.onPaint(self.GetClientSize(), self, self.GetViewStart())
|
2019-09-09 17:03:14 +00:00
|
|
|
# }}}
|
2019-09-07 08:39:26 +00:00
|
|
|
|
|
|
|
#
|
2019-09-10 10:06:56 +00:00
|
|
|
# __init__(self, backend, canvas, cellSize, commands, parent, parentFrame, pos, scrollStep, size): initialisation method
|
|
|
|
def __init__(self, backend, canvas, cellSize, commands, parent, parentFrame, pos, scrollStep, size):
|
2019-09-15 14:54:19 +00:00
|
|
|
super().__init__(parent, pos, scrollStep)
|
|
|
|
self.size = size
|
2019-09-10 10:06:56 +00:00
|
|
|
self.backend, self.canvas, self.cellSize, self.commands, self.parentFrame = backend(self.size, cellSize), canvas, cellSize, commands(self, parentFrame), parentFrame
|
2019-09-13 18:20:26 +00:00
|
|
|
self.brushColours, self.brushPos, self.brushSize, self.dirty, self.lastCellState = [4, 1], [0, 0], [1, 1], False, None
|
2019-09-15 11:52:44 +00:00
|
|
|
self.popupEventDc = None
|
2019-09-12 10:49:53 +00:00
|
|
|
self.dropTarget = RoarCanvasWindowDropTarget(self)
|
|
|
|
self.SetDropTarget(self.dropTarget)
|
2019-09-14 13:44:17 +00:00
|
|
|
self.Bind(wx.EVT_MOUSEWHEEL, self.onMouseWheel)
|
2019-09-07 08:39:26 +00:00
|
|
|
|
2019-09-08 14:57:45 +00:00
|
|
|
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=120
|