Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b54a492649b605ec715c8cc8fdb673ef05ad51fd (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
/*******************************************************************************
 * Copyright (c) 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 API and implementation
 *******************************************************************************/
package org.eclipse.debug.internal.ui.views.memory.renderings;

import org.eclipse.debug.core.model.IMemoryBlockExtension;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.ui.IObjectActionDelegate;
import org.eclipse.ui.IWorkbenchPart;

/**
 * Restore default endianess.
 * For IMemoryBlockExtension, default is governed by the attributes set
 * in its memory bytes.
 * For IMemoryBlock, default is big endian.
 *
 */
public class DefaultEndianessAction implements IObjectActionDelegate {

	AbstractIntegerRendering fRendering;
	public DefaultEndianessAction() {
		super();
	}

	@Override
	public void setActivePart(IAction action, IWorkbenchPart targetPart) {
	}

	@Override
	public void run(IAction action) {
		if (fRendering != null)
		{
			if (fRendering.getMemoryBlock() instanceof IMemoryBlockExtension)
			{
				fRendering.setDisplayEndianess(RenderingsUtil.ENDIANESS_UNKNOWN);
			}
			else
			{
				fRendering.setDisplayEndianess(RenderingsUtil.BIG_ENDIAN);
			}
			fRendering.refresh();
		}

	}

	@Override
	public void selectionChanged(IAction action, ISelection selection) {
		if (selection == null)
			return;

		if (selection instanceof IStructuredSelection)
		{
			Object obj = ((IStructuredSelection)selection).getFirstElement();
			if (obj == null)
				return;

			if (obj instanceof AbstractIntegerRendering)
			{
				fRendering = (AbstractIntegerRendering)obj;
			}
		}
	}

}

Back to the top