blob: 6f18a8a512f87070be1e1d356c99cfec2d2280ea [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.SWT;
import org.eclipse.swt.custom.CTabFolder;
import org.eclipse.swt.custom.CTabItem;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class Bug221962_CTabFolderCorrupted {
public static final void main(final String[] args) {
Display display = new Display();
Shell shell = new Shell(display);
shell.setText( "CTabFolder Test" );
shell.setLayout( new FillLayout() );
CTabFolder folder = new CTabFolder( shell, SWT.BORDER|SWT.FLAT );
folder.setSimple(false);
CTabItem item;
item = new CTabItem(folder,SWT.NONE);
item.setText("First");
item = new CTabItem(folder, SWT.CLOSE);
item.setText("Second");
shell.pack();
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
}
}