Skip to content

Files

Latest commit

fb6a6d5 · Feb 26, 2025

History

History

tool_window

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
May 22, 2023
Feb 26, 2025
Oct 25, 2023
Apr 11, 2023
Nov 13, 2024
Jul 10, 2023
Feb 26, 2025
Jul 16, 2024
May 5, 2022

Tool Window Sample JetBrains IntelliJ Platform SDK Docs

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 CalendarToolWindowFactory.CalendarToolWindowContent class through the getContentPanel() method invoked inside the CalendarToolWindowFactory implementation.

Extension Points

Name Implementation Extension Point Class
com.intellij.toolWindow CalendarToolWindowFactory ToolWindowFactory

Reference: Plugin Extension Points in IntelliJ SDK Docs