I’ve just started playing with Eclipse RCP.
A few things that I would like to accomplish:
- How do I maximize the initial size of the application?
- I would like to create a sidebar type view on my left and would like to fix the size of that view and remove any title bar, minimize/ maximize/ close from that side-bar.
Can anyone help me please?
Thank you.
First, some tutorials like Vogella’s are a must read 😉
For 1/, this has to do with the
IWorkbenchWindowConfigurer, like:on
postWindowOpen( IWorkbenchWindowConfigurer configurer )of yourWorkbenchAdvisor.This thread has other alternatives.
For 2/, you can do it declaratively or by program, like this thread shows: