Examples of WebTristateCheckBox


Examples of com.alee.extended.checkbox.WebTristateCheckBox

     */
    @Override
    public Component getPreview ( final WebLookAndFeelDemo owner )
    {
        // Animated tristate check box
        final WebTristateCheckBox tristateCheckBoxA = new WebTristateCheckBox ( "Animated tristate checkbox" );
        tristateCheckBoxA.setMixed ();

        // Static tristate check box
        final WebTristateCheckBox tristateCheckBoxS = new WebTristateCheckBox ( "Static tristate checkbox" );
        tristateCheckBoxS.setAnimated ( false );

        // Tristate check box with reversed checking order
        final WebTristateCheckBox reversedTristateCheckbox = new WebTristateCheckBox ( "Tristate checkbox with reversed order" );
        reversedTristateCheckbox.setCheckMixedOnToggle ( true );

        return new GroupPanel ( 4, false, tristateCheckBoxA, tristateCheckBoxS, reversedTristateCheckbox );
    }
View Full Code Here

Examples of com.alee.extended.checkbox.WebTristateCheckBox

        super ();
        this.checkBoxTree = checkBoxTree;

        setOpaque ( false );

        checkBox = new WebTristateCheckBox ();
        checkBox.setAnimated ( false );
        checkBox.setMargin ( 0, 4, 0, WebCheckBoxTreeStyle.checkBoxRendererGap );
        add ( checkBox, BorderLayout.LINE_START );
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.