blob: bdbf993179f898f0c57944178412dd4cb51abe71 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.examples.presentation.wrappedtabs;
import org.eclipse.jface.action.ContributionItem;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.widgets.Menu;
import org.eclipse.swt.widgets.MenuItem;
/**
* @since 3.0
*/
public class CloseAllContributionItem extends ContributionItem {
private WrappedTabsPartPresentation presentation;
private SelectionAdapter selectionListener = new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
presentation.close(presentation.getParts());
}
};
public CloseAllContributionItem(WrappedTabsPartPresentation presentation) {
this.presentation = presentation;
}
public void dispose() {
super.dispose();
presentation = null;
selectionListener = null;
}
public void fill(Menu menu, int index) {
if (presentation.getParts().length > 1) {
MenuItem item = new MenuItem(menu, SWT.NONE, index);
item.setText("Close all");
item.addSelectionListener(selectionListener);
}
}
public boolean isDynamic() {
// Returning true here ensures that the fill(...) method will be called whenever
// the context menu opens
return true;
}
}