Re: [qooxdoo-devel] Highlighting an Image (hover)

2014-04-01 Thread Micha
Nice, thanks for the code. Michael On 27.03.2014 17:44, Daniel Wagner wrote: > Hi Michael, > > here's how to add a hover effect to an image: > > Extend qx.ui.basic.Image, assign a custom appearance id and add > listeners that add/remove the "hovered" state on mouseover/mouseout: > > qx.Class

Re: [qooxdoo-devel] Highlighting an Image (hover)

2014-03-27 Thread Daniel Wagner
Hi Michael, here's how to add a hover effect to an image: Extend qx.ui.basic.Image, assign a custom appearance id and add listeners that add/remove the "hovered" state on mouseover/mouseout: qx.Class.define("custom.HoverImage", { extend : qx.ui.basic.Image, construct : function(source)

[qooxdoo-devel] Highlighting an Image (hover)

2014-03-26 Thread Micha
Hi, even after reading the appearance, theme and decorator docs I just don't see how to configure a highlight effect for an basic.Image object (when hovered). ok, I can catch mouseover / mouseout and change the image to show, but I thought I can do this with theming ... How to do this? cheers,