2019-09-01 14:34:00 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
#
|
2019-09-08 16:08:04 +00:00
|
|
|
# ToolSelectClone.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 ToolSelect import ToolSelect
|
2019-09-01 14:34:00 +00:00
|
|
|
|
2019-09-03 16:58:50 +00:00
|
|
|
class ToolSelectClone(ToolSelect):
|
2019-09-01 14:34:00 +00:00
|
|
|
name = "Clone selection"
|
|
|
|
|
|
|
|
#
|
2019-09-08 16:08:04 +00:00
|
|
|
# onSelectEvent(self, disp, dispatchFn, eventDc, isCursor, newToolRect, selectRect)
|
2019-09-03 13:48:48 +00:00
|
|
|
def onSelectEvent(self, disp, dispatchFn, eventDc, isCursor, newToolRect, selectRect):
|
2019-09-01 14:34:00 +00:00
|
|
|
for numRow in range(len(self.toolSelectMap)):
|
|
|
|
for numCol in range(len(self.toolSelectMap[numRow])):
|
|
|
|
cellOld = self.toolSelectMap[numRow][numCol]
|
2019-09-03 13:48:48 +00:00
|
|
|
rectX, rectY = selectRect[0][0] + numCol, selectRect[0][1] + numRow
|
|
|
|
dispatchFn(eventDc, isCursor, [rectX + disp[0], rectY + disp[1], *cellOld])
|
2019-09-01 14:34:00 +00:00
|
|
|
|
|
|
|
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=120
|