From 0442e8f7156eee07141db3914f19f5b7af0e0110 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Tue, 24 Jan 2023 15:43:26 +0100 Subject: [PATCH] user_interface_components.md: cleanup --- .../user_interface_components.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/topics/user_interface_components/user_interface_components.md b/topics/user_interface_components/user_interface_components.md index 4a2a72479..4d5dfcf3d 100644 --- a/topics/user_interface_components/user_interface_components.md +++ b/topics/user_interface_components/user_interface_components.md @@ -1,6 +1,6 @@ -[//]: # (title: User Interface Components) +# User Interface Components - + @@ -8,15 +8,15 @@ -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)