root/dwt/events/MenuDetectListener.d

Revision 86:bef1ed4ebc50, 1.6 kB (checked in by Frank Benoit <benoit@tionex.de>, 10 months ago)

again copied events from dwt-linux

Line 
1 /*******************************************************************************
2  * Copyright (c) 2000, 2007 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.MenuDetectListener;
14
15
16 public import dwt.internal.DWTEventListener;
17 public import dwt.events.MenuDetectEvent;
18
19 /**
20  * Classes which implement this interface provide methods
21  * that deal with the events that are generated when the
22  * platform-specific trigger for showing a context menu is
23  * detected.
24  * <p>
25  * After creating an instance of a class that :
26  * this interface it can be added to a control or TrayItem
27  * using the <code>addMenuDetectListener</code> method and
28  * removed using the <code>removeMenuDetectListener</code> method.
29  * When the context menu trigger occurs, the
30  * <code>menuDetected</code> method will be invoked.
31  * </p>
32  *
33  * @see MenuDetectEvent
34  *
35  * @since 3.3
36  */
37 public interface MenuDetectListener : DWTEventListener {
38
39 /**
40  * Sent when the platform-dependent trigger for showing a menu item is detected.
41  *
42  * @param e an event containing information about the menu detect
43  */
44 public void menuDetected (MenuDetectEvent e);
45 }
Note: See TracBrowser for help on using the browser.