1 /*2 SwingWT3 Copyright(c)2003-2004, Tomer Bartletz4 5 For more information on distributing and using this program, please6 see the accompanying "COPYING" file.7 8 Contact me by electronic mail: tomerb@users.sourceforge.net9 10 $Log: Autoscroll.java,v $11 Revision 1.2 2003/12/22 08:48:17 bobintetley12 Fixed up DnD to build temporarily13 14 15 */16 package swingwt.awt.dnd;17 18 import swingwt.awt.Insets;19 20 import org.eclipse.swt.graphics.Point;21 22 /**23 * 24 * 25 * @author Tomer Barletz, tomerb@users.sourceforge.net26 * @version 0.127 */28 public interface Autoscroll {29 30 /**31 * Returns the insets of the container32 */33 public Insets getAutoscrollInsets();34 35 /**36 * notify the coponent to autoscroll37 * @param cursorLocn the location of the cursor38 */39 public void autoscroll(Point cursorLocn);40 }41