Hallo!
In meinem aktuellen Projekt(Eclipse RCP), nutze ich über einen Extension Point die Toolbar:
toolbarrg.eclipse.ui.main.toolbar
Plugin.xml:
[XML]
<menuContribution locationURI="toolbarrg.eclipse.ui.main.toolbar">
<toolbar
id="com.myProject.ui.toolbars.main.newProject">
<command
commandId="com.myProject.ui.commands.newProject"
icon="icons/add.png"
style="push">
</command>
<command
commandId="org.eclipse.ui.file.save"
icon="icons/disk.png"
style="push">
</command>
<command
commandId="com.myProject.ui.commands.delete"
icon="icons/delete.png"
style="push">
</command>
<command
commandId="com.myProject.ui.commands.refresh"
icon="icons/arrow_refresh.png"
style="push">
</command>
</toolbar>
</menuContribution>
[/XML]
Beim ausführen krieg ich aber mehr Icons / Commands als ich eigentlich wollte...
Das grüne Plus - Zeichen, die Diskette, das Stop Schild und die beiden Pfeile sind von mir. Die anderen drei Icons werden automatisch hinzugefügt. Kann mir jemand sagen, warum das passiert und wie ich das unterbinden kann? Fische da momentan etwas im Trüben...
Dankeschön!
In meinem aktuellen Projekt(Eclipse RCP), nutze ich über einen Extension Point die Toolbar:
toolbarrg.eclipse.ui.main.toolbar
Plugin.xml:
[XML]
<menuContribution locationURI="toolbarrg.eclipse.ui.main.toolbar">
<toolbar
id="com.myProject.ui.toolbars.main.newProject">
<command
commandId="com.myProject.ui.commands.newProject"
icon="icons/add.png"
style="push">
</command>
<command
commandId="org.eclipse.ui.file.save"
icon="icons/disk.png"
style="push">
</command>
<command
commandId="com.myProject.ui.commands.delete"
icon="icons/delete.png"
style="push">
</command>
<command
commandId="com.myProject.ui.commands.refresh"
icon="icons/arrow_refresh.png"
style="push">
</command>
</toolbar>
</menuContribution>
[/XML]
Beim ausführen krieg ich aber mehr Icons / Commands als ich eigentlich wollte...
Das grüne Plus - Zeichen, die Diskette, das Stop Schild und die beiden Pfeile sind von mir. Die anderen drei Icons werden automatisch hinzugefügt. Kann mir jemand sagen, warum das passiert und wie ich das unterbinden kann? Fische da momentan etwas im Trüben...
Dankeschön!