1 /******************************************************************************* 2 * Copyright (c) 2000, 2008 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 * Port to the D programming language: 11 * Frank Benoit <benoit@tionex.de> 12 *******************************************************************************/ 13 module org.eclipse.swt.events.ControlAdapter; 14 15 import org.eclipse.swt.events.ControlListener; 16 /** 17 * This adapter class provides default implementations for the 18 * methods described by the <code>ControlListener</code> interface. 19 * <p> 20 * Classes that wish to deal with <code>ControlEvent</code>s can 21 * extend this class and override only the methods which they are 22 * interested in. 23 * </p> 24 * 25 * @see ControlListener 26 * @see ControlEvent 27 * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a> 28 */ 29 public abstract class ControlAdapter : ControlListener { 30 31 /** 32 * Sent when the location (x, y) of a control changes relative 33 * to its parent (or relative to the display, for <code>Shell</code>s). 34 * The default behavior is to do nothing. 35 * 36 * @param e an event containing information about the move 37 */ 38 public void controlMoved(ControlEvent e) { 39 } 40 41 /** 42 * Sent when the size (width, height) of a control changes. 43 * The default behavior is to do nothing. 44 * 45 * @param e an event containing information about the resize 46 */ 47 public void controlResized(ControlEvent e) { 48 } 49 }