comparison dwt/custom/ExtendedModifyListener.d @ 41:6337764516f1

Sync dwt/custom with dwt-linux (took copy of complete folder)
author Frank Benoit <benoit@tionex.de>
date Tue, 07 Oct 2008 16:29:55 +0200
parents 380af2bdd8e5
children
comparison
equal deleted inserted replaced
40:fbe68c33eeee 41:6337764516f1
1 /******************************************************************************* 1 /*******************************************************************************
2 * Copyright (c) 2000, 2005 IBM Corporation and others. 2 * Copyright (c) 2000, 2008 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials 3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0 4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at 5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html 6 * http://www.eclipse.org/legal/epl-v10.html
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * IBM Corporation - initial API and implementation 9 * IBM Corporation - initial API and implementation
10 * Port to the D programming language:
11 * Frank Benoit <benoit@tionex.de>
10 *******************************************************************************/ 12 *******************************************************************************/
11 module dwt.custom; 13 module dwt.custom.ExtendedModifyListener;
12 14
13 import dwt.internal.DWTEventListener; 15 import dwt.internal.DWTEventListener;
16 import dwt.custom.ExtendedModifyEvent;
14 17
18 /**
19 * Classes which implement this interface provide a method
20 * that deals with the event that is generated when text
21 * is modified.
22 *
23 * @see ExtendedModifyEvent
24 * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
25 */
15 public interface ExtendedModifyListener : DWTEventListener { 26 public interface ExtendedModifyListener : DWTEventListener {
27
16 /** 28 /**
17 * This method is called after a text change occurs. 29 * This method is called after a text change occurs.
18 * <p> 30 * <p>
19 * The following event fields are used:<ul> 31 * The following event fields are used:<ul>
20 * <li>event.start the start offset of the new text (input)</li> 32 * <li>event.start the start offset of the new text (input)</li>