inkstitch/embroider_params.py

60 wiersze
2.1 KiB
Python

#!/usr/bin/python
#
# Set embroidery parameter attributes on all selected objects. If an option
# value is blank, the parameter is created as blank on all objects that don't
# already have it. If an option value is given, any existing node parameter
# values are overwritten on all selected objects.
import sys
sys.path.append("/usr/share/inkscape/extensions")
import os
import inkex
class EmbroiderParams(inkex.Effect):
def __init__(self, *args, **kwargs):
inkex.Effect.__init__(self)
self.params = ["zigzag_spacing_mm",
"running_stitch_length_mm",
"row_spacing_mm",
"max_stitch_length_mm",
"repeats",
"angle",
"flip",
"satin_column",
"stroke_first",
"pull_compensation_mm",
"contour_underlay",
"contour_underlay_inset_mm",
"contour_underlay_stitch_length_mm",
"center_walk_underlay",
"center_walk_underlay_stitch_length_mm",
"zigzag_underlay",
"zigzag_underlay_inset_mm",
"fill_underlay",
"fill_underlay_angle",
"fill_underlay_row_spacing_mm",
"fill_underlay_max_stitch_length_mm",
]
for param in self.params:
self.OptionParser.add_option("--%s" % param, default="")
def effect(self):
for node in self.selected.itervalues():
for param in self.params:
value = getattr(self.options, param).strip()
param = "embroider_" + param
if node.get(param) is not None and not value:
# only overwrite existing params if they gave a value
continue
else:
node.set(param, value)
if __name__ == '__main__':
e = EmbroiderParams()
e.affect()