Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 13d2ee5f5cdad47d9308ea7a37b0d92f5f3ae6ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*******************************************************************************
 * Copyright (c) 2011 Anton Gorenkov 
 * 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:
 *     Anton Gorenkov - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.testsrunner.internal.ui.view.actions;


import org.eclipse.cdt.testsrunner.internal.TestsRunnerPlugin;
import org.eclipse.cdt.testsrunner.internal.ui.view.ResultsPanel;
import org.eclipse.jface.action.Action;

/**
 * Toggles the filter for the passed test items.
 */
public class ShowFailedOnlyAction extends Action {

	private ResultsPanel resultsPanel;


	public ShowFailedOnlyAction(ResultsPanel resultsPanel) {
		super("", AS_CHECK_BOX); //$NON-NLS-1$
		this.resultsPanel = resultsPanel;
		setText(ActionsMessages.ShowFailedOnlyAction_text);
		setToolTipText(ActionsMessages.ShowFailedOnlyAction_tooltip);
		setImageDescriptor(TestsRunnerPlugin.getImageDescriptor("obj16/show_failed_only.gif")); //$NON-NLS-1$
		setChecked(resultsPanel.getShowFailedOnly());
	}

	@Override
	public void run() {
		resultsPanel.setShowFailedOnly(isChecked());
	}

}

Back to the top