01: /*******************************************************************************
02: * Copyright (c) 2000, 2006 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.ui;
11:
12: import org.eclipse.swt.widgets.Menu;
13:
14: /**
15: * Extension of IWorkbenchWindowPulldownDelegate that allows the delegate dropdown
16: * menu to be a child of a Menu item. Necessary for CoolBar support. If a coolbar
17: * group of items is not fully displayed, a chevron and a drop down menu will be
18: * used to show the group's tool items. Therefore, a getMenu(Menu) method is necessary,
19: * since the delegate drop down menu will be a child of the chevron menu item (not
20: * the tool control).
21: */
22: public interface IWorkbenchWindowPulldownDelegate2 extends
23: IWorkbenchWindowPulldownDelegate {
24: /**
25: * Returns the menu for this pull down action. This method will only be
26: * called if the user opens the pull down menu for the action. Note that it
27: * is the responsibility of the implementor to properly dispose of any SWT
28: * menus created by this method.
29: *
30: * @return the menu
31: */
32: public Menu getMenu(Menu parent);
33: }
|