java - Configure Application Toolbar -
i want customize application toolbar own needs. long time ago played around (and did impressive customizations) abstractpresentationfactory
.
however extension point removed , replaced with... not sure, documentation states it's org.eclipse.e4.ui.css.swt.theme
, don't see how extension point helps cause @ all.
i managed guess way implementing solution makes texts blue:
plugin.xml
<extension point="org.eclipse.e4.ui.css.swt.theme"> <theme basestylesheeturi="content/test.css" id="myfirsttheme" label="my first theme" /> </extension> <extension id="application" point="org.eclipse.core.runtime.products"> <product application="org.acme.project" name="project"> <property name="csstheme" value="myfirsttheme" /> </product> </extension>
test.css
text { color: color-cyan; }
now what? how configure main toolbar using mechanism? there documentation how css file should , can configured? or kind of rule?
(since google shows "hello world" examples , source code, assume there yet again no documentation. in case precise problem i'm facing is: want make toolbar buttons bigger , add text below image.)
Comments
Post a Comment