All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.jface.action.ContributionItem Maven / Gradle / Ivy

There is a newer version: 3.29.0
Show newest version
/*******************************************************************************
 * Copyright (c) 2000, 2008 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.Composite;
import org.eclipse.swt.widgets.CoolBar;
import org.eclipse.swt.widgets.Menu;
import org.eclipse.swt.widgets.ToolBar;

/**
 * An abstract base implementation for contribution items.
 */
public abstract class ContributionItem implements IContributionItem {

    /**
     * The identifier for this contribution item, of null if none.
     */
    private String id = null;

    /**
     * Indicates this item is visible in its manager; true 
     * by default.
     */
    private boolean visible = true;

    /**
     * The parent contribution manager for this item
     */
    private IContributionManager parent;

    /**
     * Creates a contribution item with a null id.
     * Calls this(String) with null.
     */
    protected ContributionItem() {
        this(null);
    }

    /**
     * Creates a contribution item with the given (optional) id.
     * The given id is used to find items in a contribution manager,
     * and for positioning items relative to other items.
     *
     * @param id the contribution item identifier, or null
     */
    protected ContributionItem(String id) {
        this.id = id;
    }

    /**
     * The default implementation of this IContributionItem
     * method does nothing. Subclasses may override.
     */
    public void dispose() {
    }

    /**
     * The default implementation of this IContributionItem
     * method does nothing. Subclasses may override.
     */
    public void fill(Composite parent) {
    }

    /**
     * The default implementation of this IContributionItem
     * method does nothing. Subclasses may override.
     */
    public void fill(Menu menu, int index) {
    }

    /**
     * The default implementation of this IContributionItem
     * method does nothing. Subclasses may override.
     */
    public void fill(ToolBar parent, int index) {
    }

    /**
     * The default implementation of this IContributionItem
     * method does nothing. Subclasses may override.
     * 
     */
    public void fill(CoolBar parent, int index) {
    }

    /**
     * The default implementation of this IContributionItem
     * method does nothing. Subclasses may override.
     * 
     */
    public void saveWidgetState() {
    }

    /* (non-Javadoc)
     * Method declared on IContributionItem.
     */
    public String getId() {
        return id;
    }

    /**
     * Returns the parent contribution manager, or null if this 
     * contribution item is not currently added to a contribution manager.
     * 
     * @return the parent contribution manager, or null
     */
    public IContributionManager getParent() {
        return parent;
    }

    /**
     * The default implementation of this IContributionItem
     * method returns false. Subclasses may override.
     */
    public boolean isDirty() {
        // @issue should this be false instead of calling isDynamic()?
        return isDynamic();
    }

    /**
     * The default implementation of this IContributionItem
     * method returns true. Subclasses may override.
     */
    public boolean isEnabled() {
        return true;
    }

    /**
     * The default implementation of this IContributionItem
     * method returns false. Subclasses may override.
     */
    public boolean isDynamic() {
        return false;
    }

    /**
     * The default implementation of this IContributionItem
     * method returns false. Subclasses may override.
     */
    public boolean isGroupMarker() {
        return false;
    }

    /**
     * The default implementation of this IContributionItem
     * method returns false. Subclasses may override.
     */
    public boolean isSeparator() {
        return false;
    }

    /**
     * The default implementation of this IContributionItem
     * method returns the value recorded in an internal state variable,
     * which is true by default. setVisible
     * should be used to change this setting.
     */
    public boolean isVisible() {
        return visible;
    }

    /**
     * The default implementation of this IContributionItem
     * method stores the value in an internal state variable,
     * which is true by default.
     */
    public void setVisible(boolean visible) {
        this.visible = visible;
    }

    /**
     * Returns a string representation of this contribution item 
     * suitable only for debugging.
     */
    public String toString() {
        return getClass().getName() + "(id=" + getId() + ")";//$NON-NLS-2$//$NON-NLS-1$
    }

    /**
     * The default implementation of this IContributionItem
     * method does nothing. Subclasses may override.
     */
    public void update() {
    }

    /* (non-Javadoc)
     * Method declared on IContributionItem.
     */
    public void setParent(IContributionManager parent) {
        this.parent = parent;
    }

    /**
     * The ContributionItem implementation of this 
     * method declared on IContributionItem does nothing.
     * Subclasses should override to update their state.
     */
    public void update(String id) {
    }
    
    /**
	 * The ID for this contribution item. It should be set once either in the
	 * constructor or using this method.
	 * 
	 * @param itemId
	 * @since 1.1
	 * @see #getId()
	 */
    public void setId(String itemId) {
    	id = itemId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy