blob: e1fb0a39351f604e694d08b5485a555ac4fd6a97 [file] [log] [blame]
package org.eclipse.swt.tests.gtk.snippets;
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.layout.RowLayout;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;
/**
* @author Thomas Singer
*/
/*
* Title: Bug 509514 - GTK3: Incorrect calculation of Combo location (toDisplay)
* How to run: launch snippet, edit the Combo or Text box, press space
* Bug description: A popup appears under the Text widget but not the Combo
* Expected results: A popup should appear under the widget being edited
* GTK Version(s): 3
*/
public class Bug509514_IncorrectToDisplayLocation {
public static void main(String[] args) {
final Display display = new Display();
final Shell shell = new Shell(display);
final RowLayout layout = new RowLayout(SWT.VERTICAL);
layout.fill = true;
shell.setLayout(layout);
final Combo combo = new Combo(shell, SWT.BORDER);
installPopup(combo);
final Text text = new Text(shell, SWT.BORDER);
installPopup(text);
shell.setSize(400, 300);
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}
private static void installPopup(Control control) {
final Listener listener = new Listener() {
private Shell shell;
@Override
public void handleEvent(Event event) {
if (event.type == SWT.KeyDown) {
if (event.character == ' ') {
shell = new Shell(control.getShell(), SWT.POP_UP | SWT.ON_TOP | SWT.BORDER);
final Point location = control.toDisplay(0, control.getSize().y);
shell.setBounds(location.x, location.y, 100, 100);
shell.setVisible(true);
}
} else if (event.type == SWT.FocusOut) {
if (shell != null) {
shell.dispose();
shell = null;
}
}
}
};
control.addListener(SWT.KeyDown, listener);
control.addListener(SWT.FocusOut, listener);
}
}