/******************************************************************************* * Copyright (c) 2004, 2005 QNX Software Systems 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: * QNX Software Systems - Initial API and implementation *******************************************************************************/ package org.eclipse.cdt.debug.internal.ui.actions; import org.eclipse.cdt.debug.core.model.ICModule; import org.eclipse.jface.action.IAction; import org.eclipse.jface.viewers.ISelection; import org.eclipse.jface.viewers.ISelectionChangedListener; import org.eclipse.jface.viewers.ISelectionProvider; import org.eclipse.jface.viewers.IStructuredSelection; import org.eclipse.jface.viewers.StructuredSelection; import org.eclipse.ui.IObjectActionDelegate; import org.eclipse.ui.IWorkbenchPart; import org.eclipse.ui.actions.ActionDelegate; import org.eclipse.ui.dialogs.PropertyDialogAction; /** * Module Properties action delegate. */ public class ModulesPropertiesActionDelegate extends ActionDelegate implements IObjectActionDelegate { private ICModule fModule; private IWorkbenchPart fTargetPart; /** * Constructor for ModulesPropertiesActionDelegate. */ public ModulesPropertiesActionDelegate() { super(); } protected ICModule getModule() { return fModule; } private void setModule( ICModule module ) { fModule = module; } /* (non-Javadoc) * @see org.eclipse.ui.IObjectActionDelegate#setActivePart(org.eclipse.jface.action.IAction, org.eclipse.ui.IWorkbenchPart) */ public void setActivePart( IAction action, IWorkbenchPart targetPart ) { fTargetPart = targetPart; } /* (non-Javadoc) * @see org.eclipse.ui.IActionDelegate#run(org.eclipse.jface.action.IAction) */ public void run( IAction action ) { PropertyDialogAction propertyAction = new PropertyDialogAction( getActivePart().getSite(), new ISelectionProvider() { public void addSelectionChangedListener( ISelectionChangedListener listener ) { } public ISelection getSelection() { return new StructuredSelection( getModule() ); } public void removeSelectionChangedListener( ISelectionChangedListener listener ) { } public void setSelection( ISelection selection ) { } } ); propertyAction.run(); } /* (non-Javadoc) * @see org.eclipse.ui.IActionDelegate#selectionChanged(org.eclipse.jface.action.IAction, org.eclipse.jface.viewers.ISelection) */ public void selectionChanged( IAction action, ISelection selection ) { if ( selection instanceof IStructuredSelection ) { Object element = ((IStructuredSelection)selection).getFirstElement(); if ( element instanceof ICModule ) { action.setEnabled( true ); setModule( (ICModule)element ); return; } } action.setEnabled( false ); setModule( null ); } protected IWorkbenchPart getActivePart() { return fTargetPart; } }