Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.swt.tests.gtk/ManualTests/org/eclipse/swt/tests/gtk/snippets/Bug483791_setBackgroundGC.java')
-rw-r--r--tests/org.eclipse.swt.tests.gtk/ManualTests/org/eclipse/swt/tests/gtk/snippets/Bug483791_setBackgroundGC.java66
1 files changed, 33 insertions, 33 deletions
diff --git a/tests/org.eclipse.swt.tests.gtk/ManualTests/org/eclipse/swt/tests/gtk/snippets/Bug483791_setBackgroundGC.java b/tests/org.eclipse.swt.tests.gtk/ManualTests/org/eclipse/swt/tests/gtk/snippets/Bug483791_setBackgroundGC.java
index adafcedbf7..856a19d32b 100644
--- a/tests/org.eclipse.swt.tests.gtk/ManualTests/org/eclipse/swt/tests/gtk/snippets/Bug483791_setBackgroundGC.java
+++ b/tests/org.eclipse.swt.tests.gtk/ManualTests/org/eclipse/swt/tests/gtk/snippets/Bug483791_setBackgroundGC.java
@@ -33,42 +33,42 @@ import org.eclipse.swt.widgets.Shell;
*/
public final class Bug483791_setBackgroundGC {
- public static void main(String[] args) {
- final Display display = new Display();
- final Shell shell = new Shell(display);
- shell.setLayout(new GridLayout());
+ public static void main(String[] args) {
+ final Display display = new Display();
+ final Shell shell = new Shell(display);
+ shell.setLayout(new GridLayout());
- final Label l = new Label(shell, SWT.None);
- l.setText("ASDQWE");
- l.addPaintListener(arg0 -> arg0.gc.drawLine(0, 0, arg0.width, arg0.height));
+ final Label l = new Label(shell, SWT.None);
+ l.setText("ASDQWE");
+ l.addPaintListener(arg0 -> arg0.gc.drawLine(0, 0, arg0.width, arg0.height));
- final Button b = new Button(shell, SWT.PUSH);
- b.setText("CLICK");
- b.addSelectionListener(new SelectionAdapter() {
+ final Button b = new Button(shell, SWT.PUSH);
+ b.setText("CLICK");
+ b.addSelectionListener(new SelectionAdapter() {
- @Override
- public void widgetSelected(SelectionEvent arg0) {
- l.setBackground(display.getSystemColor(SWT.COLOR_CYAN));
- // these don't help
- /*
- l.redraw();
- l.update();
- */
- MessageBox mb = new MessageBox(shell);
- mb.setMessage("Background should not override GC drawing, but it does");
- mb.open();
- }
- });
+ @Override
+ public void widgetSelected(SelectionEvent arg0) {
+ l.setBackground(display.getSystemColor(SWT.COLOR_CYAN));
+ // these don't help
+ /*
+ l.redraw();
+ l.update();
+ */
+ MessageBox mb = new MessageBox(shell);
+ mb.setMessage("Background should not override GC drawing, but it does");
+ mb.open();
+ }
+ });
- shell.open();
- while (!shell.isDisposed()) {
- if (!display.readAndDispatch()) {
- display.sleep();
- }
- }
- display.dispose();
- }
+ shell.open();
+ while (!shell.isDisposed()) {
+ if (!display.readAndDispatch()) {
+ display.sleep();
+ }
+ }
+ display.dispose();
+ }
- private Bug483791_setBackgroundGC() {
- }
+ private Bug483791_setBackgroundGC() {
+ }
} \ No newline at end of file

Back to the top