summaryrefslogtreecommitdiffstats
path: root/share/extensions/markers_strokepaint.inx
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:24:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:24:48 +0000
commitcca66b9ec4e494c1d919bff0f71a820d8afab1fa (patch)
tree146f39ded1c938019e1ed42d30923c2ac9e86789 /share/extensions/markers_strokepaint.inx
parentInitial commit. (diff)
downloadinkscape-cca66b9ec4e494c1d919bff0f71a820d8afab1fa.tar.xz
inkscape-cca66b9ec4e494c1d919bff0f71a820d8afab1fa.zip
Adding upstream version 1.2.2.upstream/1.2.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'share/extensions/markers_strokepaint.inx')
-rw-r--r--share/extensions/markers_strokepaint.inx39
1 files changed, 39 insertions, 0 deletions
diff --git a/share/extensions/markers_strokepaint.inx b/share/extensions/markers_strokepaint.inx
new file mode 100644
index 0000000..ec895a9
--- /dev/null
+++ b/share/extensions/markers_strokepaint.inx
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
+ <name>Color Markers</name>
+ <id>org.inkscape.filter.markers_stroke_paint</id>
+
+ <param name='tab' type="notebook">
+ <page name='object' gui-text="From object">
+ <param name="type" type="optiongroup" appearance="combo" gui-text="Marker type:">
+ <option value="solid">solid</option>
+ <option value="filled">filled</option>
+ </param>
+ <param name="invert" type="bool" gui-text="Invert fill and stroke colors">false</param>
+ <param name="alpha" type="bool" gui-text="Assign alpha">true</param>
+ </page>
+ <page name='custom' gui-text="Custom">
+ <param name="colortab" type="notebook">
+ <page name="fill_page" gui-text="Fill">
+ <param name="assign_fill" type="bool" gui-text="Assign fill color">true</param>
+ <param name="fill_color" gui-text="Fill color" type="color">-1</param>
+ </page>
+ <page name="stroke_page" gui-text="Stroke">
+ <param name="assign_stroke" type="bool" gui-text="Assign stroke color">true</param>
+ <param name="stroke_color" gui-text="Stroke color" type="color">255</param>
+ </page>
+ </param>
+ </page>
+ </param>
+ <param name="modify" type="bool" gui-text="Modify in Place">false</param>
+
+ <effect>
+ <object-type>all</object-type>
+ <effects-menu>
+ <submenu name="Modify Path"/>
+ </effects-menu>
+ </effect>
+ <script>
+ <command location="inx" interpreter="python">markers_strokepaint.py</command>
+ </script>
+</inkscape-extension>