diff options
| author | Richard White <rwhite8282@gmail.com> | 2016-02-27 01:18:49 +0000 |
|---|---|---|
| committer | Richard White <rwhite8282@gmail.com> | 2016-02-27 01:18:49 +0000 |
| commit | 5cf5ebf8ef5cef77e0b491f52ac37e317b06279d (patch) | |
| tree | 38b0b7445a4b16ef7b4ce4decb8b2adce40195ac /share/extensions/frame.inx | |
| parent | inkview: Drop use of obsolete getopt (diff) | |
| download | inkscape-5cf5ebf8ef5cef77e0b491f52ac37e317b06279d.tar.gz inkscape-5cf5ebf8ef5cef77e0b491f52ac37e317b06279d.zip | |
Added frame extension.
(bzr r14668.1.1)
Diffstat (limited to 'share/extensions/frame.inx')
| -rw-r--r-- | share/extensions/frame.inx | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/share/extensions/frame.inx b/share/extensions/frame.inx new file mode 100644 index 000000000..a2b011430 --- /dev/null +++ b/share/extensions/frame.inx @@ -0,0 +1,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>
\ No newline at end of file |
