Package com.alee.extended.panel

Examples of com.alee.extended.panel.GroupPanel


        WebToolBar ut = new WebToolBar ( WebToolBar.HORIZONTAL );
        ut.setFloatable ( false );
        setupToolBar ( ut );

        return new GroupPanel ( 0, false, new BorderPanel ( ft ), new BorderPanel ( ut ) );
    }
View Full Code Here


        aut.setFloatable ( false );
        aut.setToolbarStyle ( ToolbarStyle.attached );
        aut.setComponentOrientation ( ComponentOrientation.RIGHT_TO_LEFT );
        setupToolBar ( aut );

        return new GroupPanel ( 3, true, new BorderPanel ( ft ), new BorderPanel ( ut ), new BorderPanel ( aft ), new BorderPanel ( aut ) );
    }
View Full Code Here

        aut.setFloatable ( false );
        aut.setToolbarStyle ( ToolbarStyle.attached );
        aut.setComponentOrientation ( ComponentOrientation.RIGHT_TO_LEFT );
        setupToolBar ( aut );

        return new GroupPanel ( 3, false, new BorderPanel ( aft ), new BorderPanel ( aut ) );
    }
View Full Code Here

                "<font color=red>and one more</font><br>" + "and some plain text</html>" );

        WebScrollPane editorPaneScroll = new WebScrollPane ( editorPane );
        editorPaneScroll.setPreferredSize ( new Dimension ( 200, 150 ) );

        return new GroupPanel ( editorPaneScroll );
    }
View Full Code Here

        textArea.setWrapStyleWord ( true );

        WebScrollPane areaScroll = new WebScrollPane ( textArea );
        areaScroll.setPreferredSize ( new Dimension ( 200, 150 ) );

        return new GroupPanel ( areaScroll );
    }
View Full Code Here

            {
                setPreferredSize ( new Dimension ( 200, 150 ) );
            }
        };

        return new GroupPanel ( textPaneScroll );
    }
View Full Code Here

        // Adding a panel with label and field
        WebLabel label = new WebLabel ( "Field" );
        WebTextField field = new WebTextField ();
        field.putClientProperty ( GroupPanel.FILL_CELL, true );
        webComponentPanel.addElement ( new GroupPanel ( 10, label, field ) );

        // Adding a simple slider
        WebSlider slider = new WebSlider ( WebSlider.HORIZONTAL, 0, 100, 50 );
        webComponentPanel.addElement ( slider );

        // Adding a panel with textfields
        WebTextField f1 = new WebTextField ();
        WebTextField f2 = new WebTextField ();
        WebTextField f3 = new WebTextField ();
        webComponentPanel.addElement ( new GridPanel ( 10, f1, f2, f3 ) );

        return new GroupPanel ( webComponentPanel );
    }
View Full Code Here

        panel.setMargin ( 20 );
        panel.setRound ( StyleConstants.largeRound );

        panel.add ( new WebLabel ( "Decorated panel", WebLabel.CENTER ) );

        return new GroupPanel ( panel );
    }
View Full Code Here

        // Undecorated breadcrumb
        final WebBreadcrumb breadcrumb2 = new WebBreadcrumb ( false );
        fillBreadcrumb ( breadcrumb2 );

        return new GroupPanel ( 4, false, breadcrumb1, breadcrumb2 );
    }
View Full Code Here

        WebButton b = new WebButton ( "Simple" );

        // Disabled button
        WebButton db = new WebButton ( "Iconed", loadIcon ( "icon.png" ) );

        return new GroupPanel ( 2, new GroupPanel ( b ), db );
    }
View Full Code Here

TOP

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

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.