Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 98f0bea68e62e4ee426d4d3093075a861ef25d46 (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
/*******************************************************************************
 * 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.graphics.Point;
import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

public class Bug303710_ForceActive {

	public static void main(String[] args) {
		final Display display = new Display();
		final Shell shell = new Shell(display);
		final int time = 500;
		Runnable timer = new Runnable() {
			@Override
	public void run() {
				Point point = display.getCursorLocation();
				Rectangle rect = shell.getBounds();
				if (rect.contains(point)) {
					System.out.println("In");
				} else {
					System.out.println("Out");
				}
				shell.forceActive();
				display.timerExec(time, this);
			}
		};
		display.timerExec(time, timer);
		shell.setSize(200, 200);
		shell.open();
		while (!shell.isDisposed()) {
			if (!display.readAndDispatch())
				display.sleep();
		}
		display.dispose();
	}
}

Back to the top