I have a Viewpart (Eclipse 3), Is it possible to use e4 toolbar or e4 menu in a Viewpart,?. If possible how to do it.
Related
My IDE Release 4.7.0 (Oxygen) has many Icons like these:
Is there a way to customize the view?
In the 'Window > Perspective > Customize Perspective' dialog on the 'Tool Bar Visibility' tab you can enable or disable various groups of the tool bar buttons.
I am currently working with e4 application where I want to hide some toolbar buttons when the application is in certain perspective. In eclipse 3.x, I used to do it by perspective property tester using extension. But in e4, is there any way to do the same?
I want to implement the Drag and Drop that you can do with the buttons group on eclipse (positioned on the toolbar).
The purpose is allowing to drag them to the sides of the main window. it's possible?
I have built a RCP application with Intropage in HTML. I also have other perspectives in the application. How do call (or load) a perspective from a button click in the HTML intro page ?
You can find views like
PlatformUI.getWorkbench().getViewRegistry().find(id)
or perspectives like
PlatformUI.getWorkbench().getPerspectiveRegistry().getPerspectives()
I created a sample eclipse rcp application and create some Views.
I added a Window menu and under that added command org.eclipse.ui.window.showViewMenu
for showing the ShowView functionality of eclipse. But when I run my rcp application Showview is disabled.
How can I enable the ShowView menu for my rcp application? Even if it is enabled, will
I get option for Seeing only the views which I created associated with my eclipsed rcp application?