Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f651809aeaad8c34108e701f2b02c5ff41ddbb09 (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*******************************************************************************
 * Copyright (c) 2018 Red Hat and others. All rights reserved.
 * The contents of this file are made available under the terms
 * of the GNU Lesser General Public License (LGPL) Version 2.1 that
 * accompanies this distribution (lgpl-v21.txt).  The LGPL is also
 * available at http://www.gnu.org/licenses/lgpl.html.  If the version
 * of the LGPL at http://www.gnu.org is different to the version of
 * the LGPL accompanying this distribution and there is any conflict
 * between the two license versions, the terms of the LGPL accompanying
 * this distribution shall govern.
 *
 * Contributors:
 *     Red Hat - initial API and implementation
 *******************************************************************************/
package org.eclipse.swt.tests.gtk.snippets;

import org.eclipse.swt.SWT;
import org.eclipse.swt.events.MouseAdapter;
import org.eclipse.swt.events.MouseEvent;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;


/*
 * Title: Bug 514483 - [wayland] Launchbar filter closes when clicked
 * How to run: launch snippet and follow onscreen instructions
 * Bug description: The X-Y coordinates are relative to the child shell.
 * Expected results: The X-Y coordinates are relative to the parent shell.
 * GTK Version(s): GTK3.16+ (Wayland)
 */
public class Bug514483_getCursorLocation
{
	public static void main(String[] args)
	{
		final Display display = new Display();
		Shell shell = new Shell(display);
		shell.setBounds(0, 0, 600, 600);

		Label parentShellLabel = new Label(shell, SWT.None);
		parentShellLabel.setText("Parent widget.shell.\n"
				+ "INSTRUCTIONS:\n"
				+ "- Parent widget.shell should be maximized.\n"
				+ "- Child widget.shell should be at x400 y400 (in yellow square).\n"
				+ "- Click inside the child widget.shell, observe result coordinates below.\n"
				+ "\n"
				+ "The bug is that x,y is not relative to parent, but relative to child-widget.shell itself (0-200 range).\n"
				+ "Expected coordinates: between ~400 to ~600. (i.e, relative to parent's x,y.)\n"
				+ "Result Coordinates:");
		parentShellLabel.setBounds(0, 0, 600, 200);

		final Label resultLbl = new Label(shell, SWT.None);
		resultLbl.setBounds(0,180, 600, 100);
		resultLbl.setBackground(display.getSystemColor(SWT.COLOR_YELLOW));

		Label childShellLocation = new Label(shell, SWT.None);
		childShellLocation.setText("Child Shell should be here.\nIf it is not, move it here \nmanually");
		childShellLocation.setBackground(display.getSystemColor(SWT.COLOR_YELLOW));
		childShellLocation.setBounds(400, 400, 200, 160);

		Shell childShell = new Shell(shell, SWT.ON_TOP);
		childShell.setBackground(display.getSystemColor(SWT.COLOR_DARK_YELLOW));

		MouseAdapter clickListener = new MouseAdapter() {
			@Override
			public void mouseDown(MouseEvent e) {
				Point loc = display.getCursorLocation();
				resultLbl.setText(loc.toString());
				if (loc.x > 300 && loc.x < 700 && loc.y > 300 && loc.y < 700) // give user some slack.
					resultLbl.setBackground(display.getSystemColor(SWT.COLOR_GREEN));
				else
					resultLbl.setBackground(display.getSystemColor(SWT.COLOR_RED));
			}
		};
		childShell.addMouseListener(clickListener);

//		display.addFilter(SWT.KeyDown, new Listener() {
//			  public void handleEvent(Event e) {
//			    if (e.type == SWT.KeyDown) {
//			      switch (e.keyCode) {
//			        case SWT.F1:
//			          System.out.println("Passed");
//			          break;
//			        case SWT.F2:
//			          System.out.println("Failed");
//			          break;
//			        case SWT.F3:
//			          System.out.println("Skipped");
//			          break;
//			        case SWT.F4:
//			          System.out.println("Exit Test suite");
//			          break;
//			      }
//			    }
//			  }
//			});

		shell.open();
		childShell.open();
		childShell.setBounds(400, 400, 200, 200);
		while (!shell.isDisposed())
		{
			if (!display.readAndDispatch()) display.sleep();
		}
		display.dispose();
	}
}

Back to the top