blob: 366baaa3e4b1703b5611efd2b6c24209dd85966f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2017 xored software, Inc.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* xored software, Inc. - initial API and Implementation (Alex Panchenko)
*******************************************************************************/
package org.eclipse.dltk.ui.text.templates;
import java.util.Iterator;
import org.eclipse.dltk.internal.ui.text.ScriptWordFinder;
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.IRegion;
import org.eclipse.jface.text.ITextHover;
import org.eclipse.jface.text.ITextViewer;
import org.eclipse.jface.text.templates.TemplateContextType;
import org.eclipse.jface.text.templates.TemplateVariableResolver;
public class TemplateVariableTextHover implements ITextHover {
private TemplateVariableProcessor fProcessor;
/**
* @param processor
* the template variable processor
*/
public TemplateVariableTextHover(TemplateVariableProcessor processor) {
fProcessor = processor;
}
@Override
public String getHoverInfo(ITextViewer textViewer, IRegion subject) {
try {
IDocument doc = textViewer.getDocument();
int offset = subject.getOffset();
if (offset >= 2 && "${".equals(doc.get(offset - 2, 2))) { //$NON-NLS-1$
String varName = doc.get(offset, subject.getLength());
TemplateContextType contextType = fProcessor.getContextType();
if (contextType != null) {
Iterator<TemplateVariableResolver> iter = contextType
.resolvers();
while (iter.hasNext()) {
TemplateVariableResolver var = iter.next();
if (varName.equals(var.getType())) {
return var.getDescription();
}
}
}
}
} catch (BadLocationException e) {
}
return null;
}
@Override
public IRegion getHoverRegion(ITextViewer textViewer, int offset) {
if (textViewer != null) {
return ScriptWordFinder.findWord(textViewer.getDocument(), offset);
}
return null;
}
}