Package com.salas.bb.utils.uif

Examples of com.salas.bb.utils.uif.DelegatingMouseListener


            add(lbUnread, cc.xy(8, 2));

            // Setup the tooltip and delegate the mouse events to the parent (this panel)
            IFeed feed = article.getFeed();
            lbTitle.setToolTipText(feed == null ? null : feed.getTitle());
            DelegatingMouseListener ml = new DelegatingMouseListener(lbTitle, false, 2);
            lbTitle.addMouseListener(ml);
        }

        setSelected(false);
View Full Code Here


        add(tfText, CELL_CONSTRAINTS.xy(2, 6));

        setToolTipText(aTitle == null ? null : "<html>" + aTitle + "</html>");

        // Register delegating mouse listener
        DelegatingMouseListener ml = new DelegatingMouseListener(this, true);
        this.addMouseListener(ml);
        lbImage.addMouseListener(ml);
        lbTitle.addMouseListener(ml);
        tfText.addMouseListener(ml);
View Full Code Here

TOP

Related Classes of com.salas.bb.utils.uif.DelegatingMouseListener

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.