ProgressBar Example : ProgressBar « SWT JFace Eclipse « Java






ProgressBar Example

ProgressBar Example
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.ProgressBar;
import org.eclipse.swt.widgets.Shell;

public class ProgressBarExample {
  Display d;

  Shell s;

  ProgressBarExample() {
    d = new Display();
    s = new Shell(d);
    s.setSize(250, 250);
    
    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();
  }

  public static void main() {
    new ProgressBarExample();
  }

}


           
       








Related examples in the same category

1.A progress bar dialogA progress bar dialog
2.Update a SWT progress bar (from another thread)Update a SWT progress bar (from another thread)
3.Update a progress bar (from the UI thread)Update a progress bar (from the UI thread)
4.Count NumbersCount Numbers
5.ProgressBar ExamplesProgressBar Examples
6.Demonstrates ProgressBarDemonstrates ProgressBar