Examples of OneColumnPanel


Examples of org.jitterbit.ui.layout.OneColumnPanel

        pwdField.addTo(c);
        return c;
    }

    private UiProvider layoutOptionsSection() {
        OneColumnPanel c = new OneColumnPanel();
        c.setWeightX(1.0);
        c.setInsets(0, 0, 5, 0);
        c.add(createNewGUIDsBox);
        c.setInsets(0, 0, 0, 0);
        c.add(newProjectNameFieldCapsule);
        return c;
    }
View Full Code Here

Examples of org.jitterbit.ui.layout.OneColumnPanel

        inputPanel = new InputPanel();
        inputPanel.addInputField(nameField, nameField, nameField);
    }

    private void layoutInputPanel() {
        OneColumnPanel col = new OneColumnPanel();
        addNamePanel(col);
        addWsdlPanel(col);
        BorderLayoutBuilder.from(inputPanel.getUi()).center(col);
    }
View Full Code Here

Examples of org.jitterbit.ui.layout.OneColumnPanel

    private class Layout {

        private final OneColumnPanel col;

        public Layout() {
            col = new OneColumnPanel();
            col.setInsets(0, 0, 5, 0);
            addFilterUi();
            addButtons();
            addTree();
            addReadOnlyNote();
View Full Code Here

Examples of org.jitterbit.ui.layout.OneColumnPanel

        createTable();
        createUi();
    }

    private void createUi() {
        OneColumnPanel p = new OneColumnPanel();
        p.setFill(OneColumnPanel.NONE);
        p.setInsets(5, 5, 5, 5);
        p.add(rootSelector);
        p.add(extensionCheck);
        p.add(createSearchCapsule());
        p.add(createTableCapsule());
        panel = InvisiblePanel.newPanel();
        p.addToParent(panel, null);
        UiUtils.setOpaqueRecursivelySkipDefaults(panel, false);
    }
View Full Code Here

Examples of org.jitterbit.ui.layout.OneColumnPanel

        table = new JitterPackTable(true);
        table.addSelectionListener(new TableSelectionBroadcaster());
    }

    private OneColumnPanel createTableCapsule() {
        OneColumnPanel p = new OneColumnPanel();
        p.setFill(OneColumnPanel.NONE);
        p.setWeightX(1.0);
        p.setWeightY(1.0);
        p.setInsets(2, 5, 2, 5);
        p.add(Strings.getJitterPackInPluralString("Searcher.Table.Caption"));
        p.add(table);
        return p;
    }
View Full Code Here

Examples of org.jitterbit.ui.layout.OneColumnPanel

        JComponent ui = createUi();
        canvas.display(ui);
    }

    private JComponent createUi() {
        OneColumnPanel col = new OneColumnPanel();
        if (availableRoots.getNumberOfNames() == 0) {
            addNoRootsErrorMessage(col);
        } else {
            addOptionPanel(col);
        }
        col.setOpaque(false, true);
        JComponent wrapper = InvisiblePanel.newPanel();
        col.addToParent(wrapper, null);
        return wrapper;
    }
View Full Code Here

Examples of org.jitterbit.ui.layout.OneColumnPanel

        wrapper.setBorder(BorderFactory.createLineBorder(Color.BLACK, 2));
        return wrapper;
    }

    private OneColumnPanel layoutInformation() {
        OneColumnPanel col = new OneColumnPanel();
        col.setWeightX(1.0);
        col.setInsets(10, 5, 5, 0);
        addCaption(col);
        addCopyright(col);
        addVersion(col);
        addBuildTime(col);
        addSessionDetailsButton(col);
View Full Code Here

Examples of org.jitterbit.ui.layout.OneColumnPanel

        return keys;
    }

    @Override
    public void decorate(UiCanvas canvas) {
        OneColumnPanel col = new OneColumnPanel();
        col.setInsets(0, 0, 10, 0);
        col.add(createModeSelectorDecor());
        col.add(primaryKeyDefiner);
        if (includeAutoTruncateChoice) {
            col.addAll(" ", autoTruncateChoice);
        }
        col.setOpaque(false, false);
        JPanel wrapper = InvisiblePanel.newPanel();
        col.addToParent(wrapper, null);
        canvas.display(wrapper);
    }
View Full Code Here

Examples of org.jitterbit.ui.layout.OneColumnPanel

        this.constraints = constraints;
    }

    @Override
    public void layoutParameterDefiners(Collection<SearchParametersDefiner> definers) {
        OneColumnPanel layout = createNewLayout(definers);
        layout.addToParent(container, constraints);
        revalidateParent();
    }
View Full Code Here

Examples of org.jitterbit.ui.layout.OneColumnPanel

    private UiProvider layoutTop() {
        UiProvider titlePanel = createTitlePanel();
        if (isTabBased()) {
            return titlePanel;
        } else {
            OneColumnPanel col = new OneColumnPanel();
            col.setWeightX(1.0);
            col.addAll(titlePanel, createFilterField(Empty.border(0, 2, 0, 2)));
            return col;
        }
    }
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.