mirror of
https://github.com/lalbornoz/roar.git
synced 2024-11-16 12:36:38 +00:00
Allow cancelling & setting object selection w/ <Esc>.
This commit is contained in:
parent
724b460be1
commit
0843b7d330
@ -101,6 +101,14 @@ class ToolObject(Tool):
|
|||||||
def getRegion(self, canvas):
|
def getRegion(self, canvas):
|
||||||
return self.objectMap
|
return self.objectMap
|
||||||
|
|
||||||
|
def onKeyboardEvent(self, atPoint, brushColours, brushPos, brushSize, canvas, dispatchFn, eventDc, keyChar, keyCode, keyModifiers, mapPoint):
|
||||||
|
rc, dirty = False, False
|
||||||
|
if ord(keyChar) == wx.WXK_ESCAPE:
|
||||||
|
dirty = self.onSelectEvent(canvas, (0, 0), dispatchFn, eventDc, False, keyModifiers, self.targetRect.copy(), self.targetRect)
|
||||||
|
self._drawSelectRect(self.targetRect, dispatchFn, eventDc)
|
||||||
|
self.objectMap, self.objectSize, self.targetRect, self.toolState = None, None, None, self.TS_NONE
|
||||||
|
return rc, dirty
|
||||||
|
|
||||||
def onMouseEvent(self, atPoint, brushColours, brushPos, brushSize, canvas, dispatchFn, eventDc, keyModifiers, mapPoint, mouseDragging, mouseLeftDown, mouseRightDown):
|
def onMouseEvent(self, atPoint, brushColours, brushPos, brushSize, canvas, dispatchFn, eventDc, keyModifiers, mapPoint, mouseDragging, mouseLeftDown, mouseRightDown):
|
||||||
dirty = False
|
dirty = False
|
||||||
if self.toolState == self.TS_NONE:
|
if self.toolState == self.TS_NONE:
|
||||||
|
Loading…
Reference in New Issue
Block a user