Package org.fife.ui.rsyntaxtextarea

Examples of org.fife.ui.rsyntaxtextarea.PopupWindowDecorator


    Window owner = SwingUtilities.getWindowAncestor(textArea);
    tipWindow = new TipWindow(owner, this, text);
    tipWindow.setHyperlinkListener(hyperlinkListener);

    // Give apps a chance to decorate us with drop shadows, etc.
    PopupWindowDecorator decorator = PopupWindowDecorator.get();
    if (decorator!=null) {
      decorator.decorate(tipWindow);
    }

    // TODO: Position tip window better (handle RTL, edges of screen, etc.).
    // Wrap in an invokeLater() to work around a JEditorPane issue where it
    // doesn't return its proper preferred size until after it is displayed.
View Full Code Here


    Window owner = SwingUtilities.getWindowAncestor(textArea);
    tipWindow = new TipWindow(owner, this, text);
    tipWindow.setHyperlinkListener(hyperlinkListener);

    // Give apps a chance to decorate us with drop shadows, etc.
    PopupWindowDecorator decorator = PopupWindowDecorator.get();
    if (decorator!=null) {
      decorator.decorate(tipWindow);
    }

    // TODO: Position tip window better (handle RTL, edges of screen, etc.).
    // Wrap in an invokeLater() to work around a JEditorPane issue where it
    // doesn't return its proper preferred size until after it is displayed.
View Full Code Here

TOP

Related Classes of org.fife.ui.rsyntaxtextarea.PopupWindowDecorator

Copyright © 2018 www.massapicom. 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.