Package org.eclipse.ui.forms.widgets

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


    ScrolledForm form = managedForm.getForm();
    form.setText("Tasks");
   
    GridLayout layout = new GridLayout();
    layout.numColumns = 2;
    form.getBody().setLayout(new ColumnLayout());
   
    Dialog.applyDialogFont(form.getBody());
   
    createTasksListSection(form, toolkit);
    tasksListSectionPart = new SectionPart(tasksListSection) {
View Full Code Here


        String name = multiPageEditor.getEditorInput().getName();
        form.setText(EditorMessages.getString("ApexEditor.PropertiesTab.title", new Object[] { name })); //$NON-NLS-1$
    }

    protected void setUpLayout() {
        ColumnLayout layout = new ColumnLayout();
        layout.topMargin = 0;
        layout.bottomMargin = 5;
        layout.leftMargin = 10;
        layout.rightMargin = 10;
        layout.horizontalSpacing = 10;
View Full Code Here

        text.setFont(SWTResourceManager.getFont("Segoe UI", 16, SWT.NONE));
        toolkit.adapt(text, true, true);
        toolkit.adapt(sashForm, true, true);

        final Composite composite_1 = toolkit.createComposite(sashForm, SWT.NONE);
        final ColumnLayout columnLayout = new ColumnLayout();
        columnLayout.maxNumColumns = 1;
        composite_1.setLayout(columnLayout);
        toolkit.paintBordersFor(composite_1);

        final Section categorySection = toolkit.createSection(composite_1, Section.TITLE_BAR | Section.COMPACT | Section.EXPANDED);
View Full Code Here

TOP

Related Classes of org.eclipse.ui.forms.widgets.ColumnLayout

Copyright © 2018 www.massapicom. 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.