Examples of TabFolderLayout


Examples of edu.hawaii.ics.csdl.jupiter.util.TabFolderLayout

   * @param dialog the composite.
   * @return the <code>TabFolder</code> instance.
   */
  private TabFolder createTabFolder(Composite dialog) {
    TabFolder folder = new TabFolder(dialog, SWT.BOTTOM);
    folder.setLayout(new TabFolderLayout());
    FormData folderData = new FormData();
    folderData.top = new FormAttachment(0, -3);
    folderData.left = new FormAttachment(0, -2);
    folderData.right = new FormAttachment(100, +2);
    folderData.bottom = new FormAttachment(100, 0);
View Full Code Here

Examples of edu.hawaii.ics.csdl.jupiter.util.TabFolderLayout

   * @param dialog the composite.
   * @return the <code>TabFolder</code> instance.
   */
  private TabFolder createTabFolder(Composite dialog) {
    TabFolder folder = new TabFolder(dialog, SWT.NONE);
    folder.setLayout(new TabFolderLayout());
    FormData folderData = new FormData();
    folderData.width = folderWidth;
    folderData.top = new FormAttachment(reviewIdDescriptionText, 5);
    folderData.left = new FormAttachment(0, 0);
    folderData.right = new FormAttachment(100, 0);
View Full Code Here

Examples of org.eclipse.wst.sse.ui.internal.preferences.TabFolderLayout

    String description = SSEUIMessages.FilePreferencePage_0; //$NON-NLS-1$
    createLabel(composite, description);
    createLabel(composite, ""); //$NON-NLS-1$

    TabFolder folder = new TabFolder(composite, SWT.NONE);
    folder.setLayout(new TabFolderLayout());
    folder.setLayoutData(new GridData(GridData.FILL_BOTH));

//    TabItem taskItem = new TabItem(folder, SWT.NONE);
//    IPreferenceTab tasksTab = new TaskTagPreferenceTab();
//    taskItem.setText(tasksTab.getTitle());
View Full Code Here

Examples of org.eclipse.wst.sse.ui.internal.preferences.TabFolderLayout

    fOverlayStore.load();
    fOverlayStore.start();

    TabFolder folder = new TabFolder(parent, SWT.NONE);
    folder.setLayout(new TabFolderLayout());
    folder.setLayoutData(new GridData(GridData.FILL_BOTH));

    TabItem item = new TabItem(folder, SWT.NONE);
    item.setText(SSEUIMessages.StructuredTextEditorPreferencePage_0); //$NON-NLS-1$
    item.setControl(createAppearancePage(folder));
View Full Code Here

Examples of org.eclipse.wst.sse.ui.internal.preferences.TabFolderLayout

    fEnableCheckbox.setText(SSEUIMessages.TaskTagPreferenceTab_31); //$NON-NLS-1$
    fEnableCheckbox.setSelection(fEnableTaskTags);
    fEnableCheckbox.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_BEGINNING, GridData.VERTICAL_ALIGN_END, false, false, 1, 1));

    fTabFolder = new TabFolder(composite, SWT.NONE);
    fTabFolder.setLayout(new TabFolderLayout());
    fTabFolder.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 2, 1));

    TabItem taskItem = new TabItem(fTabFolder, SWT.NONE);
    MainTab mainTab = new MainTab(this, fPreferencesService, preferenceScopes);
    taskItem.setText(mainTab.getTitle());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.