Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-ui-dev] How to put my new action to existing actionSet?

The comments in https://bugs.eclipse.org/bugs/show_bug.cgi?id=280033
might be of help.

However, this mailing list is not meant for these types of queries.
Please ask in the forums instead: http://eclipse.org/forums/

 - Prakash

"When the game ends, the king and pawn goes into the same box”
 - Italian proverb



On 3 August 2010 22:11, Ilya Ivanov <ilya.ivanov@xxxxxxxxxxxxxx> wrote:
> Hello,
>
> I have a question about action sets configuring. Would be great if someone
> could help me. Here's the problem:
> One third party plugin defines an action in the following way:
>
>  <extension point="org.eclipse.ui.actionSets">
>     <actionSet
>           id="x.y.z.navigation.additions"
>           label="Command Group"
>           visible="false">
>         <action
>             class="x.y.z.ThirdPartyAction"
>             icon="..."
>             id="x.y.z.someFeature"
>             label="..."
>             toolbarPath="..."
>             tooltip="...">
>         </action>         </actionSet>
>   </extension>
>
> My goal is to add my action to the same actionSet, so that it will appear
> under the same "Command Group" in Customize Perspective wizard.
> I tried to use same actionSet id and same label in my plugin. In this case
> two actions are put in one action set, but... there was created another
> empty action set (but with same name) which doesn't look nice.
>
> Is it possible to make such trick at all?
>
> Thanks,
> Ilya Ivanov
>
> --
> Ilya Ivanov, Java Software Developer
> ------------------------
> SimbirSoft Ltd, Bld. 2, 1 Narimanova Str, Ulyanovsk, Russia
> e-mail:ilya.ivanov@xxxxxxxxxxxxxx
>
> _______________________________________________
> platform-ui-dev mailing list
> platform-ui-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/platform-ui-dev
>


Back to the top