我正在开发一个插件,我在其中创建了一个带有一些按钮的自定义工具栏。我选择其中一个像eclipse一样运行按钮。如何将此选项添加到此下拉列表中,如图片所示?
我用来添加自定义工具栏的代码如下所示:
<extension
point="org.eclipse.ui.commands">
<category
id="com.example.customproject.commands.category.customgroup"
name="CustomGroup">
</category>
<command
categoryId="com.example.customproject.commands.category.customgroup"
id="com.example.customproject.commands.Build"
name="Build">
</command>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
class="com.example.customproject.handlers.BuildHandler"
commandId="com.example.customproject.commands.Build">
</handler>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="menu:org.eclipse.ui.main.menu?after=additions">
<menu
id="com.example.customproject.menus.CustomMenu"
label="Custom Tools"
mnemonic="M">
<command
commandId="com.example.customproject.commands.Build"
id="com.example.customproject.menus.buildCommand"
mnemonic="S">
</command>
</menu>
</menuContribution>
<menuContribution
locationURI="toolbar:org.eclipse.ui.main.toolbar?after=additions">
<toolbar
id="com.example.customproject.toolbars.CustomToolbar">
<command
commandId="com.example.customproject.commands.Build"
icon="icons/build.gif"
style="pulldown"
id="com.example.customproject.toolbars.buildCommand"
tooltip="Build">
</command>
</toolbar>
</menuContribution>
</extension>
所以它基本上就像图片上的绿色按钮一样,但是当我点击它旁边的箭头时它没有任何选项。