view dwtx/jface/internal/provisional/action/IToolBarManager2.d @ 35:ef4534de0cf9

remaining files
author Frank Benoit <benoit@tionex.de>
date Sat, 05 Apr 2008 04:49:22 +0200
parents
children
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 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
 * Port to the D programming language:
 *     Frank Benoit <benoit@tionex.de>
 *******************************************************************************/
module dwtx.jface.internal.provisional.action.IToolBarManager2;


import dwt.widgets.Composite;
import dwt.widgets.Control;
import dwt.widgets.ToolBar;
import dwtx.jface.action.IContributionManagerOverrides;
import dwtx.jface.action.IToolBarManager;
import dwtx.jface.util.IPropertyChangeListener;

import dwt.dwthelper.utils;

/**
 * The <code>IToolBarManager2</code> extends <code>IToolBarManager</code> to
 * allow clients to be isolated from the actual kind of DWT control used by the
 * manager.
 * <p>
 * <strong>EXPERIMENTAL</strong>. This class or interface has been added as
 * part of a work in progress. There is a guarantee neither that this API will
 * work nor that it will remain the same. Please do not use this API without
 * consulting with the Platform/UI team.
 * </p>
 *
 * @since 3.2
 */
public interface IToolBarManager2 : IToolBarManager {

    /**
     * The property id for changes to the control's layout
     */
    public static final String PROP_LAYOUT = "PROP_LAYOUT"; //$NON-NLS-1$

    /**
     * Creates and returns this manager's toolbar control. Does not create a new
     * control if one already exists.
     *
     * @param parent
     *            the parent control
     * @return the toolbar control
     */
    public ToolBar createControl(Composite parent);

    /**
     * Creates and returns this manager's control. Does not create a new control
     * if one already exists.
     *
     * @param parent
     *            the parent control
     * @return the control
     */
    public Control createControl2(Composite parent);

    /**
     * Returns the toolbar control for this manager.
     *
     * @return the toolbar control, or <code>null</code> if none
     */
    public ToolBar getControl();

    /**
     * Returns the control for this manager.
     *
     * @return the control, or <code>null</code> if none
     */
    public Control getControl2();

    /**
     * Disposes the resources for this manager.
     */
    public void dispose();

    /**
     * Returns the item count of the control used by this manager.
     *
     * @return the number of items in the control
     */
    public int getItemCount();

    /**
     * Registers a property change listner with this manager.
     *
     * @param listener
     */
    public void addPropertyChangeListener(IPropertyChangeListener listener);

    /**
     * Removes a property change listner from this manager.
     *
     * @param listener
     */
    public void removePropertyChangeListener(IPropertyChangeListener listener);

    /**
     * Sets the overrides for this contribution manager
     *
     * @param newOverrides
     *            the overrides for the items of this manager
     */
    public void setOverrides(IContributionManagerOverrides newOverrides);

}