diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:24:48 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:24:48 +0000 |
commit | cca66b9ec4e494c1d919bff0f71a820d8afab1fa (patch) | |
tree | 146f39ded1c938019e1ed42d30923c2ac9e86789 /share/extensions/hpgl_input.inx | |
parent | Initial commit. (diff) | |
download | inkscape-cca66b9ec4e494c1d919bff0f71a820d8afab1fa.tar.xz inkscape-cca66b9ec4e494c1d919bff0f71a820d8afab1fa.zip |
Adding upstream version 1.2.2.upstream/1.2.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'share/extensions/hpgl_input.inx')
-rw-r--r-- | share/extensions/hpgl_input.inx | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/share/extensions/hpgl_input.inx b/share/extensions/hpgl_input.inx new file mode 100644 index 0000000..279fd0a --- /dev/null +++ b/share/extensions/hpgl_input.inx @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF-8"?> +<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension"> + <name>HPGL Input</name> + <id>org.inkscape.input.hpgl_input</id> + <dependency type="file" location="inx">hpgl_decoder.py</dependency> + <label>Please note that you can only open HPGL files written by Inkscape, to open other HPGL files please change their file extension to .plt, make sure you have UniConverter installed and open them again.</label> + <spacer/> + <param name="resolutionX" type="float" min="1.0" max="4096.0" precision="1" gui-text="Resolution X (dpi):" gui-description="The amount of steps the plotter moves if it moves for 1 inch on the X axis (Default: 1016.0)">1016.0</param> + <param name="resolutionY" type="float" min="1.0" max="4096.0" precision="1" gui-text="Resolution Y (dpi):" gui-description="The amount of steps the plotter moves if it moves for 1 inch on the Y axis (Default: 1016.0)">1016.0</param> + <param name="showMovements" type="bool" gui-text="Show movements between paths" gui-description="Check this to show movements between paths (Default: Unchecked)">false</param> + <input> + <extension>.hpgl</extension> + <mimetype>image/hpgl</mimetype> + <filetypename>HP Graphics Language file (*.hpgl)</filetypename> + <filetypetooltip>Import an HP Graphics Language file</filetypetooltip> + </input> + <script> + <command location="inx" interpreter="python">hpgl_input.py</command> + </script> +</inkscape-extension> |