Examples of StickyHoverManager


Examples of org.eclipse.jface.internal.text.StickyHoverManager

   */
  protected void ensureAnnotationHoverManagerInstalled() {
    if (fVerticalRuler != null && (fAnnotationHover != null || !isVerticalRulerOnlyShowingAnnotations()) && fVerticalRulerHoveringController == null && fHoverControlCreator != null) {
      fVerticalRulerHoveringController= new AnnotationBarHoverManager(fVerticalRuler, this, fAnnotationHover, fHoverControlCreator);
      fVerticalRulerHoveringController.install(fVerticalRuler.getControl());
      fVerticalRulerHoveringController.getInternalAccessor().setInformationControlReplacer(new StickyHoverManager(this));
    }
  }
View Full Code Here

Examples of org.eclipse.jface.internal.text.StickyHoverManager

  private void ensureHoverControlManagerInstalled() {
    if (fTextHovers != null && !fTextHovers.isEmpty() && fHoverControlCreator != null && fTextHoverManager == null) {
      fTextHoverManager= new TextViewerHoverManager(this, fHoverControlCreator);
      fTextHoverManager.install(this.getTextWidget());
      fTextHoverManager.setSizeConstraints(TEXT_HOVER_WIDTH_CHARS, TEXT_HOVER_HEIGHT_CHARS, false, true);
      fTextHoverManager.setInformationControlReplacer(new StickyHoverManager(this));
    }
  }
View Full Code Here

Examples of org.eclipse.jface.internal.text.StickyHoverManager

   */
  protected void ensureOverviewHoverManagerInstalled() {
    if (fOverviewRuler != null &&  fOverviewRulerAnnotationHover != null  && fOverviewRulerHoveringController == null && fHoverControlCreator != null)  {
      fOverviewRulerHoveringController= new OverviewRulerHoverManager(fOverviewRuler, this, fOverviewRulerAnnotationHover, fHoverControlCreator);
      fOverviewRulerHoveringController.install(fOverviewRuler.getControl());
      fOverviewRulerHoveringController.getInternalAccessor().setInformationControlReplacer(new StickyHoverManager(this));
    }
  }
View Full Code Here

Examples of org.eclipse.jface.internal.text.StickyHoverManager

  private void ensureHoverControlManagerInstalled() {
    if (fTextHovers != null && !fTextHovers.isEmpty() && fHoverControlCreator != null && fTextHoverManager == null) {
      fTextHoverManager= new TextViewerHoverManager(this, fHoverControlCreator);
      fTextHoverManager.install(this.getTextWidget());
      fTextHoverManager.setSizeConstraints(TEXT_HOVER_WIDTH_CHARS, TEXT_HOVER_HEIGHT_CHARS, false, true);
      fTextHoverManager.setInformationControlReplacer(new StickyHoverManager(this));
    }
  }
View Full Code Here

Examples of org.eclipse.jface.internal.text.StickyHoverManager

   */
  protected void ensureAnnotationHoverManagerInstalled() {
    if (fVerticalRuler != null && (fAnnotationHover != null || !isVerticalRulerOnlyShowingAnnotations()) && fVerticalRulerHoveringController == null && fHoverControlCreator != null) {
      fVerticalRulerHoveringController= new AnnotationBarHoverManager(fVerticalRuler, this, fAnnotationHover, fHoverControlCreator);
      fVerticalRulerHoveringController.install(fVerticalRuler.getControl());
      fVerticalRulerHoveringController.getInternalAccessor().setInformationControlReplacer(new StickyHoverManager(this));
    }
  }
View Full Code Here

Examples of org.eclipse.jface.internal.text.StickyHoverManager

   */
  protected void ensureOverviewHoverManagerInstalled() {
    if (fOverviewRuler != null &&  fOverviewRulerAnnotationHover != null  && fOverviewRulerHoveringController == null && fHoverControlCreator != null)  {
      fOverviewRulerHoveringController= new OverviewRulerHoverManager(fOverviewRuler, this, fOverviewRulerAnnotationHover, fHoverControlCreator);
      fOverviewRulerHoveringController.install(fOverviewRuler.getControl());
      fOverviewRulerHoveringController.getInternalAccessor().setInformationControlReplacer(new StickyHoverManager(this));
    }
  }
View Full Code Here

Examples of org.eclipse.jface.internal.text.StickyHoverManager

   */
  protected void ensureAnnotationHoverManagerInstalled() {
    if (fVerticalRuler != null && (fAnnotationHover != null || !isVerticalRulerOnlyShowingAnnotations()) && fVerticalRulerHoveringController == null && fHoverControlCreator != null) {
      fVerticalRulerHoveringController= new AnnotationBarHoverManager(fVerticalRuler, this, fAnnotationHover, fHoverControlCreator);
      fVerticalRulerHoveringController.install(fVerticalRuler.getControl());
      fVerticalRulerHoveringController.getInternalAccessor().setInformationControlReplacer(new StickyHoverManager(this));
    }
  }
View Full Code Here

Examples of org.eclipse.jface.internal.text.StickyHoverManager

   */
  protected void ensureOverviewHoverManagerInstalled() {
    if (fOverviewRuler != null &&  fOverviewRulerAnnotationHover != null  && fOverviewRulerHoveringController == null && fHoverControlCreator != null)  {
      fOverviewRulerHoveringController= new OverviewRulerHoverManager(fOverviewRuler, this, fOverviewRulerAnnotationHover, fHoverControlCreator);
      fOverviewRulerHoveringController.install(fOverviewRuler.getControl());
      fOverviewRulerHoveringController.getInternalAccessor().setInformationControlReplacer(new StickyHoverManager(this));
    }
  }
View Full Code Here

Examples of org.eclipse.jface.internal.text.StickyHoverManager

  private void ensureHoverControlManagerInstalled() {
    if (fTextHovers != null && !fTextHovers.isEmpty() && fHoverControlCreator != null && fTextHoverManager == null) {
      fTextHoverManager= new TextViewerHoverManager(this, fHoverControlCreator);
      fTextHoverManager.install(this.getTextWidget());
      fTextHoverManager.setSizeConstraints(TEXT_HOVER_WIDTH_CHARS, TEXT_HOVER_HEIGHT_CHARS, false, true);
      fTextHoverManager.setInformationControlReplacer(new StickyHoverManager(this));
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.