user_interface_components.md: cleanup

This commit is contained in:
Yann Cébron 2023-01-24 15:43:26 +01:00
parent 2d073b58cd
commit 0442e8f715

View File

@ -1,6 +1,6 @@
[//]: # (title: User Interface Components)
# User Interface Components
<!-- Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
<!-- Copyright 2000-2023 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
<tldr>
@ -8,15 +8,15 @@
</tldr>
The IntelliJ Platform includes a large number of custom Swing components.
The IntelliJ Platform includes a large number of custom [Swing](https://en.wikipedia.org/wiki/Swing_(Java)) 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.
> Use [UI Inspector](internal_ui_inspector.md) to locate the underlying Swing component implementation or to inspect an existing UI at runtime.
>
> It is recommended to build UI forms like dialogs or settings pages by using the [Kotlin UI DSL](kotlin_ui_dsl_version_2.md) (IntelliJ Platform 2021.3+).
> It is recommended to build UI forms like [dialogs](dialog_wrapper.md) or [settings pages](settings.md) by using the [Kotlin UI DSL](kotlin_ui_dsl_version_2.md) (IntelliJ Platform 2021.3+).
>
> Using GUI designer with Kotlin is currently not supported ([Issue](https://youtrack.jetbrains.com/issue/KTIJ-791)).
> Using _UI Designer_ plugin with Kotlin is [not supported](https://youtrack.jetbrains.com/issue/KTIJ-791).
>
{style="note"}
@ -28,7 +28,7 @@ Please refer to [Writing short and clear](https://jetbrains.design/intellij/text
The following components are particularly noteworthy:
* Menus and toolbars are built using the [](basic_action_system.md)
* Menus and toolbars are built using [](basic_action_system.md)
* [](tool_windows.md)
* [](dialog_wrapper.md)
* [](popups.md)