mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 09:17:50 +08:00
1.2 KiB
1.2 KiB
title |
---|
User Interface Components |
The IntelliJ Platform includes a large number of custom Swing components. Using those components in your plugins will ensure that your plugin looks and works consistently with the UI of the rest of the IDE, and can often reduce the code size compared to using the default Swing components.
The following components are particularly noteworthy:
- Menus and toolbars are built using the Action System
- Tool Windows
- Dialogs
- Popups
- Notifications
- File and Class Choosers
- Editor Components
- List and Tree Controls
- Tables (TableView) (TBD)
- Drag & Drop Helpers (TBD)
- Miscellaneous Swing Components
- Messages
- JBSplitter
- JBTabs
Tip
The recommended way of building UIs on the IntelliJ Platform is the Kotlin UI DSL.