blob: d9aaca4fd8bbf9c275d3a58e8d56c003c3ebf774 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Tasktop Technologies and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.tasks.ui.actions;
import org.eclipse.jface.action.Action;
import org.eclipse.mylyn.commons.ui.CommonImages;
import org.eclipse.mylyn.internal.tasks.ui.ITasksUiPreferenceConstants;
import org.eclipse.mylyn.internal.tasks.ui.TasksUiPlugin;
import org.eclipse.mylyn.internal.tasks.ui.views.TaskListView;
public class FilterMyTasksAction extends Action {
public static final String ID = "org.eclipse.mylyn.tasklist.actions.filter.myTasks"; //$NON-NLS-1$
private final TaskListView view;
public FilterMyTasksAction(TaskListView view) {
this.view = view;
setText(Messages.FilterMyTasksAction_My_Tasks);
setToolTipText(Messages.FilterMyTasksAction_My_Tasks);
setId(ID);
setImageDescriptor(CommonImages.FILTER_MY_TASKS);
setChecked(TasksUiPlugin.getDefault()
.getPreferenceStore()
.contains(ITasksUiPreferenceConstants.FILTER_MY_TASKS_MODE));
}
@Override
public void run() {
TasksUiPlugin.getDefault()
.getPreferenceStore()
.setValue(ITasksUiPreferenceConstants.FILTER_MY_TASKS_MODE, isChecked());
if (isChecked()) {
view.addFilter(view.getMyTasksFilter());
} else {
view.removeFilter(view.getMyTasksFilter());
}
this.view.refresh();
}
}