final Display display = new Display();
final Image image = new Image(display,
Viewer.class.getResourceAsStream("DataBrowserSplash.jpg"));
final Shell splash = new Shell(SWT.ON_TOP);
final ProgressBar bar = new ProgressBar(splash, SWT.NONE);
bar.setMaximum(10);
Label label = new Label(splash, SWT.NONE);
label.setImage(image);
FormLayout layout = new FormLayout();
splash.setLayout(layout);
FormData labelData = new FormData();
labelData.right = new FormAttachment(100, 0);
labelData.bottom = new FormAttachment(100, 0);
label.setLayoutData(labelData);
FormData progressData = new FormData();
progressData.left = new FormAttachment(0, 5);
progressData.right = new FormAttachment(100, -5);
progressData.bottom = new FormAttachment(100, -5);
bar.setLayoutData(progressData);
splash.pack();
// dual screen detection over 21 inches 1600 pixel
Rectangle splashRect = splash.getBounds();
Rectangle displayRect = oneScreenBound();
int x = (displayRect.width - splashRect.width) / 2;
int y = (displayRect.height - splashRect.height) / 2;
splash.setLocation(x, y);
splash.open();
display.asyncExec(new Runnable() {
public void run() {
try {
Shell shell = new Shell(display);
bar.setSelection(1);
Thread.sleep(500);
shell.setLayout(new FillLayout());
bar.setSelection(2);
Thread.sleep(500);
Rectangle displayRect = oneScreenBound();
shell.setSize(displayRect.width, displayRect.height);
shell.setLocation(0, 0);
bar.setSelection(3);
Thread.sleep(500);
shell.setSize(1280, 1024);
bar.setSelection(4);
Thread.sleep(500);
new DatasetViewer(shell, SWT.NONE);
bar.setSelection(8);
Thread.sleep(1000);
shell.open();
bar.setSelection(9);
Thread.sleep(500);
bar.setSelection(10);
Thread.sleep(500);
splash.close();
image.dispose();
}
catch (InterruptedException e) {