blob: ec895a95c5986b4bbd44c4ee8aae3a2ec12b2216 (
plain)
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
|
<?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>
|