Package org.eclipse.ui.forms.widgets

Examples of org.eclipse.ui.forms.widgets.FormToolkit.createTable()


    data = new GridData();
    data.grabExcessHorizontalSpace = true;
    data.horizontalAlignment = SWT.FILL;
    templateGroup.setLayoutData(data);
    templateGroup.setLayout(new RowLayout(SWT.VERTICAL));
    templateTable = toolkit.createTable(templateGroup, SWT.BORDER);
    for (String description : TemplateInfo.templateDescriptions) {
      TableItem tableItem = new TableItem(templateTable, SWT.NONE);
      tableItem.setText(description);
    }
    templateTable.setEnabled(false);
View Full Code Here


      }
    });
    filter.setMessage(ExecutionDataEditorExecutedClassesPageFilter_message);
    filter.setLayoutData(new GridData(SWT.FILL, 0, true, false));

    final Table dataTable = toolkit.createTable(body, SWT.VIRTUAL
        | SWT.FULL_SELECTION | SWT.V_SCROLL | SWT.BORDER);
    dataTable.setHeaderVisible(true);
    dataTable.setLinesVisible(true);
    dataTable.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
View Full Code Here

    toolkit.decorateFormHeading(form.getForm());

    final Composite body = form.getBody();
    GridLayoutFactory.swtDefaults().applyTo(body);

    final Table sessionTable = toolkit.createTable(body, SWT.FULL_SELECTION
        | SWT.V_SCROLL | SWT.BORDER);
    GridDataFactory.fillDefaults().grab(true, true).applyTo(sessionTable);
    sessionTable.setHeaderVisible(true);
    sessionTable.setLinesVisible(true);
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.