1 /******************************************************************************* 2 * Copyright (c) 2000, 2006 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 package org.eclipse.ui; 12 13 import org.eclipse.swt.widgets.Menu; 14 15 /** 16 * Extension of IWorkbenchWindowPulldownDelegate that allows the delegate dropdown 17 * menu to be a child of a Menu item. Necessary for CoolBar support. If a coolbar 18 * group of items is not fully displayed, a chevron and a drop down menu will be 19 * used to show the group's tool items. Therefore, a getMenu(Menu) method is necessary, 20 * since the delegate drop down menu will be a child of the chevron menu item (not 21 * the tool control). 22 */ 23 public interface IWorkbenchWindowPulldownDelegate2 extends 24 IWorkbenchWindowPulldownDelegate { 25 /** 26 * Returns the menu for this pull down action. This method will only be 27 * called if the user opens the pull down menu for the action. Note that it 28 * is the responsibility of the implementor to properly dispose of any SWT 29 * menus created by this method. 30 * 31 * @return the menu 32 */ 33 public Menu getMenu(Menu parent); 34 } 35