Examples of TableWrapData


Examples of org.eclipse.ui.forms.widgets.TableWrapData

        parent.setLayout( new TableWrapLayout() );
        FormToolkit toolkit = managedForm.getToolkit();

        Composite composite = toolkit.createComposite( parent );
        composite.setLayout( new GridLayout() );
        TableWrapData compositeTableWrapData = new TableWrapData( TableWrapData.FILL, TableWrapData.TOP );
        compositeTableWrapData.grabHorizontal = true;
        composite.setLayoutData( compositeTableWrapData );

        createSupportedAuthenticationMechanismsSection( composite, toolkit );
        createSaslSettingsSection( composite, toolkit );
View Full Code Here

Examples of org.eclipse.ui.forms.widgets.TableWrapData

        parent.setLayout( new TableWrapLayout() );
        FormToolkit toolkit = managedForm.getToolkit();

        Composite composite = toolkit.createComposite( parent );
        composite.setLayout( new GridLayout() );
        TableWrapData compositeTableWrapData = new TableWrapData( TableWrapData.FILL, TableWrapData.TOP );
        compositeTableWrapData.grabHorizontal = true;
        composite.setLayoutData( compositeTableWrapData );

        createSupportedAuthenticationMechanismsSection( composite, toolkit );
        createSaslSettingsSection( composite, toolkit );
View Full Code Here

Examples of org.eclipse.ui.forms.widgets.TableWrapData

        layout.rightMargin = 0;
        layout.bottomMargin = 0;
        buttons.setLayout(layout);

        Button add = toolkit.createButton(buttons, "Add", SWT.NULL);
        add.setLayoutData(new TableWrapData(TableWrapData.FILL));
        add.addSelectionListener(new SelectionAdapter()
        {
            public void widgetSelected(SelectionEvent e)
            {
                handleAdd();
            }
        });

        Button remove = toolkit.createButton(buttons, "Remove", SWT.NULL);
        remove.setLayoutData(new TableWrapData(TableWrapData.FILL));
        remove.addSelectionListener(new SelectionAdapter()
        {
            public void widgetSelected(SelectionEvent e)
            {
                handleRemoved();
View Full Code Here

Examples of org.eclipse.ui.forms.widgets.TableWrapData

        layout.rightMargin = 10;
        layout.numColumns = 1;
        layout.horizontalSpacing = 10;
        layout.verticalSpacing = 20;
        body.setLayout(layout);
        body.setLayoutData(new TableWrapData(TableWrapData.FILL));

        try
        {
            ExportPackagesSection exportPackages = new ExportPackagesSection(this, body,
                project);
View Full Code Here

Examples of org.eclipse.ui.forms.widgets.TableWrapData

        layout.leftMargin = 10;
        layout.rightMargin = 10;
        layout.numColumns = 1;
        layout.horizontalSpacing = 10;
        body.setLayout(layout);
        body.setLayoutData(new TableWrapData(TableWrapData.FILL));

        Composite top = toolkit.createComposite(body);
        layout = new TableWrapLayout();
        layout.verticalSpacing = 20;
        top.setLayout(layout);
        TableWrapData data = new TableWrapData(TableWrapData.FILL_GRAB);
        //data.colspan = 2;
        top.setLayoutData(data);

        Composite bottom = toolkit.createComposite(body);
        layout = new TableWrapLayout();
        layout.verticalSpacing = 20;
        bottom.setLayout(layout);
        bottom.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB));

        try
        {
            ClasspathSection classpath = new ClasspathSection(this, top, project);
            managedForm.addPart(classpath);
View Full Code Here

Examples of org.eclipse.ui.forms.widgets.TableWrapData

        tree = toolkit.createTree(body, SWT.CHECK | SWT.BORDER);
        Link link = new Link(body, SWT.WRAP);
        link.setText("Some resources may be filtered according to preferences. <a href=\"excludedResourcePrefs\">Click here</a> to edit the list of exclusions.");

        TableWrapData data = new TableWrapData(TableWrapData.FILL_GRAB);
        data.heightHint = 200;
        tree.setLayoutData(data);

        viewer = new CheckboxTreeViewer(tree);
        IProject base = getProjectModel().getProject();
View Full Code Here

Examples of org.eclipse.ui.forms.widgets.TableWrapData

        layout.leftMargin = 10;
        layout.rightMargin = 10;
        layout.numColumns = 2;
        layout.horizontalSpacing = 10;
        body.setLayout(layout);
        body.setLayoutData(new TableWrapData(TableWrapData.FILL));

        Composite left = toolkit.createComposite(body);
        layout = new TableWrapLayout();
        layout.verticalSpacing = 20;
        left.setLayout(layout);
        left.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB));

        Composite right = toolkit.createComposite(body);
        layout = new TableWrapLayout();
        layout.verticalSpacing = 20;
        right.setLayout(layout);
        right.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB));

        try
        {
            GeneralInfoSection general = new GeneralInfoSection(this, left, sigil);
            managedForm.addPart(general);
View Full Code Here

Examples of org.eclipse.ui.forms.widgets.TableWrapData

        GridData data = new GridData();
        data.verticalAlignment = SWT.TOP;
        buttons.setLayoutData(data);

        add = toolkit.createButton(buttons, "Add", SWT.NULL);
        add.setLayoutData(new TableWrapData(TableWrapData.FILL));
        add.addSelectionListener(new SelectionAdapter()
        {
            public void widgetSelected(SelectionEvent e)
            {
                handleAdd();
            }
        });

        edit = toolkit.createButton(buttons, "Edit", SWT.NULL);
        edit.setLayoutData(new TableWrapData(TableWrapData.FILL));
        edit.addSelectionListener(new SelectionAdapter()
        {
            public void widgetSelected(SelectionEvent e)
            {
                handleEdit();
            }
        });

        remove = toolkit.createButton(buttons, "Remove", SWT.NULL);
        remove.setLayoutData(new TableWrapData(TableWrapData.FILL));
        remove.addSelectionListener(new SelectionAdapter()
        {
            public void widgetSelected(SelectionEvent e)
            {
                handleRemoved();
View Full Code Here

Examples of org.eclipse.ui.forms.widgets.TableWrapData

        layout.rightMargin = 0;
        layout.bottomMargin = 0;
        buttons.setLayout(layout);

        Button add = toolkit.createButton(buttons, "Add", SWT.NULL);
        add.setLayoutData(new TableWrapData(TableWrapData.FILL));
        add.addSelectionListener(new SelectionAdapter()
        {
            public void widgetSelected(SelectionEvent e)
            {
                handleAdd();
            }
        });

        Button remove = toolkit.createButton(buttons, "Remove", SWT.NULL);
        remove.setLayoutData(new TableWrapData(TableWrapData.FILL));
        remove.addSelectionListener(new SelectionAdapter()
        {
            public void widgetSelected(SelectionEvent e)
            {
                handleRemoved();
View Full Code Here

Examples of org.eclipse.ui.forms.widgets.TableWrapData

        layout.leftMargin = 10;
        layout.rightMargin = 10;
        layout.numColumns = 2;
        layout.horizontalSpacing = 10;
        body.setLayout(layout);
        body.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB));

        Composite left = toolkit.createComposite(body);
        layout = new TableWrapLayout();
        layout.verticalSpacing = 20;
        left.setLayout(layout);
        TableWrapData layoutData = new TableWrapData(TableWrapData.FILL_GRAB);
        layoutData.rowspan = 2;
        left.setLayoutData(layoutData);

        Composite right = toolkit.createComposite(body);
        layout = new TableWrapLayout();
        layout.verticalSpacing = 20;
        right.setLayout(layout);
        right.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB));

        Composite bottom = toolkit.createComposite(body);
        layout = new TableWrapLayout();
        layout.verticalSpacing = 20;
        bottom.setLayout(layout);
        bottom.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB));

        try
        {
            importPackages = new ImportPackagesSection(this, left, project,
                unresolvedElements);
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.