2019-09-01 14:34:00 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
#
|
2019-09-09 10:46:52 +00:00
|
|
|
# GuiCanvasWxBackend.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-11 13:33:15 +00:00
|
|
|
from ctypes import *
|
2019-09-07 08:39:26 +00:00
|
|
|
from GuiCanvasColours import Colours
|
2019-09-13 08:03:39 +00:00
|
|
|
import math, os, platform, wx
|
2019-09-01 14:34:00 +00:00
|
|
|
|
2019-09-11 06:28:56 +00:00
|
|
|
class GuiBufferedDC(wx.MemoryDC):
|
|
|
|
# {{{ __del__(self)
|
|
|
|
def __del__(self):
|
|
|
|
self.dc.Blit(0, 0, *self.viewSize, self, 0, 0)
|
|
|
|
self.SelectObject(wx.NullBitmap)
|
|
|
|
# }}}
|
|
|
|
# {{{ __init__(self, backend, buffer, clientSize, dc, viewRect)
|
|
|
|
def __init__(self, backend, buffer, clientSize, dc, viewRect):
|
|
|
|
super().__init__()
|
|
|
|
canvasSize = [a - b for a, b in zip(backend.canvasSize, viewRect)]
|
|
|
|
clientSize = [math.ceil(m / n) for m, n in zip(clientSize, backend.cellSize)]
|
|
|
|
viewRect = [m * n for m, n in zip(backend.cellSize, viewRect)]
|
|
|
|
viewSize = [min(m, n) for m, n in zip(canvasSize, clientSize)]
|
|
|
|
viewSize = [m * n for m, n in zip(backend.cellSize, viewSize)]
|
|
|
|
bitmap = wx.Bitmap(viewSize); self.SelectObject(bitmap);
|
|
|
|
bufferDc = wx.MemoryDC(); bufferDc.SelectObject(buffer);
|
|
|
|
self.Blit(0, 0, *viewSize, bufferDc, *viewRect)
|
|
|
|
bufferDc.SelectObject(wx.NullBitmap)
|
|
|
|
self.dc, self.viewSize = dc, viewSize
|
|
|
|
# }}}
|
|
|
|
|
2019-09-07 08:39:26 +00:00
|
|
|
class GuiCanvasWxBackend():
|
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
|
|
|
# {{{ _drawBrushPatch(self, eventDc, patch, point)
|
|
|
|
def _drawBrushPatch(self, eventDc, patch, point):
|
|
|
|
absPoint = self._xlatePoint(point)
|
2019-09-08 14:57:45 +00:00
|
|
|
brushBg, brushFg, pen = self._getBrushPatchColours(patch)
|
2019-09-01 14:34:00 +00:00
|
|
|
self._setBrushDc(brushBg, brushFg, eventDc, pen)
|
|
|
|
eventDc.DrawRectangle(*absPoint, *self.cellSize)
|
|
|
|
# }}}
|
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
|
|
|
# {{{ _drawCharPatch(self, eventDc, patch, point)
|
|
|
|
def _drawCharPatch(self, eventDc, patch, point):
|
|
|
|
absPoint, fontBitmap = self._xlatePoint(point), wx.Bitmap(*self.cellSize)
|
2019-09-08 14:57:45 +00:00
|
|
|
brushBg, brushFg, pen = self._getCharPatchColours(patch)
|
2019-09-12 19:01:06 +00:00
|
|
|
fontDc = wx.MemoryDC(); fontDc.SelectObject(fontBitmap); fontDc.SetFont(self._font);
|
|
|
|
fontDc.SetBackground(brushBg); fontDc.SetBrush(brushFg); fontDc.SetPen(pen);
|
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
|
|
|
fontDc.SetTextForeground(wx.Colour(Colours[patch[0]][:4]))
|
|
|
|
fontDc.SetTextBackground(wx.Colour(Colours[patch[1]][:4]))
|
2019-09-12 09:26:17 +00:00
|
|
|
fontDc.DrawRectangle(0, 0, *self.cellSize)
|
|
|
|
if patch[3] == "_":
|
2019-09-12 19:01:06 +00:00
|
|
|
fontDc.SetPen(self._pens[patch[0]])
|
2019-09-12 09:26:17 +00:00
|
|
|
fontDc.DrawLine(0, self.cellSize[1] - 1, self.cellSize[0], self.cellSize[1] - 1)
|
|
|
|
else:
|
|
|
|
fontDc.DrawText(patch[3], 0, 0)
|
2019-09-01 14:34:00 +00:00
|
|
|
eventDc.Blit(*absPoint, *self.cellSize, fontDc, 0, 0)
|
|
|
|
# }}}
|
2019-09-08 16:08:04 +00:00
|
|
|
# {{{ _finiBrushesAndPens(self)
|
2019-09-01 14:34:00 +00:00
|
|
|
def _finiBrushesAndPens(self):
|
2019-09-06 08:29:45 +00:00
|
|
|
[brush.Destroy() for brush in self._brushes or []]
|
|
|
|
[pen.Destroy() for pen in self._pens or []]
|
|
|
|
self._brushes, self._lastBrushBg, self._lastBrushFg, self._lastPen, self._pens = None, None, None, None, None
|
2019-09-01 14:34:00 +00:00
|
|
|
# }}}
|
2019-09-08 16:08:04 +00:00
|
|
|
# {{{ _getBrushPatchColours(self, patch)
|
2019-09-08 14:57:45 +00:00
|
|
|
def _getBrushPatchColours(self, patch):
|
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 (patch[0] != -1) and (patch[1] != -1):
|
2019-09-12 09:26:17 +00:00
|
|
|
brushBg, brushFg, pen = self._brushes[patch[1]], self._brushes[patch[1]], self._pens[patch[1]]
|
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
|
|
|
elif (patch[0] == -1) and (patch[1] == -1):
|
2019-09-12 19:01:06 +00:00
|
|
|
brushBg, brushFg, pen = self._brushAlpha, self._brushAlpha, self._penAlpha
|
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
|
|
|
elif patch[0] == -1:
|
|
|
|
brushBg, brushFg, pen = self._brushes[patch[1]], self._brushes[patch[1]], self._pens[patch[1]]
|
|
|
|
elif patch[1] == -1:
|
2019-09-12 19:01:06 +00:00
|
|
|
brushBg, brushFg, pen = self._brushAlpha, self._brushAlpha, self._penAlpha
|
2019-09-08 14:57:45 +00:00
|
|
|
return (brushBg, brushFg, pen)
|
|
|
|
# }}}
|
2019-09-08 16:08:04 +00:00
|
|
|
# {{{ _getCharPatchColours(self, patch)
|
2019-09-08 14:57:45 +00:00
|
|
|
def _getCharPatchColours(self, patch):
|
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 (patch[0] != -1) and (patch[1] != -1):
|
2019-09-12 19:01:06 +00:00
|
|
|
brushBg, brushFg, pen = self._brushes[patch[1]], self._brushes[patch[1]], self._pens[patch[1]]
|
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
|
|
|
elif (patch[0] == -1) and (patch[1] == -1):
|
2019-09-12 19:01:06 +00:00
|
|
|
brushBg, brushFg, pen = self._brushAlpha, self._brushAlpha, self._penAlpha
|
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
|
|
|
elif patch[0] == -1:
|
|
|
|
brushBg, brushFg, pen = self._brushes[patch[1]], self._brushes[patch[1]], self._pens[patch[1]]
|
|
|
|
elif patch[1] == -1:
|
2019-09-12 19:01:06 +00:00
|
|
|
brushBg, brushFg, pen = self._brushAlpha, self._brushAlpha, self._penAlpha
|
2019-09-08 14:57:45 +00:00
|
|
|
return (brushBg, brushFg, pen)
|
|
|
|
# }}}
|
2019-09-08 16:08:04 +00:00
|
|
|
# {{{ _initBrushesAndPens(self)
|
2019-09-01 14:34:00 +00:00
|
|
|
def _initBrushesAndPens(self):
|
2019-09-06 08:29:45 +00:00
|
|
|
self._brushes, self._pens = [None for x in range(len(Colours))], [None for x in range(len(Colours))]
|
2019-09-03 16:58:50 +00:00
|
|
|
for mircColour in range(len(Colours)):
|
2019-09-06 08:29:45 +00:00
|
|
|
self._brushes[mircColour] = wx.Brush(wx.Colour(Colours[mircColour][:4]), wx.BRUSHSTYLE_SOLID)
|
|
|
|
self._pens[mircColour] = wx.Pen(wx.Colour(Colours[mircColour][:4]), 1)
|
2019-09-12 19:01:06 +00:00
|
|
|
self._brushAlpha = wx.Brush(wx.Colour(Colours[14][:4]), wx.BRUSHSTYLE_SOLID)
|
|
|
|
self._penAlpha = wx.Pen(wx.Colour(Colours[14][:4]), 1)
|
2019-09-06 08:29:45 +00:00
|
|
|
self._lastBrushBg, self._lastBrushFg, self._lastPen = None, None, None
|
2019-09-01 14:34:00 +00:00
|
|
|
# }}}
|
2019-09-08 16:08:04 +00:00
|
|
|
# {{{ _setBrushDc(self, brushBg, brushFg, dc, pen)
|
2019-09-01 14:34:00 +00:00
|
|
|
def _setBrushDc(self, brushBg, brushFg, dc, pen):
|
|
|
|
if self._lastBrushBg != brushBg:
|
2019-09-06 08:29:45 +00:00
|
|
|
dc.SetBackground(brushBg); self._lastBrushBg = brushBg;
|
2019-09-01 14:34:00 +00:00
|
|
|
if self._lastBrushFg != brushFg:
|
2019-09-06 08:29:45 +00:00
|
|
|
dc.SetBrush(brushFg); self._lastBrushFg = brushFg;
|
2019-09-01 14:34:00 +00:00
|
|
|
if self._lastPen != pen:
|
2019-09-06 08:29:45 +00:00
|
|
|
dc.SetPen(pen); self._lastPen = pen;
|
2019-09-01 14:34:00 +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
|
|
|
# {{{ _xlatePoint(self, point)
|
|
|
|
def _xlatePoint(self, point):
|
|
|
|
return [a * b for a, b in zip(point, self.cellSize)]
|
2019-09-01 14:34:00 +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
|
|
|
# {{{ drawCursorMaskWithJournal(self, canvasJournal, eventDc, viewRect)
|
|
|
|
def drawCursorMaskWithJournal(self, canvasJournal, eventDc, viewRect):
|
|
|
|
[self.drawPatch(eventDc, patch, viewRect) for patch in canvasJournal.popCursor()]
|
|
|
|
# }}}
|
|
|
|
# {{{ drawPatch(self, eventDc, patch, viewRect)
|
|
|
|
def drawPatch(self, eventDc, patch, viewRect):
|
|
|
|
point = [m - n for m, n in zip(patch[:2], viewRect)]
|
|
|
|
if [(c >= 0) and (c < s) for c, s in zip(point, self.canvasSize)] == [True, True]:
|
|
|
|
if patch[5] == " ":
|
2019-09-12 19:01:06 +00:00
|
|
|
if patch[3] == -1:
|
|
|
|
self._drawCharPatch(eventDc, [*patch[2:-1], "░"], point)
|
|
|
|
else:
|
|
|
|
self._drawBrushPatch(eventDc, patch[2:], point)
|
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
|
|
|
else:
|
|
|
|
self._drawCharPatch(eventDc, patch[2:], point)
|
2019-09-01 14:34:00 +00:00
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
# }}}
|
2019-09-11 06:28:56 +00:00
|
|
|
# {{{ getDeviceContext(self, clientSize, parentWindow, viewRect)
|
|
|
|
def getDeviceContext(self, clientSize, parentWindow, viewRect):
|
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 viewRect == (0, 0):
|
|
|
|
eventDc = wx.BufferedDC(wx.ClientDC(parentWindow), self.canvasBitmap)
|
|
|
|
else:
|
2019-09-11 06:28:56 +00:00
|
|
|
eventDc = GuiBufferedDC(self, self.canvasBitmap, clientSize, wx.ClientDC(parentWindow), viewRect)
|
2019-09-06 08:29:45 +00:00
|
|
|
self._lastBrushBg, self._lastBrushFg, self._lastPen = None, None, None
|
2019-09-01 14:34:00 +00:00
|
|
|
return eventDc
|
|
|
|
# }}}
|
2019-09-11 06:28:56 +00:00
|
|
|
# {{{ onPaint(self, clientSize, panelWindow, viewRect)
|
|
|
|
def onPaint(self, clientSize, panelWindow, viewRect):
|
2019-09-01 14:34:00 +00:00
|
|
|
if self.canvasBitmap != None:
|
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 viewRect == (0, 0):
|
|
|
|
eventDc = wx.BufferedPaintDC(panelWindow, self.canvasBitmap)
|
|
|
|
else:
|
2019-09-11 06:28:56 +00:00
|
|
|
eventDc = GuiBufferedDC(self, self.canvasBitmap, clientSize, wx.PaintDC(panelWindow), viewRect)
|
2019-09-01 14:34:00 +00:00
|
|
|
# }}}
|
|
|
|
# {{{ resize(self, canvasSize, cellSize):
|
|
|
|
def resize(self, canvasSize, cellSize):
|
2019-09-03 16:58:50 +00:00
|
|
|
winSize = [a * b for a, b in zip(canvasSize, cellSize)]
|
2019-09-01 14:34:00 +00:00
|
|
|
if self.canvasBitmap == None:
|
|
|
|
self.canvasBitmap = wx.Bitmap(winSize)
|
|
|
|
else:
|
2019-09-06 08:29:45 +00:00
|
|
|
oldDc = wx.MemoryDC(); oldDc.SelectObject(self.canvasBitmap);
|
|
|
|
newDc = wx.MemoryDC(); newBitmap = wx.Bitmap(winSize); newDc.SelectObject(newBitmap);
|
2019-09-01 14:34:00 +00:00
|
|
|
newDc.Blit(0, 0, *self.canvasBitmap.GetSize(), oldDc, 0, 0)
|
|
|
|
oldDc.SelectObject(wx.NullBitmap)
|
|
|
|
self.canvasBitmap.Destroy(); self.canvasBitmap = newBitmap;
|
2019-09-06 08:29:45 +00:00
|
|
|
self.canvasSize, self.cellSize = canvasSize, cellSize
|
2019-09-13 08:03:39 +00:00
|
|
|
if platform.system() == "Windows":
|
|
|
|
self._font = wx.TheFontList.FindOrCreateFont(8, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, False, self.fontName)
|
|
|
|
else:
|
|
|
|
self._font = wx.Font(8, wx.FONTFAMILY_TELETYPE, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL)
|
2019-09-01 14:34:00 +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
|
|
|
# {{{ xlateEventPoint(self, event, eventDc, viewRect)
|
|
|
|
def xlateEventPoint(self, event, eventDc, viewRect):
|
2019-09-01 14:34:00 +00:00
|
|
|
eventPoint = event.GetLogicalPosition(eventDc)
|
2019-09-06 08:29:45 +00:00
|
|
|
rectX, rectY = eventPoint.x - (eventPoint.x % self.cellSize[0]), eventPoint.y - (eventPoint.y % self.cellSize[1])
|
|
|
|
mapX, mapY = int(rectX / self.cellSize[0] if rectX else 0), int(rectY / self.cellSize[1] if rectY else 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
|
|
|
return [m + n for m, n in zip((mapX, mapY), viewRect)]
|
2019-09-01 14:34:00 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
# {{{ __del__(self): destructor method
|
|
|
|
def __del__(self):
|
|
|
|
if self.canvasBitmap != None:
|
|
|
|
self.canvasBitmap.Destroy(); self.canvasBitmap = None;
|
|
|
|
self._finiBrushesAndPens()
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
#
|
2019-09-11 13:33:15 +00:00
|
|
|
# __init__(self, canvasSize, cellSize, fontName="Dejavu Sans Mono", fontPathName=os.path.join("assets", "fonts", "DejaVuSansMono.ttf")): initialisation method
|
|
|
|
def __init__(self, canvasSize, cellSize, fontName="Dejavu Sans Mono", fontPathName=os.path.join("assets", "fonts", "DejaVuSansMono.ttf")):
|
2019-09-04 13:52:54 +00:00
|
|
|
self._brushes, self._font, self._lastBrush, self._lastPen, self._pens = None, None, None, None, None
|
2019-09-11 13:33:15 +00:00
|
|
|
self.canvasBitmap, self.cellSize, self.fontName, self.fontPathName = None, None, fontName, fontPathName
|
2019-09-13 08:03:39 +00:00
|
|
|
if platform.system() == "Windows":
|
|
|
|
WinDLL("gdi32.dll").AddFontResourceW(self.fontPathName.encode("utf16"))
|
2019-09-09 15:27:37 +00:00
|
|
|
self._initBrushesAndPens(); self.resize(canvasSize, cellSize);
|
2019-09-01 14:34:00 +00:00
|
|
|
|
|
|
|
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=120
|