mirror of
https://github.com/lalbornoz/roar.git
synced 2024-11-02 13:56:39 +00:00
0fe6899d05
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.
47 lines
1.7 KiB
Python
47 lines
1.7 KiB
Python
#!/usr/bin/env python3
|
|
#
|
|
# ToolText.py
|
|
# Copyright (c) 2018, 2019 Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
|
|
#
|
|
|
|
from Tool import Tool
|
|
import wx
|
|
|
|
class ToolText(Tool):
|
|
name = "Text"
|
|
|
|
#
|
|
# onKeyboardEvent(self, brushColours, brushSize, dispatchFn, eventDc, keyChar, keyModifiers, mapPoint, viewRect)
|
|
def onKeyboardEvent(self, brushColours, brushSize, dispatchFn, eventDc, keyChar, keyModifiers, mapPoint, viewRect):
|
|
dirty = False
|
|
if not keyModifiers in (wx.MOD_NONE, wx.MOD_SHIFT):
|
|
return False
|
|
else:
|
|
if self.textPos == None:
|
|
self.textPos = list(mapPoint)
|
|
if not dirty:
|
|
dirty = True
|
|
dispatchFn(eventDc, False, [*self.textPos, *brushColours, 0, keyChar], viewRect)
|
|
if self.textPos[0] < (self.parentCanvas.canvas.size[0] - 1):
|
|
self.textPos[0] += 1
|
|
elif self.textPos[1] < (self.parentCanvas.canvas.size[1] - 1):
|
|
self.textPos[0] = 0; self.textPos[1] += 1;
|
|
else:
|
|
self.textPos = [0, 0]
|
|
return True, dirty
|
|
|
|
#
|
|
# onMouseEvent(self, brushColours, brushSize, dispatchFn, eventDc, mapPoint, mouseDragging, mouseLeftDown, mouseRightDown, viewRect)
|
|
def onMouseEvent(self, brushColours, brushSize, dispatchFn, eventDc, mapPoint, mouseDragging, mouseLeftDown, mouseRightDown, viewRect):
|
|
if mouseLeftDown or mouseRightDown:
|
|
self.textPos = list(mapPoint)
|
|
dispatchFn(eventDc, True, [*mapPoint, *brushColours, 0, "_"], viewRect)
|
|
return True, False
|
|
|
|
# __init__(self, *args): initialisation method
|
|
def __init__(self, *args):
|
|
super().__init__(*args)
|
|
self.textColours = self.textPos = None
|
|
|
|
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=120
|