Examples of DialogLayout


Examples of nz.co.transparent.client.gui.util.DialogLayout

    mainToolBar.add(tenderSearchButton);

    mainToolBar.add(Box.createHorizontalGlue())// make buttons left aligned
    contentPane.add(mainToolBar);

    dialogPanel.setLayout(new DialogLayout());
    dialogPanel.setBorder(BorderFactory.createEmptyBorder(0, 5, 0, 5));

    dialogPanel.add(tenderLabel);
    tenderField.setText("");
    tenderField.setColumns(FIELD_LENGTH);
View Full Code Here

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

Examples of org.jitterbit.ui.layout.DialogLayout

    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

Examples of org.jitterbit.ui.layout.DialogLayout

        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

Examples of org.jitterbit.ui.layout.DialogLayout

        includeRetypeField = value;
    }

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

Examples of org.jitterbit.ui.layout.DialogLayout

     * 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

Examples of org.jitterbit.ui.layout.DialogLayout

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

Examples of org.jitterbit.ui.layout.DialogLayout

        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
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.