Package com.alee.extended.panel

Examples of com.alee.extended.panel.WebCollapsiblePane


    {
        // Title icon
        final ImageIcon icon = loadIcon ( "text.png" );

        // Simple pane
        final WebCollapsiblePane topPane = new WebCollapsiblePane ( icon, "Top pane", createCustomHorContent () );
        topPane.setExpanded ( false );

        // Simple pane with bottom title position
        final WebCollapsiblePane bottomPane = new WebCollapsiblePane ( icon, "Bottom pane", createCustomHorContent () );
        bottomPane.setTitlePanePostion ( SwingConstants.BOTTOM );

        // Simple pane with left title position
        final WebCollapsiblePane leftPane = new WebCollapsiblePane ( icon, "Left pane", createCustomVerContent () );
        leftPane.setTitlePanePostion ( SwingConstants.LEFT );

        return new GroupPanel ( 4, new GroupPanel ( 4, false, topPane, bottomPane ), leftPane );
    }
View Full Code Here

TOP

Related Classes of com.alee.extended.panel.WebCollapsiblePane

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.