X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.document.ui%2Fsrc%2Forg%2Fsimantics%2Fdocument%2Fui%2FCSSEditorTextHover.java;fp=bundles%2Forg.simantics.document.ui%2Fsrc%2Forg%2Fsimantics%2Fdocument%2Fui%2FCSSEditorTextHover.java;h=445c2a1e1870e5700a137e820a392032260ebd34;hb=969bd23cab98a79ca9101af33334000879fb60c5;hp=0000000000000000000000000000000000000000;hpb=866dba5cd5a3929bbeae85991796acb212338a08;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.document.ui/src/org/simantics/document/ui/CSSEditorTextHover.java b/bundles/org.simantics.document.ui/src/org/simantics/document/ui/CSSEditorTextHover.java new file mode 100644 index 000000000..445c2a1e1 --- /dev/null +++ b/bundles/org.simantics.document.ui/src/org/simantics/document/ui/CSSEditorTextHover.java @@ -0,0 +1,107 @@ +package org.simantics.document.ui; + +import org.eclipse.jface.text.AbstractReusableInformationControlCreator; +import org.eclipse.jface.text.BadLocationException; +import org.eclipse.jface.text.DefaultInformationControl; +import org.eclipse.jface.text.IDocument; +import org.eclipse.jface.text.IInformationControl; +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.ITextHoverExtension2; +import org.eclipse.jface.text.ITextViewer; +import org.eclipse.jface.text.Region; +import org.eclipse.jface.text.source.ISourceViewer; +import org.eclipse.swt.widgets.Shell; + +public class CSSEditorTextHover implements ITextHover, ITextHoverExtension, ITextHoverExtension2 { + + private CSSTextEditorEnvironment sclTextEditorEnvironment; + + public CSSEditorTextHover(ISourceViewer sourceViewer, CSSTextEditorEnvironment sclTextEditorEnvironment) { + this.sclTextEditorEnvironment = sclTextEditorEnvironment; + } + + @Override + public String getHoverInfo(ITextViewer textViewer, IRegion hoverRegion) { + return null; + } + + @Override + public IRegion getHoverRegion(ITextViewer textViewer, int offset) { + return findWord(textViewer.getDocument(), offset); + } + + private static IRegion findWord(IDocument document, int offset) { + int start= -2; + int end= -1; + + try { + + int pos= offset; + char c; + + while (pos >= 0) { + c= document.getChar(pos); + if (!Character.isUnicodeIdentifierPart(c)) + break; + --pos; + } + + start= pos; + + pos= offset; + int length= document.getLength(); + + while (pos < length) { + c= document.getChar(pos); + if (!Character.isUnicodeIdentifierPart(c)) + break; + ++pos; + } + + end= pos; + + } catch (BadLocationException x) { + } + + if (start >= -1 && end > -1) { + if (start == offset && end == offset) + return new Region(offset, 0); + else if (start == offset) + return new Region(start, end - start); + else + return new Region(start + 1, end - start - 1); + } + + return null; + } + + @Override + public Object getHoverInfo2(ITextViewer textViewer, IRegion hoverRegion) { + String info = null; + try { + IDocument document = textViewer.getDocument(); + String text = document.get(hoverRegion.getOffset(), hoverRegion.getLength()); + sclTextEditorEnvironment.updateEnvironment(document); + info = sclTextEditorEnvironment.getHoverInfo(text); + } catch (BadLocationException e) { + + } + return info; + } + + @Override + public IInformationControlCreator getHoverControlCreator() { + AbstractReusableInformationControlCreator creator = new AbstractReusableInformationControlCreator() { + + @Override + protected IInformationControl doCreateInformationControl(Shell parent) { + return new DefaultInformationControl(parent); + } + }; + return creator; + } + +}