Package org.jitterbit.ui.layout

Examples of org.jitterbit.ui.layout.Grid


        installShortcuts(overlay);
        return overlay;
    }

    private JComponent createOverlayButtons(OverlayDecorator overlay, Action okAction) {
        Grid buttons = Grid.oneRow(10);
        buttons.addAll(okAction, overlay.getCancelAction());
        BoxBuilder row = BoxBuilder.horizontal();
        row.glue().add(buttons);
        return row.container();
    }
View Full Code Here


        return checkBox;
    }
   
    @Override
    public void decorate(UiCanvas canvas) {
        Grid col = Grid.oneColumn(10);
        col.add("Select the types of outcomes to display:");
        for (JCheckBox cb : selectors) {
            layoutSelector(col, cb);
        }
        col.decorate(canvas);
    }
View Full Code Here

        responseTree.populate(structures.response());
    }

    @Override
    public void decorate(UiCanvas canvas) {
        Grid grid = new Grid(1, 2, 5, 0);
        grid.addAll(requestTree, responseTree);
        grid.setPreferredSize(new Dimension(800, 400));
        grid.decorate(canvas);
    }
View Full Code Here

    @Override
    public void decorate(UiCanvas canvas) {
        UiProvider left = layoutList(projectDataElementsList, projectHeaderLabel);
        UiProvider right = layoutList(builtInDataElementsList, new JLabel("Jitterbit Variables",
                            ClientIcons.APPLICATION_16, SwingConstants.LEADING));
        Grid grid = Grid.oneRow(10).addAll(left, right);
        grid.setOpaqueRecursively(false);
        grid.decorate(canvas);
    }
View Full Code Here

            setSelectAllWhenFocused(true);
        }

        @Override
        public void decorate(UiCanvas canvas) {
            Grid grid = Grid.oneColumn();
            super.decorate(grid);
            grid.add(getRequiresRestartNote());
            grid.setBorder(StyleSheet.getDefaultTitleBorder("Application Log History"));
            grid.decorate(canvas);
        }
View Full Code Here

            layoutTable();
            layoutSouth();
        }

        private void layoutNorth() {
            Grid grid = Grid.oneColumn(10);
            grid.addAll(rootSelector, InvisiblePanel.newPanel(nameFilterField));
            layout.north(grid);
        }
View Full Code Here

    }

    private void addCaptions(BorderLayoutBuilder tablePanel) {
        JLabel mainCaption = TextStyles.InfoTextHeader.makeLabel(RESOURCES.getString("Caption.Dialog.Main"));
        JLabel subCaption = TextStyles.AdminHint.makeLabel(RESOURCES.getString("Caption.Dialog.Sub"));
        Grid grid = Grid.oneColumn(3);
        grid.addAll(mainCaption, subCaption);
        tablePanel.north(grid);
    }
View Full Code Here

        }
    }

    @Override
    public void decorate(UiCanvas canvas) {
        Grid column = Grid.oneColumn(10);
        column.addAll(" ", applyButton, resetButton, viewEffectiveButton);
        column.decorate(canvas);
    }
View Full Code Here

        no.addActionListener(a);
    }

    @Override
    public void decorate(UiCanvas canvas) {
        Grid grid = Grid.oneRow(20).addAll(yes, no);
        canvas.display(InvisiblePanel.newPanel(grid));
    }
View Full Code Here

        });
    }

    @Override
    public void decorate(UiCanvas canvas) {
        Grid row = Grid.oneRow(10);
        row.addAll(tree, problemList);
        row.decorate(canvas);
    }
View Full Code Here

TOP

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

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.