vote up 2 vote down star

I have an eclipse rcp and want to hide the security and help prerence pages. How can I do that?

flag
Belongs on SU. – Artem Russakovskii Sep 22 at 15:29
You mean you are the developer of the RCP software? – Mario Marinato -br- Sep 22 at 15:33
I am the devleoper, but the preference pages are from other plugins, like the help plugins. – Bosso Sep 23 at 7:07
Just added the preference page ids needed to hide the extra preference page (help and storage) – VonC Sep 23 at 10:44
Note: the activityPatternBinding in my answer was invisible due to an incorrect formatting of the xml code. I take it from the tick that you manage to hide your extra preference page I suppose? – VonC Sep 24 at 10:20
show 1 more comment

1 Answer

vote up 1 vote down check

According to this entry, you could use the "workbench activities" mechanism, and:

  • define separate activities corresponding to the different access levels
  • define your actions in regular action sets, grouped according to access level
  • associate each activity with the appropriate action sets via activityPatternBinding elements
  • set the enabled activity ids after authentication, early in the workbench lifecycle, e.g. from your WorkbenchAdvisor's preStartup() method.

(Note, the above was for a filtering based on user's permissions, but it could be generalize to other criteria.)


Regarding the preference pages for the storage and help, you should bind the id of those pages with an activity you know you can disable:

<activityPatternBinding
  activityId="org.eclipse.javaDevelopment"
  pattern="org\.eclipse\.help\..*/.*">
</activityPatternBinding>

would disable all menu/preferences/views related to help.

If you use org.eclipse.help.ui.PrefPageHelp\..*, it would only bind prefPageHelp and prefPageHelpContent.

If you add another activity binding extension with org.eclipse.equinox.security.ui.sec_storage_preferences_context, that would also take care of the Secure Storage preference page.

link|flag
I managed to hide my own views and prerference pages, but the preference pages for the storage and help remained :( – Bosso Sep 23 at 8:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.