blob: c6ea59530982124ae73fda2625e4004c5e0738d2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 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.ant.internal.ui.editor.outline;
import org.eclipse.ant.internal.ui.model.AntUIImages;
import org.eclipse.ant.internal.ui.model.IAntUIConstants;
import org.eclipse.jface.action.Action;
import org.eclipse.swt.custom.BusyIndicator;
/**
* An action which toggles filtering of properties from the Ant outline.
*/
public class FilterPropertiesAction extends Action {
private AntEditorContentOutlinePage fPage;
public FilterPropertiesAction(AntEditorContentOutlinePage page) {
super(AntOutlineMessages.getString("FilterPropertiesAction.0")); //$NON-NLS-1$
fPage = page;
setImageDescriptor(AntUIImages.getImageDescriptor(IAntUIConstants.IMG_FILTER_PROPERTIES));
setToolTipText(AntOutlineMessages.getString("FilterPropertiesAction.0")); //$NON-NLS-1$
setChecked(fPage.filterProperties());
}
/**
* Toggles the filtering of properties from the Ant outline
* @see org.eclipse.jface.action.IAction#run()
*/
public void run() {
BusyIndicator.showWhile(fPage.getControl().getDisplay(), new Runnable() {
public void run() {
fPage.setFilterProperties(isChecked());
}
});
}
}