1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00

Bug 326636 - [disassembly][source lookup] Enable disassembly view as "editor"

This commit is contained in:
Anton Leherbauer 2010-11-10 06:50:00 +00:00
parent 78f40855d0
commit 85b40d1d99
5 changed files with 143 additions and 81 deletions

View file

@ -699,4 +699,15 @@
</factory> </factory>
</extension> </extension>
<extension
point="org.eclipse.ui.editors">
<editor
class="org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyEditor"
default="false"
icon="icons/disassembly.gif"
id="org.eclipse.cdt.dsf.ui.disassembly"
name="%disassemblyView.name">
</editor>
</extension>
</plugin> </plugin>

View file

@ -11,12 +11,17 @@
package org.eclipse.cdt.dsf.debug.internal.ui.disassembly; package org.eclipse.cdt.dsf.debug.internal.ui.disassembly;
import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jface.action.IMenuManager; import org.eclipse.jface.action.ToolBarManager;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.ToolBar;
import org.eclipse.ui.IActionBars; import org.eclipse.ui.IActionBars;
import org.eclipse.ui.IEditorInput; import org.eclipse.ui.IEditorInput;
import org.eclipse.ui.IEditorPart; import org.eclipse.ui.IEditorPart;
import org.eclipse.ui.IEditorSite; import org.eclipse.ui.IEditorSite;
import org.eclipse.ui.IWorkbenchActionConstants;
import org.eclipse.ui.PartInitException; import org.eclipse.ui.PartInitException;
/** /**
@ -25,6 +30,8 @@ import org.eclipse.ui.PartInitException;
public class DisassemblyEditor extends DisassemblyPart implements IEditorPart { public class DisassemblyEditor extends DisassemblyPart implements IEditorPart {
private IEditorInput fInput; private IEditorInput fInput;
private ToolBarManager fToolBarManager;
private Label fContentDescriptionLabel;
/** /**
* *
@ -33,21 +40,53 @@ public class DisassemblyEditor extends DisassemblyPart implements IEditorPart {
super(); super();
} }
/*
* @see org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyPart#createPartControl(org.eclipse.swt.widgets.Composite)
*/
@Override
public void createPartControl(Composite parent) {
GridLayout layout = new GridLayout(1, false);
layout.marginWidth = 0;
layout.marginHeight = 0;
layout.verticalSpacing = 0;
parent.setLayout(layout);
Composite topBar = new Composite(parent, SWT.NONE);
topBar.setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, false));
GridLayout layout2 = new GridLayout(2, false);
layout2.marginTop = 1;
layout2.marginLeft = 1;
layout2.marginWidth = 0;
layout2.marginHeight = 0;
topBar.setLayout(layout2);
fContentDescriptionLabel = new Label(topBar, SWT.NONE);
fContentDescriptionLabel.setLayoutData(new GridData(SWT.LEFT, SWT.TOP, true, false));
fToolBarManager = new ToolBarManager();
ToolBar toolbar = fToolBarManager.createControl(topBar);
toolbar.setLayoutData(new GridData(SWT.RIGHT, SWT.CENTER, true, false));
Composite inner = new Composite(parent, SWT.NONE);
inner.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
super.createPartControl(inner);
}
/*
* @see org.eclipse.ui.part.WorkbenchPart#setContentDescription(java.lang.String)
*/
@Override
protected void setContentDescription(String description) {
fContentDescriptionLabel.setText(description);
fContentDescriptionLabel.getParent().layout(true);
}
@Override @Override
protected IActionBars getActionBars() { protected IActionBars getActionBars() {
return getEditorSite().getActionBars(); return getEditorSite().getActionBars();
} }
/*
* @see org.eclipse.cdt.dsf.debug.internal.ui.disassembly.DisassemblyPart#fillContextMenu(org.eclipse.jface.action.IMenuManager)
*/
@Override @Override
protected void fillContextMenu(IMenuManager manager) { protected void contributeToActionBars(IActionBars bars) {
super.fillContextMenu(manager); super.contributeToActionBars(bars);
manager.appendToGroup(IWorkbenchActionConstants.GO_TO, fActionGotoPC); fillLocalToolBar(fToolBarManager);
manager.appendToGroup(IWorkbenchActionConstants.GO_TO, fActionGotoAddress); fToolBarManager.update(true);
manager.appendToGroup("group.bottom", fActionRefreshView); //$NON-NLS-1$
} }
/* /*

View file

@ -70,6 +70,8 @@ import org.eclipse.debug.core.IBreakpointManager;
import org.eclipse.debug.core.model.IBreakpoint; import org.eclipse.debug.core.model.IBreakpoint;
import org.eclipse.debug.core.sourcelookup.containers.LocalFileStorage; import org.eclipse.debug.core.sourcelookup.containers.LocalFileStorage;
import org.eclipse.debug.ui.DebugUITools; import org.eclipse.debug.ui.DebugUITools;
import org.eclipse.debug.ui.contexts.DebugContextEvent;
import org.eclipse.debug.ui.contexts.IDebugContextListener;
import org.eclipse.jface.action.Action; import org.eclipse.jface.action.Action;
import org.eclipse.jface.action.GroupMarker; import org.eclipse.jface.action.GroupMarker;
import org.eclipse.jface.action.IAction; import org.eclipse.jface.action.IAction;
@ -229,7 +231,7 @@ public abstract class DisassemblyPart extends WorkbenchPart implements IDisassem
private Color fLabelColor; private Color fLabelColor;
private Control fRedrawControl; private Control fRedrawControl;
private RGB fPCAnnotationRGB; private RGB fPCAnnotationRGB;
private Composite fComposite; protected Composite fComposite;
private DropTarget fDropTarget; private DropTarget fDropTarget;
private DragSource fDragSource; private DragSource fDragSource;
@ -325,6 +327,8 @@ public abstract class DisassemblyPart extends WorkbenchPart implements IDisassem
private AddressBarContributionItem fAddressBar = null; private AddressBarContributionItem fAddressBar = null;
private Action fJumpToAddressAction = new JumpToAddressAction(this); private Action fJumpToAddressAction = new JumpToAddressAction(this);
private IDebugContextListener fDebugContextListener;
private final class SyncActiveDebugContextAction extends Action { private final class SyncActiveDebugContextAction extends Action {
public SyncActiveDebugContextAction() { public SyncActiveDebugContextAction() {
setChecked(DisassemblyPart.this.isSyncWithActiveDebugContext()); setChecked(DisassemblyPart.this.isSyncWithActiveDebugContext());
@ -439,7 +443,7 @@ public abstract class DisassemblyPart extends WorkbenchPart implements IDisassem
private final class ActionToggleSource extends AbstractDisassemblyAction { private final class ActionToggleSource extends AbstractDisassemblyAction {
public ActionToggleSource() { public ActionToggleSource() {
super(DisassemblyPart.this); super(DisassemblyPart.this, IAction.AS_CHECK_BOX);
setText(DisassemblyMessages.Disassembly_action_ShowSource_label); setText(DisassemblyMessages.Disassembly_action_ShowSource_label);
} }
@Override @Override
@ -459,7 +463,7 @@ public abstract class DisassemblyPart extends WorkbenchPart implements IDisassem
private final class ActionToggleSymbols extends AbstractDisassemblyAction { private final class ActionToggleSymbols extends AbstractDisassemblyAction {
public ActionToggleSymbols() { public ActionToggleSymbols() {
super(DisassemblyPart.this); super(DisassemblyPart.this, IAction.AS_CHECK_BOX);
setText(DisassemblyMessages.Disassembly_action_ShowSymbols_label); setText(DisassemblyMessages.Disassembly_action_ShowSymbols_label);
} }
@Override @Override
@ -708,6 +712,13 @@ public abstract class DisassemblyPart extends WorkbenchPart implements IDisassem
protected void setSite(IWorkbenchPartSite site) { protected void setSite(IWorkbenchPartSite site) {
super.setSite(site); super.setSite(site);
site.getPage().addPartListener(fPartListener); site.getPage().addPartListener(fPartListener);
DebugUITools.getDebugContextManager().addDebugContextListener(fDebugContextListener = new IDebugContextListener() {
public void debugContextChanged(DebugContextEvent event) {
if ((event.getFlags() & DebugContextEvent.ACTIVATED) != 0) {
updateDebugContext();
}
}
});
} }
private DisassemblyDocument createDocument() { private DisassemblyDocument createDocument() {
@ -720,6 +731,10 @@ public abstract class DisassemblyPart extends WorkbenchPart implements IDisassem
*/ */
@Override @Override
public void dispose() { public void dispose() {
if (fDebugContextListener != null) {
DebugUITools.getDebugContextManager().removeDebugContextListener(fDebugContextListener);
fDebugContextListener = null;
}
IWorkbenchPartSite site = getSite(); IWorkbenchPartSite site = getSite();
site.setSelectionProvider(null); site.setSelectionProvider(null);
site.getPage().removePartListener(fPartListener); site.getPage().removePartListener(fPartListener);
@ -1200,7 +1215,6 @@ public abstract class DisassemblyPart extends WorkbenchPart implements IDisassem
manager.add(new Separator(ITextEditorActionConstants.GROUP_EDIT)); manager.add(new Separator(ITextEditorActionConstants.GROUP_EDIT));
manager.appendToGroup(ITextEditorActionConstants.GROUP_EDIT, fGlobalActions.get(ITextEditorActionConstants.COPY)); manager.appendToGroup(ITextEditorActionConstants.GROUP_EDIT, fGlobalActions.get(ITextEditorActionConstants.COPY));
manager.appendToGroup(ITextEditorActionConstants.GROUP_EDIT, fGlobalActions.get(ITextEditorActionConstants.SELECT_ALL)); manager.appendToGroup(ITextEditorActionConstants.GROUP_EDIT, fGlobalActions.get(ITextEditorActionConstants.SELECT_ALL));
// TODO add only if this is an editor
manager.add(new Separator(ITextEditorActionConstants.GROUP_SETTINGS)); manager.add(new Separator(ITextEditorActionConstants.GROUP_SETTINGS));
manager.add(fActionToggleSource); manager.add(fActionToggleSource);
manager.add(fActionToggleSymbols); manager.add(fActionToggleSymbols);
@ -1862,6 +1876,7 @@ public abstract class DisassemblyPart extends WorkbenchPart implements IDisassem
resetViewer(); resetViewer();
if (fDebugSessionId != null) { if (fDebugSessionId != null) {
fJumpToAddressAction.setEnabled(true); fJumpToAddressAction.setEnabled(true);
if (fAddressBar != null)
fAddressBar.enableAddressBox(true); fAddressBar.enableAddressBox(true);
int activeFrame = getActiveStackFrame(); int activeFrame = getActiveStackFrame();
@ -1880,6 +1895,7 @@ public abstract class DisassemblyPart extends WorkbenchPart implements IDisassem
fViewer.addViewportListener(this); fViewer.addViewportListener(this);
} else { } else {
fJumpToAddressAction.setEnabled(false); fJumpToAddressAction.setEnabled(false);
if (fAddressBar != null)
fAddressBar.enableAddressBox(false); fAddressBar.enableAddressBox(false);
fViewer.removeViewportListener(this); fViewer.removeViewportListener(this);
fGotoMarkerPending = null; fGotoMarkerPending = null;

View file

@ -12,9 +12,6 @@
package org.eclipse.cdt.dsf.debug.internal.ui.disassembly; package org.eclipse.cdt.dsf.debug.internal.ui.disassembly;
import org.eclipse.cdt.dsf.debug.internal.ui.disassembly.preferences.DisassemblyPreferenceConstants; import org.eclipse.cdt.dsf.debug.internal.ui.disassembly.preferences.DisassemblyPreferenceConstants;
import org.eclipse.debug.ui.DebugUITools;
import org.eclipse.debug.ui.contexts.DebugContextEvent;
import org.eclipse.debug.ui.contexts.IDebugContextListener;
import org.eclipse.jface.action.IMenuManager; import org.eclipse.jface.action.IMenuManager;
import org.eclipse.jface.action.Separator; import org.eclipse.jface.action.Separator;
import org.eclipse.ui.IActionBars; import org.eclipse.ui.IActionBars;
@ -31,8 +28,6 @@ import org.eclipse.ui.texteditor.ITextEditorActionConstants;
*/ */
public class DisassemblyView extends DisassemblyPart implements IViewPart { public class DisassemblyView extends DisassemblyPart implements IViewPart {
private IDebugContextListener fDebugContextListener;
/** /**
* *
*/ */
@ -72,14 +67,6 @@ public class DisassemblyView extends DisassemblyPart implements IViewPart {
if (syncContext != null) if (syncContext != null)
fSynchWithActiveDebugContext = syncContext; fSynchWithActiveDebugContext = syncContext;
} }
DebugUITools.getDebugContextManager().addDebugContextListener(fDebugContextListener = new IDebugContextListener() {
public void debugContextChanged(DebugContextEvent event) {
if ((event.getFlags() & DebugContextEvent.ACTIVATED) != 0) {
updateDebugContext();
}
}
});
} }
/* /*
@ -117,13 +104,4 @@ public class DisassemblyView extends DisassemblyPart implements IViewPart {
protected void closePart() { protected void closePart() {
getViewSite().getPage().hideView(this); getViewSite().getPage().hideView(this);
} }
@Override
public void dispose() {
if (fDebugContextListener != null) {
DebugUITools.getDebugContextManager().removeDebugContextListener(fDebugContextListener);
fDebugContextListener = null;
}
super.dispose();
}
} }

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2008, 2009 Wind River Systems, Inc. and others. * Copyright (c) 2008, 2010 Wind River Systems, Inc. and others.
* All rights reserved. This program and the accompanying materials * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
@ -34,6 +34,24 @@ public abstract class AbstractDisassemblyAction extends Action implements IUpdat
fDisassemblyPart.addPropertyListener(this); fDisassemblyPart.addPropertyListener(this);
} }
/**
* Create a disassembly action.
*
* @param disassemblyPart
* @param style
* one of <code>AS_PUSH_BUTTON</code>,
* <code>AS_CHECK_BOX</code>, <code>AS_DROP_DOWN_MENU</code>,
* <code>AS_RADIO_BUTTON</code>, and
* <code>AS_UNSPECIFIED</code>.
*/
public AbstractDisassemblyAction(IDisassemblyPart disassemblyPart, int style) {
super(null, style);
Assert.isLegal(disassemblyPart != null);
fDisassemblyPart= disassemblyPart;
fDisassemblyPart.addPropertyListener(this);
}
/** /**
* @return the disassembly part * @return the disassembly part
*/ */