Code

Extensions. Color Markers extension improvements (Bug #692582, Color markers to match...
[inkscape.git] / share / extensions / markers_strokepaint.inx
1 <?xml version="1.0" encoding="UTF-8"?>
2 <inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
3   <_name>Color Markers</_name>
4   <id>org.ekips.filter.markers.strokepaint</id>
5   <dependency type="executable" location="extensions">markers_strokepaint.py</dependency>
6   <dependency type="executable" location="extensions">inkex.py</dependency>
7   
8   <param name='tab' type="notebook">
9     <page name='object' _gui-text="From object">
10       <param name="type" type="enum" _gui-text="Marker type:">
11         <_item value="solid">solid</_item>
12         <_item value="filled">filled</_item>
13       </param>
14       <param name="invert" type="boolean" _gui-text="Invert fill and stroke colors">false</param>
15       <param name="alpha" type="boolean" _gui-text="Assign alpha">true</param>
16     </page>
17     <page name='custom' _gui-text="Custom">
18       <param name="colortab" type="notebook">
19         <page name="fill_page" _gui-text="Fill">
20           <param name="assign_fill" type="boolean" _gui-text="Assign fill color">true</param>
21           <param name="fill_color" gui-text="Fill color" type="color">-1</param>
22         </page>
23         <page name="stroke_page" _gui-text="Stroke">
24           <param name="assign_stroke" type="boolean" _gui-text="Assign stroke color">true</param>
25           <param name="stroke_color" gui-text="Stroke color" type="color">255</param>
26         </page>
27       </param>
28     </page>
29   </param>
30     
31   <effect>
32   <object-type>all</object-type>
33   <effects-menu>
34     <submenu _name="Modify Path"/>
35   </effects-menu>
36   </effect>
37   <script>
38     <command reldir="extensions" interpreter="python">markers_strokepaint.py</command>
39   </script>
40 </inkscape-extension>