FileDocCategorySizeDatePackage
ProgressBarExample.javaAPI DocExample851Sun Oct 31 09:37:56 GMT 2004None

ProgressBarExample

public class ProgressBarExample extends Object

Fields Summary
Display
d
Shell
s
Constructors Summary
ProgressBarExample()

         d = new Display();
         s = new Shell(d);
        s.setSize(250,250);
        s.setImage(new Image(d, "c:\\icons\\JavaCup.ico"));
        s.setText("A ProgressBar Example");

        final ProgressBar pb = new ProgressBar(s,SWT.HORIZONTAL);
        pb.setMinimum(0);
        pb.setMaximum(100);
        pb.setSelection(50);
        pb.setBounds(10,10,200,20);
        
        s.open();
        while(!s.isDisposed()){
            if(!d.readAndDispatch())
                d.sleep();
        }
        d.dispose();
    
Methods Summary