Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-dev] Hiding/removing default IDE options in eclipse application

Please post questions like this to the eclipse.platform.rcp newsgroup, not 
the *-dev mailing lists.  There have been many discussions about the use 
of the IDE plug-in there.
See also
http://eclipse.org/rcp/faq.html#idePlugin

Nick




"Chethan Rn" <Chethan.Rn@xxxxxxxxxx> 
Sent by: platform-dev-bounces@xxxxxxxxxxx
11/09/2005 10:43 AM
Please respond to
"Eclipse platform general developers list."


To
platform-dev@xxxxxxxxxxx
cc

Subject
[platform-dev] Hiding/removing default IDE options in eclipse application






Hello,
In eclipse application,
Window->Open Perspective -> Custom_ABC Perspective
Apart from this by default we get resource perspective. I tried removing 
the perspective from registry(reg.deletePerspective(desc)).

PerspectiveRegistry reg = 
(PerspectiveRegistry)WorkbenchPlugin.getDefault().getPerspectiveRegistry();
 IPerspectiveDescriptor desc = reg.getPerspectives()[1];
 reg.deletePerspective(desc); 
 
But deletePerspective does work as it is checking for predefined 
flag(PerspectiveRegistry.java). 
 
The requirement is to supress all default options like
1) Hiding resource perpective as discussed above
2) Hide File - > New ->Other menu , shows up "Simple" folder apart from 
the default one.
3) And to disable shortcuts
 
Can anybody throw some light on hiding/removing these default IDE options.
Thanks
Chetu
_______________
Siebel
IT'S ALL ABOUT THE CUSTOMER
Visit www.siebel.com

This e-mail message is for the sole use of the intended recipient(s) and 
contains confidential and/or privileged information belonging to Siebel 
Systems, Inc. or its customers or partners. Any unauthorized review, use, 
copying, disclosure or distribution of this message is strictly 
prohibited. If you are not an intended recipient of this message, please 
contact the sender by reply e-mail and destroy all soft and hard copies of 
the message and any attachments. Thank you for your cooperation.
_______________________________________________
platform-dev mailing list
platform-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/platform-dev




Back to the top