diff options
Diffstat (limited to 'share/extensions/markers_strokepaint.inx')
-rw-r--r-- | share/extensions/markers_strokepaint.inx | 39 |
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> |