Package org.jitterbit.ui.layout

Examples of org.jitterbit.ui.layout.TwoColumnPanel


    private void layoutExistingOperations(OneColumnPanel col) {
        col.setWeightY(0.0);
        col.setWeightX(1.0);
        col.setFill(OneColumnPanel.NONE);
        col.add(existingOperations);
        TwoColumnPanel grid = new TwoColumnPanel();
        infoViewer.layoutIn(grid);
        col.add(grid);
    }
View Full Code Here


    }

    @Override
    public void addToLayout(DataLocationPanelLayout layout) {
        if (selector != null) {
            TwoColumnPanel grid = new TwoColumnPanel();
            grid.setLeftFill(TwoColumnPanel.HORIZONTAL);
            grid.setRightAnchor(TwoColumnPanel.SOUTHWEST);
            layout(grid);
            layout.add(null, InvisiblePanel.newPanel(grid), true);
        }
    }
View Full Code Here

        inputPanel.setSendInputChangeEvents(true);
        inputPanel.setSendUndoEvents(true);
    }

    private void layoutComponents() {
        TwoColumnPanel cols = new TwoColumnPanel();
        cols.setAnchor(OneRowPanel.SOUTHWEST);
        cols.setInsets(5, 25, 5, 5);
        cols.addRow(activationCheck.getInputComponent());
        cols.setInsets(5, 5, 5, 5);
        JComponent left = getInputFieldForLayout(account);
        JComponent right = passwordButton;
        cols.addRow(left, right);
        JComponent p = InvisiblePanel.newPanel();
        cols.addToParent(p, null);
        UiUtils.setOpaqueRecursivelySkipDefaults(p, false);
        dropDownPanel = createDropdownPanel(p);
    }
View Full Code Here

        private final TwoColumnPanel topGrid;

        private final OneColumnPanel column;

        private Layout() {
            topGrid = new TwoColumnPanel();
            topGrid.setLeftInsets(10, 5, 5, 10).setRightInsets(10, 5, 5, 0);
            topGrid.setLeftFill(Fill.HORIZONTAL).setRightFill(Fill.HORIZONTAL);
            topGrid.setLeftWeights(0.0, 0.0).setRightWeights(0.1, 0.0);
            topGrid.setOpaque(false, false);
            column = new OneColumnPanel();
View Full Code Here

        return tabs.asComponent();
    }
   
    private JComponent createDetailsFormCapsule() {
        JComponent capsule = InvisiblePanel.newPanel();
        TwoColumnPanel form = createDetailsForm();
        form.addToParent(capsule, null);
        return capsule;
    }
View Full Code Here

    private JComponent createManifestXmlCapsule() {
        return BorderLayoutBuilder.fillWith(manifestViewer);
    }
   
    private TwoColumnPanel createDetailsForm() {
        TwoColumnPanel p = new TwoColumnPanel();
        p.setInsets(5, 5, 5, 5);
        p.setRightFill(TwoColumnPanel.HORIZONTAL);
        p.setRightWeights(1.0, 0.0);
        addOneLineEntry(p, Strings.get("PipelinePlugin.Label.Name"), plugin.getName());
        addOneLineEntry(p, Strings.get("PipelinePlugin.Label.Version"), plugin.getVersion());
        addOneLineEntry(p, Strings.get("PipelinePlugin.Label.Author"), plugin.getAuthor());
        addOneLineEntry(p, Strings.get("PipelinePlugin.Label.Command"), plugin.getCommand());
        addOneLineEntry(p, Strings.get("PipelinePlugin.Label.Arguments"), plugin.getArguments());
        addMultiLineEntry(p, Strings.get("PipelinePlugin.Label.Description"), plugin.getDescription());
        addUrlEntry(p, Strings.get("PipelinePlugin.Label.DocumentationUrl"), plugin.getDocumentationUrl());
        addUrlEntry(p, Strings.get("PipelinePlugin.Label.UpdateUrl"), plugin.getUpdateUrl());
        addDataElementsTable(p);
        p.setOpaque(false, true);
        return p;
    }
View Full Code Here

            anchor.north(layout);
            anchor.decorate(canvas);
        }

        private void layoutSearchFields() {
            TwoColumnPanel grid = new TwoColumnPanel();
            grid.setLeftInsets(0, 0, 5, 5);
            grid.setRightInsets(0, 0, 5, 0);
            grid.setRightFill(TwoColumnPanel.HORIZONTAL);
            grid.setRightWeights(1.0, 0.0);
            layoutField(grid, searchTextField, PackageResources.TextSearch.WHAT);
            if (replaceField != null) {
                layoutField(grid, replaceField, PackageResources.TextSearch.REPLACE);
            }
            layout.add(grid);
View Full Code Here

TOP

Related Classes of org.jitterbit.ui.layout.TwoColumnPanel

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.