Creates a tabbed display with a single tab : Tab « SWT JFace Eclipse « Java






Creates a tabbed display with a single tab

Creates a tabbed display with a single tab
//Send questions, comments, bug reports, etc. to the authors:

//Rob Warner (rwarner@interspatial.com)
//Robert Harris (rbrt_harris@yahoo.com)

import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.*;

/**
 * Creates a tabbed display with a single tab
 */
public class TabSimple {
  public static void main(String[] args) {
    new TabSimple().run();
  }

  public void run() {
    Display display = new Display();
    Shell shell = new Shell(display);
    shell.setLayout(new FillLayout());
    shell.setText("Simple Tabs");
    TabFolder tabFolder = new TabFolder(shell, SWT.NONE);
    TabItem tabItem = new TabItem(tabFolder, SWT.NONE);
    shell.open();
    while (!shell.isDisposed()) {
      if (!display.readAndDispatch()) {
        display.sleep();
      }
    }
    display.dispose();
  }
}



           
       








Related examples in the same category

1.TabFolder ExampleTabFolder Example
2.Creates a tabbed display with four tabs and a few controlsCreates a tabbed display with four tabs and a few controls
3.Demonstrates CTabFolderDemonstrates CTabFolder
4.Tabbed Example
5.SWT Tab ControlSWT Tab Control
6.Create a CTabFolder with min and max buttons, as well as close button and Create a CTabFolder with min and max buttons, as well as close button and
7.Prevent an item from closingPrevent an item from closing
8.Prevent Tab from traversing out of a controlPrevent Tab from traversing out of a control
9.Set the tab traversal order of childrenSet the tab traversal order of children
10.implement tab traversal (behave like a tab group)implement tab traversal (behave like a tab group)