Re: [qooxdoo-devel] mouse coordinates relative to widget

2008-06-24 Thread asaris
Thank you. Never looked in qx.bom namespace. asaris Hugh Gibson wrote: Does qooxdoo supports mouse coordinates relative to target widget? I cannot find such feature. Asaris, you can find the coordinates of the target widget using: var oElement = oTargetWidget.getElement();

Re: [qooxdoo-devel] mouse coordinates relative to widget

2008-06-23 Thread Hugh Gibson
> Does qooxdoo supports mouse coordinates relative to target widget? > I cannot find such feature. Asaris, you can find the coordinates of the target widget using: var oElement = oTargetWidget.getElement(); var oPosition = qx.bom.element.Location.get(oElement); I use that for

[qooxdoo-devel] mouse coordinates relative to widget

2008-06-23 Thread asaris
Hi, Does qooxdoo supports mouse coordinates relative to target widget? I cannot find such feature. I'm working on workspace similar to eclipse, where end users can customize their view. The only bit left is to drag&drop tabview.Button into SplitPane.area by splitting SplitPane.area into new Sp