dependabot[bot] cc71fd3063 build(deps): bump org.jetbrains.intellij in /code_samples/tool_window
Bumps org.jetbrains.intellij from 1.5.0 to 1.5.1.

---
updated-dependencies:
- dependency-name: org.jetbrains.intellij
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-03-29 09:46:59 +02:00
..
2022-03-14 10:45:00 +01:00
2022-01-12 12:09:34 +01:00
2022-02-08 17:44:47 +01:00
2020-10-15 17:10:31 +02:00
2021-11-08 17:31:16 +01:00

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 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