Next: Remote programming customization, Previous: Adding documentation, Up: Customizing through XML and Python files
XML files can be used to define “stock icons”. Stock icons are pictures that are identified by their label, and which are used through GPS in various places, such as buttons, menus, toolbars, and so on.
The stock icons must be declared using the tag <icon>
, within the global
tag <stock>
. The attribute id
indicates the label used to identify
the stock icon, and the attribute file
points to the file which contains
the actual picture, either in absolute format, or relative to the directory
which contains the XML file.
If the stock icon is to be used in a toolbar, use the attribute label
to
specify the text to display in the toolbar, under the button, when the toolbar
is configured to show text.
For icons that are intended to be displayed at multiple sizes, you can specify
multiple files corresponding to these multiple sizes. This is done by adding
children to the main icon node, with the tag alternate
, containing
a file
attribute and a size
attribute which correspond to the
size for which this alternate source should be used.
Possible sizes are:
1
2
3
4
5
6
Here is an example:
<?xml version="1.0"?> <my_visual_preferences> <stock> <icon id="myproject-my-picture" file="icons/my-picture.png" /> <icon id="myproject-multipurpose-image" label="do something" file="icons/icon_default.png"> <alternate file"icons/icon_16.png" size="menu" /> <alternate file"icons/icon_24.png" size="large_toolbar" /> <alternate file"icons/icon_20.png" size="button" /> </icon> </stock> </my_visual_preferences>
Note: as shown in the example above, it is a good practice to prefix the label
by a unique name (e.g. myproject-
), in order to make sure that
predefined stock icons will not get overridden by your icons.