Package com.alee.extended.statusbar

Examples of com.alee.extended.statusbar.WebStatusLabel


        // Undecorated status bar
        WebStatusBar statusBar = new WebStatusBar ();
        statusBar.setUndecorated ( true );

        // Simple label
        statusBar.add ( new WebStatusLabel ( "Undecorated status bar", loadIcon ( "info.png" ) ) );

        // Simple memory bar
        WebMemoryBar memoryBar = new WebMemoryBar ();
        memoryBar.setPreferredWidth ( memoryBar.getPreferredSize ().width + 20 );
        statusBar.add ( memoryBar, ToolbarLayout.END );
View Full Code Here


    {
        // Simple status bar
        WebStatusBar statusBar = new WebStatusBar ();

        // Simple label
        statusBar.add ( new WebStatusLabel ( "Just a simple status bar", loadIcon ( "info.png" ) ) );

        // Simple memory bar
        WebMemoryBar memoryBar = new WebMemoryBar ();
        memoryBar.setPreferredWidth ( memoryBar.getPreferredSize ().width + 20 );
        statusBar.add ( memoryBar, ToolbarLayout.END );
View Full Code Here

TOP

Related Classes of com.alee.extended.statusbar.WebStatusLabel

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.