mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
Migrate "Creation of Tool Windows" (https://confluence.jetbrains.com/display/IDEADEV/Creation+of+Tool+Windows) and associated code sample (http://git.jetbrains.org/?p=idea/community.git;a=commit;h=cca55289efa57e969f90c12a064dde3f388adaa1) to the SDK docs.
33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
<idea-plugin version="2">
|
|
<id>org.jetbrains.plugins.sample.ToolWindow</id>
|
|
<name>Tool Window</name>
|
|
<description>This sample plugin illustrates how to create your custom tool window.</description>
|
|
<version>2.0</version>
|
|
<vendor email="support@yourcompany.com" url="http://www.yourcompany.com">YourCompany</vendor>
|
|
|
|
<change-notes><![CDATA[
|
|
Add change notes here.<br>
|
|
<em>most HTML tags may be used</em>
|
|
]]>
|
|
</change-notes>
|
|
|
|
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
|
|
<idea-version since-build="141.0"/>
|
|
|
|
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
|
|
on how to target different products -->
|
|
<!-- uncomment to enable plugin in all products
|
|
<depends>com.intellij.modules.lang</depends>
|
|
-->
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<toolWindow id="Sample Calendar" secondary="true" icon="/myToolWindow/plus.png" anchor="right"
|
|
factoryClass="myToolWindow.MyToolWindowFactory"/>
|
|
|
|
</extensions>
|
|
|
|
<actions>
|
|
<!-- Add your actions here -->
|
|
</actions>
|
|
|
|
</idea-plugin> |