1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
# Authors: see git history
#
# Copyright (c) 2023 Authors
# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
import sys
import wx
import wx.adv
from inkex import ShapeElement
from ..gui.abort_message import AbortMessageApp
from ..gui.simulator import SplitSimulatorWindow
from ..gui.tartan import TartanMainPanel
from ..i18n import _
from ..svg.tags import EMBROIDERABLE_TAGS, INKSTITCH_TARTAN, SVG_GROUP_TAG
from ..utils.svg_data import get_pagecolor
from .base import InkstitchExtension
class Tartan(InkstitchExtension):
def __init__(self, *args, **kwargs):
self.nodes = set()
self.cancelled = False
InkstitchExtension.__init__(self, *args, **kwargs)
def cancel(self) -> None:
self.cancelled = True
def get_tartan_nodes(self) -> None:
if self.svg.selection:
for node in self.svg.selection:
self.get_selection(node)
def get_selection(self, node: ShapeElement) -> None:
if node.TAG == 'g' and not node.get_id().startswith('inkstitch-tartan'):
for child_node in node.iterchildren():
self.get_selection(child_node)
else:
node = self.get_outline(node)
if node.tag in EMBROIDERABLE_TAGS and node.style('fill') is not None:
self.nodes.add(node)
def get_outline(self, node: ShapeElement) -> ShapeElement:
# existing tartans are marked through their outline node
# we have either selected the node itself or some other nodes within a tartan group
if node.get(INKSTITCH_TARTAN, None) is not None:
return node
if node.get_id().startswith('inkstitch-tartan'):
for node in node.iterchildren(EMBROIDERABLE_TAGS):
if node.get(INKSTITCH_TARTAN, None):
return node
for group in node.iterancestors(SVG_GROUP_TAG):
if group.get_id().startswith('inkstitch-tartan'):
for node in group.iterchildren(EMBROIDERABLE_TAGS):
if node.get(INKSTITCH_TARTAN, None) is not None:
return node
# if we don't find an existing tartan, return node
return node
def effect(self) -> None:
self.get_tartan_nodes()
if not self.nodes:
abort = AbortMessageApp(
_("To create a tartan pattern please select at least one element with a fill color."),
_("https://inkstitch.org/docs/fill-tools/#tartan")
)
abort.MainLoop()
return
metadata = self.get_inkstitch_metadata()
background_color = get_pagecolor(self.svg.namedview)
app = wx.App()
frame = SplitSimulatorWindow(
title=_("Ink/Stitch Tartan"),
panel_class=TartanMainPanel,
nodes=list(self.nodes),
on_cancel=self.cancel,
metadata=metadata,
background_color=background_color,
target_duration=1
)
frame.Show()
app.MainLoop()
if self.cancelled:
# This prevents the superclass from outputting the SVG, because we
# may have modified the DOM.
sys.exit(0)
|