mirror of
https://github.com/lalbornoz/roar.git
synced 2024-11-02 13:56:39 +00:00
f3140d4b3d
libcanvas/Canvas.py, libgui/GuiCanvasPanel.py: split from libcanvas/Canvas.py. libcanvas/CanvasImportStore.py:import{Ansi{Buffer,File},SauceFile}(): fixed (via spoke.) {libgui/Gui{CanvasInterface,Frame},libtools/Tool{Fill,Select,Text},roar}.py: updated. libgui/GuiCanvasWxBackend.py: merged from libcanvas/CanvasBackend.py.
54 lines
2.0 KiB
Python
54 lines
2.0 KiB
Python
#!/usr/bin/env python3
|
|
#
|
|
# ToolText.py -- XXX
|
|
# Copyright (c) 2018, 2019 Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
|
|
#
|
|
|
|
from Tool import Tool
|
|
import wx
|
|
|
|
class ToolText(Tool):
|
|
"""XXX"""
|
|
name = "Text"
|
|
|
|
#
|
|
# onKeyboardEvent(self, event, atPoint, brushColours, brushSize, keyChar, dispatchFn, eventDc): XXX
|
|
def onKeyboardEvent(self, event, atPoint, brushColours, brushSize, keyChar, dispatchFn, eventDc):
|
|
keyModifiers = event.GetModifiers()
|
|
if keyModifiers != wx.MOD_NONE \
|
|
and keyModifiers != wx.MOD_SHIFT:
|
|
return True
|
|
else:
|
|
if self.textColours == None:
|
|
self.textColours = brushColours.copy()
|
|
if self.textPos == None:
|
|
self.textPos = list(atPoint)
|
|
dispatchFn(eventDc, False, [*self.textPos, *self.textColours, 0, keyChar])
|
|
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 False
|
|
|
|
#
|
|
# onMouseEvent(self, event, atPoint, brushColours, brushSize, isDragging, isLeftDown, isRightDown, dispatchFn, eventDc): XXX
|
|
def onMouseEvent(self, event, atPoint, brushColours, brushSize, isDragging, isLeftDown, isRightDown, dispatchFn, eventDc):
|
|
if isLeftDown:
|
|
self.textColours, self.textPos = brushColours.copy(), list(atPoint)
|
|
elif isRightDown:
|
|
self.textColours, self.textPos = [brushColours[1], brushColours[0]], list(atPoint)
|
|
else:
|
|
if self.textColours == None:
|
|
self.textColours = brushColours.copy()
|
|
self.textPos = list(atPoint)
|
|
dispatchFn(eventDc, True, [*self.textPos, *self.textColours, 0, "_"])
|
|
|
|
# __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
|