* [webhelp] Fixes for TXP00152, TXP00002, test build 27 Jul 22:26 * [webhelp] Fixes for Part #4 TXP00010, EXCEPT decimal numbers in section titles * [webhelp] Fixes for Part #5 TXP00017 * [webhelp] Fixes for Part #4 TXP00010 - removed numbers from page section titles in "Custom Language Support Tutorial" and "Testing a Custom Language Plugin". * [webhelp] Removed numbers from page section titles in rest of project *.md files. * [new webhelp] Build #44 changes * [new webhelp] Maintenance merge from master * [new webhelp] Add placeholder file for webhelp import. * [webhelp] Correct redirects for file name changes * [webhelp] TOC not needed in webhelp * [format] {:toc} not needed for webhelp * add {:disable-links} to ensure demo links are not interpreted as real links. * Put all badges on the same line to simplify composition. * formatter.md: fix upsource link * fix some links * api_changes_list.md: remove note * migrate to webhelp - initial * fix GH edit URL * remove sdkdocs-template setup in VCS config * remove recently_updated.md * restore COC/CONTRIBUTING.md * api_changes_list.md: remove note * useful_links.md: IPE Co-authored-by: JohnHake <john.hake@jetbrains.com> Co-authored-by: Yann Cébron <yann.cebron@jetbrains.com>
5.8 KiB
Icons and images are used widely by IntelliJ Platform plugins. Plugins need icons mostly for actions, custom components renderers, tool windows, and so on.
Plugin Icons, which represent a plugin itself, have different requirements than icons and images used within a plugin. For more information see the Plugin Icon page.
{type="note"}
Plugins should reuse existing platform icons whenever possible, see Icons list and
AllIcons
. A detailed design guideline is available for creating custom icons.
{type="tip"}
How to organize and how to use icons?
The best way to deal with icons and other image resources is to put them to a dedicated source root marked as Resources Root, say icons
or resources
.
The getIcon()
method of IconLoader
can be used to access the icons.
The path to the icon passed in as argument to
IconLoader.getIcon()
must start with leading/
{type="note"}
Then define a class/interface in a top-level package called icons
holding icon constants as static fields:
package icons;
public interface DemoPluginIcons {
Icon DemoAction = IconLoader.getIcon("/icons/demoAction.png", DemoPluginIcons.class);
Icon StructureToolWindow = IconLoader.getIcon("/icons/toolWindowStructure.png", DemoPluginIcons.class);
Icon FileType = IconLoader.getIcon("/icons/myLangFileType.png", DemoPluginIcons.class);
}
When using Kotlin, fields must be annotated with @JvmField
:
package icons
object DemoPluginIcons {
@JvmField
val DemoAction = IconLoader.getIcon("/icons/demoAction.png", javaClass)
// ...
}
Use these constants inside plugin.xml
as well when specifying icon
attribute for <action>
or extension points.
Note that the package name icons
will be automatically prefixed and must not be added manually.
<actions>
<action id="DemoPlugin.DemoAction"
icon="DemoPluginIcons.DemoAction" [...] />
</actions>
<extensions defaultExtensionNs="com.intellij">
<toolWindow id="CustomStructure"
icon="DemoPluginIcons.StructureToolWindow" [...] />
</extensions>
Image Formats
IntelliJ Platform supports Retina displays and has dark theme called Darcula. Thus, every icon should have a dedicated variant for Retina devices and Darcula theme. In some cases, you can skip dark variants if the original icon looks good under Darcula.
Required icon sizes depend on the usage as listed in the following table:
Usage | Icon Size (pixels) |
---|---|
Node, Action, Filetype | 16x16 |
Tool window | 13x13 |
Editor gutter | 12x12 |
SVG Format
SVG icons are supported since 2018.2.
{type="note"}
As SVG icons can be scaled arbitrarily, they provide better results on HiDPI environments or when used in combination with bigger screen fonts (e.g., in presentation mode).
A base size denoting the size (in the user space) of the rendered image in 1x scale should be provided.
The size is set via the width
and height
attributes omitting the size units.
If unspecified, it defaults to 16x16 pixels.
A minimal SVG icon file:
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16">
<rect width="100%" height="100%" fill="green"/>
</svg>
The naming notation used for PNG icons (see below) is still relevant.
However, the @2x
version of an SVG icon should still provide the same base size.
The icon graphics of such an icon can be expressed in more details via double precision.
If the icon graphics are simple enough so that it renders perfectly in every scale, then the @2x
version can be omitted.
For generating the SVG icons suited for the IntelliJ-based IDEs, you may also use the third-party web tool – IntelliJ Icon Generator.
{type="tip"}
PNG Format
Please consider using SVG icons if your plugin targets 2018.2+.
{type="note"}
All icon files must be placed in the same directory following this naming pattern (replace .png
with .svg
for SVG icons):
- iconName.png W x H pixels (Will be used on non-Retina devices with default theme)
- iconName@2x.png 2*W x 2*H pixels (Will be used on Retina devices with default theme)
- iconName_dark.png W x H pixels (Will be used on non-Retina devices with Darcula theme)
- iconName@2x_dark.png 2*W x 2*H pixels (Will be used on Retina devices with Darcula theme)
The IconLoader
class will load the icon that matches the best depending on the current environment.
Here are examples of toolWindowStructure.png icon representations:
Theme/Resolution | File name | Image |
---|---|---|
Default | toolWindowStructure.png |
![]() |
Darcula | toolWindowStructure_dark.png |
![]() |
Default + Retina | toolWindowStructure@2x.png |
![]() |
Darcula + Retina | toolWindowStructure@2x_dark.png |
![]() |