⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 icoolbarmanager.java

📁 jfa2ce 源码帮助开发人员更好的理解运用
💻 JAVA
字号:
/******************************************************************************* * Copyright (c) 2003, 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: *     IBM Corporation - initial API and implementation *******************************************************************************/package org.eclipse.jface.action;import org.eclipse.swt.widgets.CoolBar;/** * The <code>ICoolBarManager</code> interface provides protocol for managing * contributions to a cool bar. A cool bar manager delegates responsibility for * creating child controls to its contribution items by calling * {@link IContributionItem#fill(CoolBar, int)}. * <p> * This interface is internal to the framework; it should not be implemented * outside the framework. This package provides a concrete cool bar manager * implementation, {@link CoolBarManager}, which * clients may instantiate or subclass. * </p> *  * @see ToolBarContributionItem * @since 3.0 */public interface ICoolBarManager extends IContributionManager {    /**     * Property name of a cool item's size (value <code>"size"</code>).     * <p>     * The cool bar manager uses this property to tell its cool items to update     * their size.     * </p>     *      * @see IContributionItem#update(String) @issue consider declaring this     *      constant elsewhere     */    public static final String SIZE = "size"; //$NON-NLS-1$    /**     * A convenience method to add a tool bar as a contribution item to this     * cool bar manager. Equivalent to <code>add(new ToolBarContributionManager(toolBarManager))</code>.     *      * @param toolBarManager     *            the tool bar manager to be added     * @see ToolBarContributionItem     */    public void add(IToolBarManager toolBarManager);    /**     * Returns the context menu manager used by this cool bar manager. This     * context menu manager is used by the cool bar manager except for cool     * items that provide their own.     *      * @return the context menu manager, or <code>null</code> if none     * @see #setContextMenuManager     */    public IMenuManager getContextMenuManager();    /**     * Returns whether the layout of the underlying cool bar widget is locked.     *      * @return <code>true</code> if cool bar layout is locked, <code>false</code>     *         otherwise     */    public boolean getLockLayout();    /**     * Returns the style of the underlying cool bar widget.     *      * @return the style of the cool bar     */    public int getStyle();    /**     * Sets the context menu of this cool bar manager to the given menu     * manager.     *      * @param menuManager     *            the context menu manager, or <code>null</code> if none     * @see #getContextMenuManager     */    public void setContextMenuManager(IMenuManager menuManager);    /**     * Locks or unlocks the layout of the underlying cool bar widget. Once the     * cool bar is locked, cool items cannot be repositioned by the user.     * <p>     * Note that items can be added or removed programmatically even while the     * cool bar is locked.     * </p>     *      * @param value     *            <code>true</code> to lock the cool bar, <code>false</code>     *            to unlock     */    public void setLockLayout(boolean value);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -