Package com.alkacon.geranium.client.ui

Examples of com.alkacon.geranium.client.ui.HighlightingBorder


     */
    public void setContentHighlightingVisible(boolean visible) {

        if (visible) {
            if (m_highlighting == null) {
                m_highlighting = new HighlightingBorder(
                    PositionBean.getInnerDimensions(m_referenceElement),
                    HighlightingBorder.BorderColor.red);
                RootPanel.get().add(m_highlighting);
            } else {
                m_highlighting.setPosition(PositionBean.getInnerDimensions(m_referenceElement));
View Full Code Here


    /**
     * Highlights the outline of this panel.<p>
     */
    public void highlightOutline() {

        m_highlighting = new HighlightingBorder(getElement(), HighlightingBorder.BorderColor.red);
        add(m_highlighting);
    }
View Full Code Here

    /**
     * Highlights the outline of this panel.<p>
     */
    public void highlightOutline() {

        m_highlighting = new HighlightingBorder(
            PositionBean.getInnerDimensions(getElement()),
            HighlightingBorder.BorderColor.red);
        m_highlighting.getElement().getStyle().setZIndex(2000000);
        RootPanel.get().add(m_highlighting);
    }
View Full Code Here

    /**
     * Highlights the outline of this panel.<p>
     */
    public void highlightOutline() {

        m_highlighting = new HighlightingBorder(
            PositionBean.getInnerDimensions(getElement()),
            HighlightingBorder.BorderColor.red);
        m_highlighting.getElement().getStyle().setZIndex(2000000);
        RootPanel.get().add(m_highlighting);
    }
View Full Code Here

TOP

Related Classes of com.alkacon.geranium.client.ui.HighlightingBorder

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.