/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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 Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
- *
+ *
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
import net.sourceforge.phpdt.ui.PreferenceConstants;
import net.sourceforge.phpdt.ui.text.java.hover.IJavaEditorTextHover;
+import net.sourceforge.phpeclipse.xdebug.php.model.XDebugStackFrame;
+import net.sourceforge.phpeclipse.xdebug.php.model.XDebugTarget;
+import net.sourceforge.phpeclipse.xdebug.php.model.XDebugValue;
+
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.debug.core.DebugException;
import org.eclipse.debug.core.model.IValue;
import org.eclipse.jface.text.ITextViewer;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
+import org.eclipse.jface.viewers.ITreeSelection;
+import org.eclipse.jface.viewers.TreePath;
//import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.IEditorPart;
/*
* (non-Javadoc)
- *
+ *
* @see org.eclipse.ui.IPartListener#partActivated(org.eclipse.ui.IWorkbenchPart)
*/
public void partActivated(IWorkbenchPart part) {
/*
* (non-Javadoc)
- *
+ *
* @see org.eclipse.ui.IPartListener#partBroughtToTop(org.eclipse.ui.IWorkbenchPart)
*/
public void partBroughtToTop(IWorkbenchPart part) {
/*
* (non-Javadoc)
- *
+ *
* @see org.eclipse.ui.IPartListener#partClosed(org.eclipse.ui.IWorkbenchPart)
*/
public void partClosed(IWorkbenchPart part) {
/*
* (non-Javadoc)
- *
+ *
* @see org.eclipse.ui.IPartListener#partDeactivated(org.eclipse.ui.IWorkbenchPart)
*/
public void partDeactivated(IWorkbenchPart part) {
/*
* (non-Javadoc)
- *
+ *
* @see org.eclipse.ui.IPartListener#partOpened(org.eclipse.ui.IWorkbenchPart)
*/
public void partOpened(IWorkbenchPart part) {
/*
* (non-Javadoc)
- *
+ *
* @see org.eclipse.ui.ISelectionListener#selectionChanged(org.eclipse.ui.IWorkbenchPart,
* org.eclipse.jface.viewers.ISelection)
*/
/*
* (non-Javadoc)
- *
+ *
* @see org.eclipse.jdt.ui.text.java.hover.IJavaEditorTextHover#setEditor(org.eclipse.ui.IEditorPart)
*/
public void setEditor(IEditorPart editor) {
/*
* (non-Javadoc)
- *
+ *
* @see org.eclipse.jface.text.ITextHover#getHoverRegion(org.eclipse.jface.text.ITextViewer,
* int)
*/
/**
* Returns the stack frame in which to search for variables, or
* <code>null</code> if none.
- *
+ *
* @return the stack frame in which to search for variables, or
* <code>null</code> if none
*/
return null;
}
+ protected XDebugStackFrame getXDebugFrame() {
+ if (fSelection instanceof IStructuredSelection) {
+ IStructuredSelection selection = (IStructuredSelection) fSelection;
+ if (selection.size() == 1) {
+ Object el = selection.getFirstElement();
+ if (el instanceof IAdaptable) {
+ return (XDebugStackFrame) ((IAdaptable) el)
+ .getAdapter(XDebugStackFrame.class);
+ }
+ }
+ }
+ return null;
+ }
+
/*
* (non-Javadoc)
- *
+ *
* @see org.eclipse.jface.text.ITextHover#getHoverInfo(org.eclipse.jface.text.ITextViewer,
* org.eclipse.jface.text.IRegion)
*/
public String getHoverInfo(ITextViewer textViewer, IRegion hoverRegion) {
- PHPStackFrame frame = getFrame();
- if (frame != null) {
- try {
+ IVariable variable = null;
+ PHPStackFrame frameDBG = null;
+ XDebugStackFrame frameXD = null;
+
+ TreePath paths[] = ((ITreeSelection) fSelection).getPaths ();
+ Object target = paths[0].getSegment (1);
+
+ if (target.getClass().getName ().equals ("net.sourceforge.phpeclipse.xdebug.php.model.XDebugTarget") ) {
+ frameXD = getXDebugFrame ();
+ }
+ else {
+ frameDBG = getFrame();
+ }
+ if ((frameDBG != null) || (frameXD != null)) {
+ try {
IDocument document = textViewer.getDocument();
+
if (document == null)
return null;
- String variableName = document.get(hoverRegion.getOffset(),
- hoverRegion.getLength());
+ String variableName = document.get (hoverRegion.getOffset(), hoverRegion.getLength());
StringBuffer buffer = new StringBuffer();
try {
- IVariable variable = frame.findVariable(variableName);
+ if (frameDBG != null) {
+ variable = frameDBG.findVariable(variableName);
+ }
+ else if (frameXD != null) {
+ if (variableName.startsWith ("$")) {
+ variable = frameXD.findVariable (variableName.substring (1));
+ }
+ else {
+ variable = frameXD.findVariable (variableName);
+ }
+ }
+
if (variable != null) {
appendVariable(buffer, variable);
}
buffer.append(" \""); //$NON-NLS-1$
buffer.append(value);
buffer.append('"');
- } else if (type.equals("boolean")) { //$NON-NLS-1$
+ } else if (type.equals("boolean") || // in dbg it's boolean
+ type.equals("bool")) { // in XDebug it's bool $NON-NLS-1$
buffer.append(' ');
buffer.append(value);
} else {
private static String getTypeName(IVariable variable) throws DebugException {
IValue value = variable.getValue();
+
if (value instanceof PHPValue)
return ((PHPValue) value).getReferenceTypeName();
+
+ if (value instanceof XDebugValue)
+ return ((XDebugValue) value).getReferenceTypeName ();
+
return null;
}
/*
* (non-Javadoc)
- *
+ *
* @see org.eclipse.jface.text.ITextHoverExtension#getInformationControlCreator()
*/
// public IInformationControlCreator getInformationControlCreator() {
/*
* (non-Javadoc)
- *
+ *
* @see org.eclipse.jface.text.ITextHoverExtension#getHoverControlCreator()
*/
public IInformationControlCreator getHoverControlCreator() {