mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
* api_notable_list_2022.md: update unbundled plugins 2022.3 * element_patterns.md: new sample * 2022.3 release: update GH links * 2022.3 release: update GH links, #2 * EP list: initial, change android from GH to JB hosting temporarily + adapt links * 223 release initial values * stop recommending PreloadingActivity (internal API now) * product specific EP lists * element_patterns.md: minor * code samples: upgrade * extension_point_list.md: fix duplicate heading * sdk_code_guidelines.md: update compatibility values * spring_extension_point_list.md: update * 223.7571.182
Tool Window Sample 
Reference: Tool Windows in IntelliJ SDK Docs
Quickstart
Tool Windows are child windows of the IDE used to display information. These windows generally have their toolbars (referred to as tool window bars) along the outer edges of the main window containing one or more tool window buttons, which activate panels displayed on the left, bottom, and right sides of the main IDE window.
The current implementation displays a JPanel
component containing simple icons and information about the actual system date, time, and timezone.
Component is provided by the MyToolWindow
class through the getContent()
method invoked inside the MyToolWindowFactory
implementation.
Extension Points
Name | Implementation | Extension Point Class |
---|---|---|
com.intellij.toolWindow |
MyToolWindowFactory | ToolWindowFactory |
Reference: Plugin Extension Points in IntelliJ SDK Docs