blob: a2b011430f737f9c922040233681db99764d8203 (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
<_name>Frame</_name>
<id>frame</id>
<dependency type="executable" location="extensions">frame.py</dependency>
<dependency type="executable" location="extensions">inkex.py</dependency>
<param name="tab" type="notebook">
<page name="stroke" gui-text="Stroke">
<param name="stroke_color" type="color" gui-text="Stroke Color:">000000FF</param>
</page>
<page name="fill" gui-text="Fill">
<param name="fill_color" type="color" gui-text="Fill Color:">00000000</param>
</page>
</param>
<param name="position" type="optiongroup" appearance="minimal" gui-text="Position">
<option value="outside">Outside</option>
<option value="inside">Inside</option>
</param>
<param name="clip" type="boolean" gui-text="Clip"></param>
<param name="group" type="boolean" gui-text="Group"></param>
<param name="width" type="float" min="0" max="100" gui-text="Width(px)">2</param>
<param name="corner_radius" type="int" min="0" max="1000" gui-text="Corner Radius">0</param>
<effect>
<object-type>all</object-type>
<effects-menu>
<submenu _name="Render"/>
</effects-menu>
</effect>
<script>
<command reldir="extensions" interpreter="python">frame.py</command>
</script>
</inkscape-extension>
|