comparison dwt/events/MouseAdapter.d @ 9:ad2b69216039

moved org.eclipse.swt to dwt
author Frank Benoit <benoit@tionex.de>
date Sat, 05 Jan 2008 17:39:49 +0100
parents org/eclipse/swt/events/MouseAdapter.d@5dfd6e42e2ef
children 63c023465156
comparison
equal deleted inserted replaced
8:a1f832ca7d17 9:ad2b69216039
1 /*******************************************************************************
2 * Copyright (c) 2000, 2004 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 *******************************************************************************/
11 module org.eclipse.swt.events.MouseAdapter;
12
13 import org.eclipse.swt.events.MouseListener;
14
15 /**
16 * This adapter class provides default implementations for the
17 * methods described by the <code>MouseListener</code> interface.
18 * <p>
19 * Classes that wish to deal with <code>MouseEvent</code>s
20 * which occur as mouse buttons are pressed and released can
21 * extend this class and override only the methods which they are
22 * interested in.
23 * </p>
24 *
25 * @see MouseListener
26 * @see MouseEvent
27 */
28 public abstract class MouseAdapter : MouseListener {
29
30 /**
31 * Sent when a mouse button is pressed twice within the
32 * (operating system specified) double click period.
33 * The default behavior is to do nothing.
34 *
35 * @param e an event containing information about the mouse double click
36 *
37 * @see org.eclipse.swt.widgets.Display#getDoubleClickTime()
38 */
39 public void mouseDoubleClick(MouseEvent e) {
40 }
41
42 /**
43 * Sent when a mouse button is pressed.
44 * The default behavior is to do nothing.
45 *
46 * @param e an event containing information about the mouse button press
47 */
48 public void mouseDown(MouseEvent e) {
49 }
50
51 /**
52 * Sent when a mouse button is released.
53 * The default behavior is to do nothing.
54 *
55 * @param e an event containing information about the mouse button release
56 */
57 public void mouseUp(MouseEvent e) {
58 }
59 }