Difference between revisions of "Extensions: INX widgets and parameters"
Line 288: | Line 288: | ||
{| class="wikitable" style="width:100%" | {| class="wikitable" style="width:100%" | ||
|+ | |+ Deprecated Parameters | ||
|- | |- | ||
Line 296: | Line 296: | ||
|- | |- | ||
! description{{deprecated_in|1.0|Replaced by 'label' widget.}} | ! description{{deprecated_in|1.0|details=Replaced by 'label' widget.}} | ||
|Creates a text element. Specifying the attribute <code>xml:space="preserve"</code> preserves whitespace in the text content of the description and enables multiline text. | |Creates a text element. Specifying the attribute <code>xml:space="preserve"</code> preserves whitespace in the text content of the description and enables multiline text. | ||
Line 314: | Line 314: | ||
|- | |- | ||
! enum{{deprecated_in|1.0|Replaced by 'optiongroup' parameter with appearance="combo".}} | ! enum{{deprecated_in|1.0|details=Replaced by 'optiongroup' parameter with appearance="combo".}} | ||
|Creates a drop-down list from which '''one predefined value''' can be chosen. The different choices are created with <code><item></code> elements. The first <code><item></code> is selected by default. | |Creates a drop-down list from which '''one predefined value''' can be chosen. The different choices are created with <code><item></code> elements. The first <code><item></code> is selected by default. | ||
The '''returned value''' for <code>enum</code> type parameters is the value of the <code>value</code> attribute of the selected <code><item></code>. | The '''returned value''' for <code>enum</code> type parameters is the value of the <code>value</code> attribute of the selected <code><item></code>. | ||
Line 327: | Line 327: | ||
|} | |} | ||
=== Deprecated localization functionality of parameters{{deprecated_in|1.0}} == | === Deprecated localization functionality of parameters{{deprecated_in|1.0}} == |
Revision as of 17:02, 21 March 2021
This page contains the reference documentation for INX widgets and parameters. Their primary goal is to make it easy to design GUIs for Inkscape Extensions using the built-in INX extension descriptor format, although (invisible) parameters can also be used for extensions that don't need to show a user interface.
Introduction
Extension GUIs consists of an arbitrary number of GUI elements, so-called Widgets. These can be simple text labels, boxes and spacers to control layout or more complex UI elements like images.
A special class of Widgets are Parameters. They differ from other Widgets in that they have a user-settable value, for example a boolean (implemented as checkbox) or integer (implemented as number entry). The value of each Parameter is passed to the extension on execution and can be used to control its behavior.
All Widgets are described using an easy-to-learn XML schema with predefined tags and attributes which are described in detail below.
Available Widgets
A general Widget takes the form
<widget_name attribute1="value1" atribute2="value2" …>value</widget_name>
where widget_name
specifies the name of the widget and is one of the following:
label
hbox
/vbox
separator
/spacer
image
param
(for all Parameter types)
Available Parameter types
A general Parameter takes the form
<param type="parameter_type" attribute1="value1" atribute2="value2" …>value</param >
where parameter_type
specifies the type of the parameter and is one of the following:
bool
int
float
string
path
optiongroup
notebook
color
If a parameter is made invisible (see `gui-hidden` attribute in the Common attributes) it will not be shown in the GUI but it's value is still passed to an extension. This is useful if you want to hardcode parameter value the user should not be able to change. If all parameters (and potential widgets) are invisible, Inkscape will not show a GUI and execute the extension immediately instead, but will still pass the values of the invisible parameters.
Common attributes
For all Widgets | ||||
---|---|---|---|---|
Attribute name | Allowed value(s) | Default value | Required? | Description |
gui-hidden
|
true ,false
|
false
|
optional | If set to true the Widget is hidden from the GUI (primarily used to add hidden parameters that are passed to the extension but are not supposed to be editable by the user.)
Note: If there are no visible parameters defined in a GUI, the extension is executed immediately without showing a dialog. |
indent
|
0,1,2,...
|
0
|
optional | - |
Only for Parameters | ||||
Attribute name | Allowed value(s) | Default value | Required? | Description |
name
|
(text) | - | required | Used as an identifier of the parameter. It has to be unique since the value of this attribute is used to save and transmit parameter values internally! |
type
|
(see above) | - | required | Determines the type of the parameter, see the extensive description of available types below. |
gui-text
|
(text) | - | required (visible parameters), optional (hidden parameters) |
Label shown for the parameter in the GUI. |
gui-description
|
(text) | - | optional | Tooltip shown for the parameter when the user hovers the mouse cursor over the active area of the parameter in question. |
Widgets
Parameters
Translation of widgets and parameters
Deprecated Widgets and Parameters
These widgets and parameters have been deprecated and should not be used anymore. Extension authors are encouraged to update their existing extensions wherever possible. Documentation is kept for authors that need to make their extensions backwards-compatible but please be aware that deprecated functionality will be removed eventually and without further notice.
= Deprecated localization functionality of parametersdepr. 1.0
To mark parameters to be included into the translation files variants of all relevant attributes and tag names existed that started with an underscore.
While the underscored variants are still accepted for backwards-compatibility, translations are handled differently since Inkscape 1.0, which solved a number of limitations of the prior implementation, while also making the INX specification significantly cleaner. See Translation of widgets and parameters for details.
Editing INX Parameters in 1.0
In this section:
- When an attribute is in square brackets (
[name="value"]
), it means thatname
is optional. - The 1 in
indent="1"
is the indentation level that you want.
Tags for the layout
<label [indent="1"] [appearance="header"]>Some text</label>
<label [indent="1"] [appearance="url"]>http://some/url</label>
<image>some/inx/relative/path/to/img.svg</image>
<spacer/>
<separator [indent="1"]/>
<hbox [indent="1"]></hbox>
<vbox [indent="1"]></vbox>
Tags for the parameters
- The
name
attribute of tag<param>
means the name of the argument (--name=
) your command will get. - Parameter values (when opening the dialog) are set to the last used value, which is saved in the user's preferences file (e.g. ~/.config/inkscape/preferences.xml on GNU/Linux systems):
<inkscape>
<group id="extensions" com.attrib.id.param_name="param value"/>
</inkscape>
The (default) values in the inx file are visible only when the user first uses the extension.
Notebook
- The value of the selected
<page name>
attribute will be passed as an argument to your extension.- The default value is the name of the first page.
- If the same
<param name>
is used in multiple tabs, its value will be taken from the last<page>
it appears on.- This means that it's best to use different names if the same parameter is used on multiple pages.
Checkbox
The default value is true
| |
<param type="bool" name="varname" gui-text="label" [indent="1"]>false</param>
|
Numeric spinner
- The widget has a precision of 0.1 for float.
- The default
min
value is "0". - The default
max
value is "10".
Text fields
The default value is the empty string and with such a value, the parameter is omitted. | |
<param type="string" name="varname" gui-text="label" [indent="1"] [max-length="5" | appearance="multiline"]>some text</param>
|
You can provide an integer to the attribute max-length
to limit the number of characters you can get.
File chooser
Default's to the path of the folder containing the script | |
Use one of:
<param type="path" name="varname" gui-text="label" [indent="1"] mode="file" filetypes="svg,png"/>
<param type="path" name="varname" gui-text="label" [indent="1"] mode="files" filetypes="svg,png"/>
<param type="path" name="varname" gui-text="label" [indent="1"] mode="file_new" filetypes="svg,png"/>
<param type="path" name="varname" gui-text="label" [indent="1"] mode="folder"/>
<param type="path" name="varname" gui-text="label" [indent="1"] mode="folders"/>
<param type="path" name="varname" gui-text="label" [indent="1"] mode="folder_new"/>
|
- The attribute
mode
with a value of:"file"
or"folder"
(withouts
) open a file browser for selecting 1 object.- The versions ending with a
s
open a file browser for selecting multiple objects. - And the ones ending with
_new
are for creating new objects.
- The
filetype
attribute contains a list of file extensions to look for. In this example only svg or png files will be displayed.
A combobox or radio buttons
Default value is the first item | ||
<param type="optiongroup" name="varname" gui-text="label" [appearance="combo"|appearance="radio"] [indent="1"]>
<item value="value">Some text</item>
<!-- Other choices -->
</param>
|
- The default
appearance
is"radio"
. The appearance"combo"
is also valid.
Color
Default value is #000000FF
| |||
| |||
<param type="color" name="varname" [appearance="colorbutton" gui-text="label"] [indent="1"]/>
|
The parameter value is an RGBA value in hexadecimal notation.
To document:
- Multiline text fields: appearance="multiline"
- type "description"
- translatable="no"
- implements-custom-gui