How to create a custom toolbar in Eclipse RCP applications where the toolbar contains large icons - eclipse

How to create a custom toolbar in Eclipse RCP applications where the toolbar contains large icons.
We would like to brand our application and allow larger in icons in perspective toolbars to make the user experience more comfortable.

aUse large icons.
the toolbar compute the icons size for the first icon,so you should put a large icon for the first icon.

Related

Give user ability to reduce icon size on activity bar

Is there a way for a user to reduce the icon size on the activity bar without it effecting the whole editor?
Perhaps similar to how Ubuntu allows the scaling of icons on the dock.
I use the activity bar and it's visual cues far to frequently to hide and unhide it, but it would be nice to reduce it's real-estate usage just a bit.
In VS Code Editor press CTRL+-, this will increase/decrease the size of the entire UI (all icons, text and menu items, etc.).

Eclipse Plugin controls display

I'm working with plugin creation for eclipse, and its running fine. It looks good in desktop screens but when its viewed in Laptop screens, half of the screen controls are hidden. Pls help me on this, guide me on how to use a particular layout that will adjust controls appearance on different screens.

NetBeans: display only icons on window title

i've got 1024x600 resolution and cant afford a lot of windows opened in NetBeans.
Is there a way to display only icons in window title?
For example:
Icon1 Projects
Icon2 Files
Icon3 Services
...
Can it be like:
Icon1
Icon2
Icon3
?
Probably not. You may want to start NetBeans with --fontsize 10 or similar to save space. Also change toolbar to use small icons (right click in empty toolbar area to display its menu) or completely hide all its components. If I remember correctly they may have been a special switch to merge menu and toolbar to save space but you would have to scan sources and it is likely broken now.

Why some widgets do not get included in WindowBuilder?

Im using WindowBuilder tool to build a GUI for my application and I see that some widgets or tools don't get included in the Design view. In my case, I have created a new SWT Application window and I try to add DropDown Menu in the Application window and I always get a red icon when I take the DropDown menu from the palette to the design area. Can anyone tell me what is the problem in this case?
I found the mistake I was doing...It is not possible to directly add a DropDown Menu in the design editor. You first have to add a Menu and then add a DropDown Menu. And the widgets do work in all forms of applications you want to develop.

How to access to menu items?

I created a menu of RCP application only in plugin.xml. How to access to items of this menu programicaly to change their texts and images at runtime?
If you are using command framework to contribute those menu items, you can use org.eclipse.ui.commands.IElementUpdater to change the text and image.