comparison dwt/events/MouseAdapter.d @ 0:5406a8f6526d

Add initial files
author John Reimer <terminal.node@gmail.com
date Sun, 20 Jan 2008 21:50:55 -0800
parents
children fd9c62a2998e
comparison
equal deleted inserted replaced
-1:000000000000 0:5406a8f6526d
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 * Port to the D programming language:
11 * Frank Benoit <benoit@tionex.de>
12 *******************************************************************************/
13 module dwt.events.MouseAdapter;
14
15 import dwt.events.MouseListener;
16
17 /**
18 * This adapter class provides default implementations for the
19 * methods described by the <code>MouseListener</code> interface.
20 * <p>
21 * Classes that wish to deal with <code>MouseEvent</code>s
22 * which occur as mouse buttons are pressed and released can
23 * extend this class and override only the methods which they are
24 * interested in.
25 * </p>
26 *
27 * @see MouseListener
28 * @see MouseEvent
29 */
30 public abstract class MouseAdapter : MouseListener {
31
32 /**
33 * Sent when a mouse button is pressed twice within the
34 * (operating system specified) double click period.
35 * The default behavior is to do nothing.
36 *
37 * @param e an event containing information about the mouse double click
38 *
39 * @see dwt.widgets.Display#getDoubleClickTime()
40 */
41 public void mouseDoubleClick(MouseEvent e) {
42 }
43
44 /**
45 * Sent when a mouse button is pressed.
46 * The default behavior is to do nothing.
47 *
48 * @param e an event containing information about the mouse button press
49 */
50 public void mouseDown(MouseEvent e) {
51 }
52
53 /**
54 * Sent when a mouse button is released.
55 * The default behavior is to do nothing.
56 *
57 * @param e an event containing information about the mouse button release
58 */
59 public void mouseUp(MouseEvent e) {
60 }
61 }