File: split.inx

package info (click to toggle)
inkscape 0.48.5-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 117,392 kB
  • ctags: 50,110
  • sloc: cpp: 368,612; ansic: 28,176; python: 18,877; sh: 4,555; xml: 3,490; makefile: 1,750; perl: 1,534; ruby: 148
file content (23 lines) | stat: -rw-r--r-- 1,013 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
    <_name>Split text</_name>
    <id>com.nerdson.split</id>
	<dependency type="executable" location="extensions">split.py</dependency>
	<dependency type="executable" location="extensions">inkex.py</dependency>
	<_param name="texthelp" type="description">This effect splits texts into different lines, words or letters. Select below how your text should be splitted.</_param>
	<param name="splittype" type="enum" _gui-text="Split:">
		<_item value="line">Lines</_item>
		<_item value="word">Words</_item>
		<_item value="letter">Letters</_item>
	</param>
	<param name="preserve" type="boolean" _gui-text="Preserve original text?">true</param>
    <effect>
		<object-type>text</object-type>
		<effects-menu>
			<submenu _name="Text"/>
		</effects-menu>
    </effect>
    <script>
        <command reldir="extensions" interpreter="python">split.py</command>
    </script>
</inkscape-extension>