blob: 761877e5303caf51a59ea1a1d47c0c9bd1420880 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Red Hat and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Red Hat - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.tests.gtk.snippets;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;
public class Bug97527_LabelSizing {
public static void main(String[] args) {
Display display = new Display();
Shell shell = new Shell(display);
GridLayout layout = new GridLayout(2,false);
layout.numColumns = 2;
shell.setLayout(layout);
Label label = new Label(shell, SWT.WRAP);
label.setText("here is a long piece of widget.text which might wrap or might not depending on the platform at runtime" +
" here is a long piece of widget.text which might wrap or might not depending on the" +
"platform at runtime");
final GridData gridData = new GridData(SWT.FILL, SWT.TOP, true, false, 2, 1);
label.setLayoutData(gridData);
shell.pack();
System.out.println(shell.getSize());
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
}
}