Examples of south()


Examples of org.jitterbit.ui.layout.BorderLayoutBuilder.south()

            }
            if (automaticDeployPreference != null) {
                BorderLayoutBuilder wrapper = new BorderLayoutBuilder(0, 5);
                wrapper.center(pnl);
                preferenceBox = new KongaCheckBox("&Always deploy changed items without asking first");
                wrapper.south(preferenceBox);
                wrapper.setOpaqueRecursively(false);
                wrapper.setBorder(Empty.border(10, 10, 0, 10));
                return wrapper;
            } else {
                pnl.setOpaque(false, true);
View Full Code Here

Examples of org.jitterbit.ui.layout.BorderLayoutBuilder.south()

        databaseDefiner.addToLayout(top);
        loginDefiner.addToLayout(top);
        portDefiner.addToLayout(top);
        BorderLayoutBuilder layout = new BorderLayoutBuilder();
        layout.north(InvisiblePanel.newPanel(top));
        layout.south(layoutOptionalFields());
        wrap(layout);
    }

    private JComponent layoutOptionalFields() {
        DataLocationPanelLayout layout = new DataLocationPanelLayout();
View Full Code Here

Examples of org.jitterbit.ui.layout.BorderLayoutBuilder.south()

        stopAction.putValue(Action.NAME, "Stop Current Test and Continue With New Test");
        JButton cancelButton = dialog.createCancelButton();
        BoxBuilder buttons = BoxBuilder.horizontal();
        buttons.setUseSmallSizedIconsForActions(true);
        buttons.addAllWithSpace(10, stopAction, continueAction).glue().add(cancelButton);
        layout.south(buttons);
        layout.setBorder(Empty.border(10));
        layout.asContentPaneFor(dialog);
        dialog.pack();
        dialog.setLocationRelativeTo(null);
        dialog.setResizable(false);
View Full Code Here

Examples of org.jitterbit.ui.layout.BorderLayoutBuilder.south()

    }
   
    private static void layoutDialog(KongaDialog dlg, UiProvider content, KongaDialog.ButtonMode mode) {
        BorderLayoutBuilder cp = new BorderLayoutBuilder(content);
        cp.withEmptyBorder(10, 10, 10, 10);
        cp.south(createButtonPanel(dlg, mode));
        cp.asContentPaneFor(dlg);
    }

    private static JComponent createButtonPanel(KongaDialog dlg, KongaDialog.ButtonMode mode) {
        JPanel buttons = dlg.getButtonPanel(mode, 10);
View Full Code Here

Examples of org.jitterbit.ui.layout.BorderLayoutBuilder.south()

                        JOptionPane.showMessageDialog(frame, field.getText(), "See Here", JOptionPane.INFORMATION_MESSAGE);
                    }
                });
                JPanel south = new JPanel();
                south.add(alert);
                layout.south(south);
                layout.setBorder(new BorderBuilder(new RoundedBorder(8, 8)).empty(10));
                ComponentGlassPane pane = new ComponentGlassPane(layout.container());
                pane.setHideOnEscape(true);
                pane.setMoveable(true);
                pane.setFadeIn(true);
View Full Code Here

Examples of org.jitterbit.ui.layout.BorderLayoutBuilder.south()

            BorderLayoutBuilder layout = new BorderLayoutBuilder();
            layout.center(cards);
            BoxBuilder tabRow = BoxBuilder.horizontal().topAligned();
            tabRow.setBorder(Empty.border(0, 8, 16, 0)).setOpaque(true).setBackground(Colors.JITTERBIT_BLUE);
            tabRow.addAllWithSpace(TAB_GAP, tabs);
            layout.south(tabRow);
            layout.decorate(canvas);
        }

        @Override
        public void requestFocus() {
View Full Code Here

Examples of org.jitterbit.ui.layout.BorderLayoutBuilder.south()

        JComponent uiWrapper = BorderLayoutBuilder.fillWith(ui);
        layout.center(uiWrapper);
        JPanel buttons = dialog.getButtonPanel(KongaDialog.CLOSE_ONLY, -1, 0, -1);
        buttons.setBorder(Empty.border(10, 12, 16, 10));
        buttons.setBackground(Colors.JITTERBIT_BLUE);
        layout.south(buttons);
        return layout;
    }

    private void installFocusTraversalKeys(KongaDialog dialog) {
        JRootPane rp = dialog.getRootPane();
View Full Code Here

Examples of org.jitterbit.ui.layout.BorderLayoutBuilder.south()

    private static void layoutDialog(KongaDialog dialog, JButton resume, JButton stop) {
        BorderLayoutBuilder layout = new BorderLayoutBuilder(10, 10);
        layout.center("The test stopped at a breakpoint, but the server did not provide the location of the " +
            "breakpoint. This is a bug.");
        layout.west(CommonIcons.ERROR_24);
        layout.south(layoutButtons(resume, stop, dialog.createCloseButton()));
        layout.setBorder(Empty.border(10));
        layout.asContentPaneFor(dialog);
        dialog.pack();
        dialog.setResizable(false);
    }
View Full Code Here

Examples of org.jitterbit.ui.layout.BorderLayoutBuilder.south()

        BorderLayoutBuilder layout = new BorderLayoutBuilder(0, 10);
        layout.center(pad.getUi());
        BoxBuilder buttons = BoxBuilder.horizontal();
        Action testAction = pad.getUi().getTestAction();
        buttons.add(testAction).glue().add(new KongaButton(closeAction));
        layout.south(buttons);
        layout.setBorder(Empty.border(10));
        layout.asContentPaneFor(frame);
        frame.pack();
        frame.setLocationRelativeTo(appWin.getFrame());
        installEscapeKey(frame);
View Full Code Here

Examples of org.jitterbit.ui.layout.BorderLayoutBuilder.south()

                "<li>Make sure you have changed the database Source and Target definitions to use the new settings;</li>" +
                    "<li>Do a Test Connection on each of the database Sources and Targets;</li>" +
                "<li>It is also recommended that you create a backup of your project.</li>" +
                "</ul>" +
                "<br><br>Please select a conversion:</html>");
            layout.south(Grid.oneColumn(10).addAll(buttons));
            layout.decorate(canvas);
        }

        @Override
        public void requestFocus() {
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.