Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: dbfd833b77293d037148d1f1c0b0e1385cd5dcaa (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/*******************************************************************************
 * 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 java.util.ArrayList;
import java.util.Iterator;
import org.eclipse.cdt.debug.core.ICGlobalVariableManager;
import org.eclipse.cdt.debug.core.model.ICGlobalVariable;
import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.ui.IViewActionDelegate;
import org.eclipse.ui.IViewPart;
import org.eclipse.ui.actions.ActionDelegate;
 
/**
 * A delegate for the "Remove Globals" action.
 */
public class RemoveGlobalsActionDelegate extends ActionDelegate implements IViewActionDelegate {

	private IAction fAction;

	private ISelection fSelection;

	/* (non-Javadoc)
	 * @see org.eclipse.ui.IViewActionDelegate#init(org.eclipse.ui.IViewPart)
	 */
	public void init( IViewPart view ) {
	}

	/* (non-Javadoc)
	 * @see org.eclipse.ui.IActionDelegate2#init(org.eclipse.jface.action.IAction)
	 */
	public void init( IAction action ) {
		setAction( action );
		update();
	}

	/* (non-Javadoc)
	 * @see org.eclipse.ui.IActionDelegate#run(org.eclipse.jface.action.IAction)
	 */
	public void run( IAction action ) {
		ISelection selection = getSelection();
		if ( !(selection instanceof IStructuredSelection) )
			return;
		IStructuredSelection ss = (IStructuredSelection)selection;
		final Iterator it = ss.iterator();
		ArrayList list = new ArrayList( ss.size() );
		while( it.hasNext() ) {
			Object obj = it.next();
			if ( obj instanceof ICGlobalVariable )
				list.add( obj );
		}
		if ( list.size() == 0 )
			return;
		final ICGlobalVariable[] globals = (ICGlobalVariable[])list.toArray( new ICGlobalVariable[list.size()] );
		final ICGlobalVariableManager gvm = (ICGlobalVariableManager)globals[0].getDebugTarget().getAdapter( ICGlobalVariableManager.class );
		if ( gvm == null )
			return;
		Runnable r = new Runnable() {
							public void run() {
								gvm.removeGlobals( globals );
							}
						};
		DebugPlugin.getDefault().asyncExec( r );
	}

	/*
	 * (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 ) {
		setSelection( selection );
		update();
	}

	protected IAction getAction() {
		return fAction;
	}

	protected ISelection getSelection() {
		return fSelection;
	}

	private void setAction( IAction action ) {
		fAction = action;
	}

	private void setSelection( ISelection selection ) {
		fSelection = selection;
	}

	private void update() {
		IAction action = getAction();
		if ( action != null ) {
			ISelection selection = getSelection();
			boolean enabled = false;
			if ( selection instanceof IStructuredSelection ) {
				Iterator it = ((IStructuredSelection)selection).iterator();
				while( it.hasNext() ) {
					if ( it.next() instanceof ICGlobalVariable ) {
						enabled = true;
						break;
					}
				}
			}
			action.setEnabled( enabled );
		}	
	}
}

Back to the top