Hi,
I'm building an import filter extension for inkscape which needs some data for the import process. The wiki describes howto to write an INX file. There is a description how to define parameters for a UI dialog. Is this feature only supported for effects?
I tried the following example, but nothing happens.
<inkscape-extension> <_name>My Import filter</_name> <id>my.id</id> <dependency type="extension">org.inkscape.input.svg</dependency>
<param name="bounds-rule" gui-text="Choose View" type="enum"> <item>Modelspace</item> <item>Modelspace-Limits</item> <item>Paperspace</item> <item>Paperspace-Limits</item> </param>
<input> <extension>.foo</extension> <mimetype>image/x-svgz</mimetype> <_filetypename> foo</_filetypename> <_filetypetooltip>Import foo</_filetypetooltip> <output_extension>org.inkscape.output.svg</output_extension> </input> <script> <command reldir="extensions">myfoo</command> </script> </inkscape-extension>
Best Regards and many thanks, Simon