Package org.jitterbit.ui.layout

Examples of org.jitterbit.ui.layout.DialogLayout


        controlPanel.setEnabled(enabled);
        passwordAction.setEnabled(enabled);
    }

    private void layoutComponents() {
        JPanel p = new JPanel(new DialogLayout(10, 10));
        layoutField(p, Strings.get("UserProfile.Label.Login"), loginField);
        layoutField(p, null, createPasswordButton());
        layoutField(p, Strings.get("UserProfile.Label.FirstName"), firstNameField);
        layoutField(p, Strings.get("UserProfile.Label.LastName"), lastNameField);
        layoutField(p, Strings.get("UserProfile.Label.Email"), emailField);
View Full Code Here


    private void disposeUndoRedo() {
        undoRedoInstaller.dispose();
    }

    protected JPanel createInputPanel() {
        JPanel p = new JPanel(new DialogLayout());
        layoutServerSelector(p);
        userCredentialsUi.layoutIn(p);
        layoutAdvancedControls(p);
        p.setBorder(Empty.border(20, 10, 5, 10));
        return p;
View Full Code Here

        TextStyle style = TextStyles.DefaultTextSmall;
        JLabel startValue = style.makeLabel(getTime(start));
        JLabel endValue = style.makeLabel(getTime(end));
        JLabel durationValue = style.makeLabel(getDuration(start, end));

        displayer = new JPanel(new DialogLayout());
        displayer.add(startLabel);
        displayer.add(startValue);
        displayer.add(endLabel);
        displayer.add(endValue);
        displayer.add(durationLabel);
View Full Code Here

        includeRetypeField = value;
    }

    protected JPanel createInputPanel() {
        createPasswordFields();
        return new JPanel(new DialogLayout());
    }
View Full Code Here

     * Creates a new <code>StatusIndicator</code>.
     *
     * @param status the initial status
     */
    public StatusIndicator(EnumSet<ServerStatus> status) {
        panel = new JPanel(new DialogLayout(5, 5));
        panel.setAlignmentX(Component.LEFT_ALIGNMENT);
        createLights();
        setStatus(status);
    }
View Full Code Here

    public InputFieldDialogLayout() {
        this(5, 10);
    }
   
    public InputFieldDialogLayout(int hGap, int vGap) {
        panel = new JPanel(new DialogLayout(hGap, vGap));
    }
View Full Code Here

        layout.center(layoutFields()).east(layoutButtons()).south(modelStringField);
        return layout;
    }

    private JComponent layoutFields() {
        JPanel p = new JPanel(new DialogLayout());
        p.add(new JLabel("First name:"));
        p.add(firstNameField);
        p.add(new JLabel("Last name:"));
        p.add(lastNameField);
        p.add(new JLabel(" "));
View Full Code Here

TOP

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

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.