blob: fd623b6653c8558903c32b4d65a009b209ce4c1b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2005 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 implementation
*******************************************************************************/
package org.eclipse.debug.internal.ui.actions.breakpointGroups;
import org.eclipse.debug.internal.ui.IInternalDebugUIConstants;
import org.eclipse.debug.internal.ui.views.breakpoints.BreakpointContainer;
import org.eclipse.debug.internal.ui.views.breakpoints.BreakpointSetOrganizer;
import org.eclipse.debug.internal.ui.views.breakpoints.WorkingSetCategory;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.ui.IWorkingSet;
/**
* Toggles the default breakpoint group based on selection.
*/
public class ToggleDefaultGroupAction extends AbstractBreakpointsViewAction {
private IWorkingSet fSelectedSet;
/* (non-Javadoc)
* @see org.eclipse.ui.IActionDelegate#run(org.eclipse.jface.action.IAction)
*/
public void run(IAction action) {
IWorkingSet defaultWorkingSet = BreakpointSetOrganizer.getDefaultWorkingSet();
IWorkingSet set = null;
if (!fSelectedSet.equals(defaultWorkingSet)) {
set = fSelectedSet;
}
BreakpointSetOrganizer.setDefaultWorkingSet(set);
}
/* (non-Javadoc)
* @see org.eclipse.ui.IActionDelegate#selectionChanged(org.eclipse.jface.action.IAction, org.eclipse.jface.viewers.ISelection)
*/
public void selectionChanged(IAction action, ISelection sel) {
fSelectedSet = null;
if (sel instanceof IStructuredSelection) {
IStructuredSelection selection = (IStructuredSelection) sel;
if (selection.size() == 1) {
Object firstElement = selection.getFirstElement();
if (firstElement instanceof BreakpointContainer) {
BreakpointContainer container = (BreakpointContainer) firstElement;
if (container.getCategory() instanceof WorkingSetCategory) {
WorkingSetCategory category = (WorkingSetCategory)container.getCategory();
if (IInternalDebugUIConstants.ID_BREAKPOINT_WORKINGSET.equals(category.getWorkingSet().getId())) {
IWorkingSet set = category.getWorkingSet();
action.setEnabled(true);
boolean isDefault = set == BreakpointSetOrganizer.getDefaultWorkingSet();
action.setChecked(isDefault);
fSelectedSet = set;
return;
}
}
}
}
}
action.setEnabled(false);
action.setChecked(false);
}
}