Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b1603cbbca43bda9a628e57abf66eb2dcb84ff34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*******************************************************************************
 * Copyright (c) 2018 Red Hat and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     Red Hat - initial API and implementation
 *******************************************************************************/
package org.eclipse.swt.tests.gtk.snippets;



import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.List;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;



public class Bug119157_ShellWithoutFocus {
	static Shell dialog = null;
	public static void main(String[] args) {
	    final Display display = new Display();
	    final Shell main = new Shell(display);
	    main.setLayout(new FillLayout());
	    Button button = new Button(main, SWT.PUSH);
	    button.setText("Press me");
	    button.addListener(SWT.Selection, new Listener() {
	        @Override
			public void handleEvent(Event event) {
	            if (dialog == null) {
	                dialog = new Shell(main);
	                dialog.setLayout(new FillLayout());
	                Text text = new Text(dialog, SWT.MULTI);
	                text.setText("No focus");
	                List list = new List(dialog, SWT.MULTI);
	                list.add("Multi-select will");
	                list.add("not work");
	                list.add("the second time.");
	                Button button = new Button(dialog, SWT.PUSH);
	                button.setText("OK");
	                button.addListener(SWT.Selection, new Listener() {
	                    @Override
						public void handleEvent(Event event) {
	                        dialog.setVisible(false);
	                    }
	                });
	                dialog.setSize(400, 200);
	            }
	            dialog.setVisible(true);
	        }
	    });
	    main.setSize(200, 200);
	    main.open();
	    while (!main.isDisposed()) {
	        if (!display.readAndDispatch()) display.sleep();
	    }
	    display.dispose();
	}
}

Back to the top