Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [e4-dev] Variables Icon Paths

Hi Daniel,

In javafx CSS i'd write if the ToolItem has the ID 'save':

#save:enabled {
  -fx-graphic: url("platform:/bla/my/enabled/image.css");
}

#save:disabled {
  -fx-graphic: url("platform:/bla/my/disabled/image.css");
}

Tom

On 23.01.14 09:57, Daniel Rolka wrote:
> Hi,
> 
> Do you have any CSS snippet with the use case fot it?
> 
> thanks,
> Daniel
> 
> IBM SWG Lab, Cracow, Poland
> 
> IBM Polska Sp. z o.o. oddział w Krakowie
> ul. Armii Krajowej 18
> 30 -150 Kraków
> tel. +48 12 628 9993
> 
> NIP: 526-030-07-24
> Sąd Rejonowy dla m.st. Warszawy, XIII Wydział Gospodarczy KRS
> KRS 0000012941, Kapitał zakładowy: 34.650.000 PLN
> 
> 
> From: 	Tom Schindl <tom.schindl@xxxxxxxxxxxxxxx>
> To: 	E4 Project developer mailing list <e4-dev@xxxxxxxxxxx>,
> Date: 	01/23/2014 09:27 AM
> Subject: 	[e4-dev] Variables Icon Paths
> Sent by: 	e4-dev-bounces@xxxxxxxxxxx
> 
> 
> ------------------------------------------------------------------------
> 
> 
> 
> Hi,
> 
> While reading an article from Marc Teufel on an Eclipse 4 application it
> reminded me of something I wanted to purpose since some time already (I
> also saw a bug flying by to allow one to control the icons via CSS!).
> 
> Anyways here we go. The idea is fairly simple and already known from 3.x
> where one can use a fixed set of variables in the image paths.
> 
> I'd like to extend this to use all variables of the IEclipseContext so
> one can write an image URL like this:
> 
> platform:/plugin/icons/${themeId}/${enabled}/img.png
> 
> What do you think, does this make sense?
> 
> Tom
> _______________________________________________
> e4-dev mailing list
> e4-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/e4-dev
> 
> 
> 
> 
> 
> _______________________________________________
> e4-dev mailing list
> e4-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/e4-dev
> 



Back to the top