I need to customize look&feel of my RCP application. I took a look at Eclipse Presentation API and I suppose it allows to customize everithing in workbench except controls. So is there any solution to customize controls? I made some research work and implemented some ad-hoc SWT cunstomization using control canvas drawning. May be there are better solutions? In SWING you can use Synth theme. It would be geatefull if some 'skin' framework exists for SWT. Any help would be appreciated!
|
One way of customizing an RCP app is by using a plugin_customization.ini file. Like this:
You can then customize a lot of things simply by editing plugin_customization.ini file. For example, adding the following line
will give you rounded tabs on your views and editors (similar to those that Eclipse IDE has) instead of the default ones. Also, check out the Eclipse skins project, if you haven't already. There is also the possibility to use CSS to change the look & feel of your app, but that is still in development and can be buggy As for customizing the SWT controls themselves, the only way to do that (apart from small customizations such as changing the background colour of a control etc.) is by creating your own custom controls by extending Canvas or Composite, but you already know that. |
|||||||||
|
|
The new Eclipse 4 work contains plugins that allow the L&F to be customized using CSS. These plugins can be run in a 3.7 Eclipse environment. See Kai's blog for a presentation on the subject: http://www.toedter.com/blog/?p=477 The Eclipse 4 Styling Tutorial has a slide (p.66) on where to get an 3.7 based RCP example. |
|||||
|
|
Maybe Qt for SWT could be interesting for you, the project page can be found here Related blog-post: http://www.compeople.eu/blog/?p=39 |
|||
|
|
|
You might want to check these links: |
|||
|
|
