Merge change 26901 into eclair

* changes:
  Move the screenshot button above the image
This commit is contained in:
Android (Google) Code Review
2009-09-24 17:09:28 -04:00

View File

@@ -97,21 +97,6 @@ public class ScreenShotDialog extends Dialog {
shell.setLayout(new GridLayout(3, true)); shell.setLayout(new GridLayout(3, true));
// title/"capturing" label
mBusyLabel = new Label(shell, SWT.NONE);
mBusyLabel.setText("Preparing...");
data = new GridData(GridData.HORIZONTAL_ALIGN_BEGINNING);
data.horizontalSpan = 3;
mBusyLabel.setLayoutData(data);
// space for the image
mImageLabel = new Label(shell, SWT.BORDER);
data = new GridData(GridData.HORIZONTAL_ALIGN_CENTER);
data.horizontalSpan = 3;
mImageLabel.setLayoutData(data);
Display display = shell.getDisplay();
mImageLabel.setImage(ImageHelper.createPlaceHolderArt(display, 50, 50, display.getSystemColor(SWT.COLOR_BLUE)));
// "refresh" button // "refresh" button
Button refresh = new Button(shell, SWT.PUSH); Button refresh = new Button(shell, SWT.PUSH);
refresh.setText("Refresh"); refresh.setText("Refresh");
@@ -151,6 +136,23 @@ public class ScreenShotDialog extends Dialog {
} }
}); });
// title/"capturing" label
mBusyLabel = new Label(shell, SWT.NONE);
mBusyLabel.setText("Preparing...");
data = new GridData(GridData.HORIZONTAL_ALIGN_BEGINNING);
data.horizontalSpan = 3;
mBusyLabel.setLayoutData(data);
// space for the image
mImageLabel = new Label(shell, SWT.BORDER);
data = new GridData(GridData.HORIZONTAL_ALIGN_CENTER);
data.horizontalSpan = 3;
mImageLabel.setLayoutData(data);
Display display = shell.getDisplay();
mImageLabel.setImage(ImageHelper.createPlaceHolderArt(
display, 50, 50, display.getSystemColor(SWT.COLOR_BLUE)));
shell.setDefaultButton(done); shell.setDefaultButton(done);
} }