Difference between revisions of "Extensions: INX widgets and parameters"
Line 112: | Line 112: | ||
|} | |} | ||
== Widgets == | == Widgets == | ||
Line 160: | Line 148: | ||
|} | |} | ||
; TODO: | |||
<source lang="xml"> | |||
<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> | |||
</source> | |||
== Parameters == | == Parameters == | ||
Line 189: | Line 190: | ||
<param name="name" type="color"></param> | <param name="name" type="color"></param> | ||
</pre> | </pre> | ||
|[[File:INX_sample-color.png]] | |||
|[[File:INX_sample-color.png]] [[File:INX color-btn.png]] | |||
|- | |- | ||
Line 264: | Line 266: | ||
<small>''The option group will occupy the minimum space on the right hand side of the dialog. Versus the Enum, which expands to fill available space.''</small> | <small>''The option group will occupy the minimum space on the right hand side of the dialog. Versus the Enum, which expands to fill available space.''</small> | ||
|[[File:INX_sample-optiongroup.png]]<br><br><br><br><br>[[File:INX_sample-optiongroup-minimal.png]] | |[[File:INX_sample-optiongroup.png]]<br><br><br><br><br>[[File:INX_sample-optiongroup-minimal.png]] | ||
|- | |||
! path | |||
| | |||
<source lang="xml"> | |||
<param type="path" name="varname" gui-text="label" mode="file" filetypes="svg,png"/> | |||
<param type="path" name="varname" gui-text="label" mode="files" filetypes="svg,png"/> | |||
<param type="path" name="varname" gui-text="label" mode="file_new" filetypes="svg,png"/> | |||
<param type="path" name="varname" gui-text="label" mode="folder"/> | |||
<param type="path" name="varname" gui-text="label" mode="folders"/> | |||
<param type="path" name="varname" gui-text="label" mode="folder_new"/> | |||
</source> | |||
|[[File:INX path.png]] | |||
|- | |- | ||
Line 344: | Line 360: | ||
* The 1 in <code>indent="1"</code> is the indentation level that you want. | * The 1 in <code>indent="1"</code> is the indentation level that you want. | ||
<!-- TODO | |||
Use parameter elements to capture user input for further use by a script. The basic structure of the element is: | |||
<source lang="xml"> | <source lang="xml"> | ||
<param | <param name="some_name" type="some_type">default value</param> | ||
< | |||
</source> | </source> | ||
The default value is the value that is shown in the input control the first time the user opens the dialog window. Inkscape automatically displays the values used last time when the dialog window is opened again. | |||
* 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): | |||
<source lang="xml"> | <source lang="xml"> | ||
< | <inkscape> | ||
<group id="extensions" com.attrib.id.param_name="param value"/> | |||
</inkscape> | |||
</source> | </source> | ||
The (default) values in the inx file are visible only when the user first uses the extension. | |||
--> | |||
[[Category:Developer Documentation]] | [[Category:Developer Documentation]] | ||
[[Category:Extensions]] | [[Category:Extensions]] |
Revision as of 17:22, 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
- TODO
<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>
Parameters
Translation of widgets and parameters
Deprecated Functionality
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.