Re: Custom Composite widget inside horizontal split panel

2009-10-30 Thread www.netthreads.co.uk
I too have been wrestling with this. It's not quite there yet but I sat down after reading your post and I have got a bit further. It is possible to create a composite for HorizontalSplitPanel and set a listener to watch what the mouse is doing. I defined this below and a listener interface

Re: Custom Composite widget inside horizontal split panel

2009-10-30 Thread www.netthreads.co.uk
Sorry I missed the interface CODE package com.google.gwt.user.client.ui; import com.google.gwt.event.dom.client.MouseMoveEvent; public interface SplitterEventHandler { public void onMouseMove(MouseMoveEvent event); } CODE On Oct 30, 1:40 pm, www.netthreads.co.uk

Custom Composite widget inside horizontal split panel

2009-10-27 Thread renju
Hello friends, I have a horizontal split panel which has a tree on the left side and a custom widget on the right side. When the horizontal split panel is re-sized, my tree is resizing. But my custom widget is not resizing itself. Also I cannot override the onSplitterResize() inside