blob: abcbc8d9b4cf59d617f890c24425c2f30357c80d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2006 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
* Jens Lukowski/Innoopract - initial renaming/restructuring
*
*******************************************************************************/
package org.eclipse.wst.sse.ui.internal.taginfo;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import org.eclipse.jface.text.IInformationControlCreator;
import org.eclipse.jface.text.IRegion;
import org.eclipse.jface.text.ITextHover;
import org.eclipse.jface.text.ITextHoverExtension;
import org.eclipse.jface.text.ITextViewer;
import org.eclipse.wst.sse.ui.internal.Logger;
/**
* Provides the best hover help documentation (by using other hover help
* processors) Priority of hover help processors is: ProblemHoverProcessor,
* TagInfoProcessor, AnnotationHoverProcessor
*/
public class BestMatchHover implements ITextHover, ITextHoverExtension {
private ITextHover fBestMatchHover; // current best match text hover
private ITextHover fTagInfoHover; // documentation/information hover
private List fTextHovers; // list of text hovers to consider in best
// match
public BestMatchHover(ITextHover infotaghover) {
fTagInfoHover = infotaghover;
}
/**
* Create a list of text hovers applicable to this best match hover
* processor
*
* @return List of ITextHover - in abstract class this is empty list
*/
private List createTextHoversList() {
List hoverList = new ArrayList();
// if currently debugging, then add the debug hover to the list of
// best match
if (Logger.isTracing(DebugInfoHoverProcessor.TRACEFILTER)) {
hoverList.add(new DebugInfoHoverProcessor());
}
hoverList.add(new ProblemAnnotationHoverProcessor());
if (fTagInfoHover != null) {
hoverList.add(fTagInfoHover);
}
hoverList.add(new AnnotationHoverProcessor());
return hoverList;
}
public IInformationControlCreator getHoverControlCreator() {
IInformationControlCreator creator = null;
if (fBestMatchHover instanceof ITextHoverExtension) {
creator = ((ITextHoverExtension) fBestMatchHover).getHoverControlCreator();
}
return creator;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.jface.text.ITextHover#getHoverInfo(org.eclipse.jface.text.ITextViewer,
* org.eclipse.jface.text.IRegion)
*/
public String getHoverInfo(ITextViewer viewer, IRegion hoverRegion) {
String displayText = null;
// already have a best match hover picked out from getHoverRegion call
if (fBestMatchHover != null) {
displayText = fBestMatchHover.getHoverInfo(viewer, hoverRegion);
}
// either had no best match hover or best match hover returned null
if (displayText == null) {
// go through list of text hovers and return first display string
Iterator i = getTextHovers().iterator();
while ((i.hasNext()) && (displayText == null)) {
ITextHover hover = (ITextHover) i.next();
displayText = hover.getHoverInfo(viewer, hoverRegion);
}
}
return displayText;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.jface.text.ITextHover#getHoverRegion(org.eclipse.jface.text.ITextViewer,
* int)
*/
public IRegion getHoverRegion(ITextViewer viewer, int offset) {
IRegion hoverRegion = null;
// go through list of text hovers and return first hover region
ITextHover hover = null;
Iterator i = getTextHovers().iterator();
while ((i.hasNext()) && (hoverRegion == null)) {
hover = (ITextHover) i.next();
hoverRegion = hover.getHoverRegion(viewer, offset);
}
// store the text hover processor that found region
if (hoverRegion != null)
fBestMatchHover = hover;
else
fBestMatchHover = null;
return hoverRegion;
}
private List getTextHovers() {
if (fTextHovers == null) {
fTextHovers = createTextHoversList();
}
return fTextHovers;
}
}