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 org.eclipse.swt.events.MenuDetectListener; 14 15 16 public import org.eclipse.swt.internal.SWTEventListener; 17 public import org.eclipse.swt.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 : SWTEventListener { 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 }