blob: 3ef1f5c5a5c350594ebfb7cc7caf8e0e010f3b1b [file] [log] [blame]
/*******************************************************************************
* 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.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class Bug230385_ControlSetGetSizeDiscrepancy {
private static final int SIZE_X = 500;
private static final int SIZE_Y = 350;
public static void main(String[] args) {
final Display display = new Display();
final Shell shell = new Shell();
shell.setSize(SIZE_X, SIZE_Y);
shell.open();
System.out.println("Size should be : " + SIZE_X + "x" + SIZE_Y);
System.out.println("Size actually is: " + shell.getSize().x + "x" +
shell.getSize().y + " [as returned by Control.getSize()]");
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}
}