Search in sources :

Example 71 with CellConstraints

use of com.jgoodies.forms.layout.CellConstraints in project chipKIT32-MAX by chipKIT32.

the class HeaderForm method addFillComponents.

/**
    * Adds fill components to empty cells in the first row and first column of the grid.
    * This ensures that the grid spacing will be the same as shown in the designer.
    * @param cols an array of column indices in the first row where fill components should be added.
    * @param rows an array of row indices in the first column where fill components should be added.
    */
void addFillComponents(Container panel, int[] cols, int[] rows) {
    Dimension filler = new Dimension(10, 10);
    boolean filled_cell_11 = false;
    CellConstraints cc = new CellConstraints();
    if (cols.length > 0 && rows.length > 0) {
        if (cols[0] == 1 && rows[0] == 1) {
            /** add a rigid area  */
            panel.add(Box.createRigidArea(filler), cc.xy(1, 1));
            filled_cell_11 = true;
        }
    }
    for (int index = 0; index < cols.length; index++) {
        if (cols[index] == 1 && filled_cell_11) {
            continue;
        }
        panel.add(Box.createRigidArea(filler), cc.xy(cols[index], 1));
    }
    for (int index = 0; index < rows.length; index++) {
        if (rows[index] == 1 && filled_cell_11) {
            continue;
        }
        panel.add(Box.createRigidArea(filler), cc.xy(1, rows[index]));
    }
}
Also used : Dimension(java.awt.Dimension) CellConstraints(com.jgoodies.forms.layout.CellConstraints)

Example 72 with CellConstraints

use of com.jgoodies.forms.layout.CellConstraints in project chipKIT32-MAX by chipKIT32.

the class JreForm method addFillComponents.

/**
    * Adds fill components to empty cells in the first row and first column of the grid.
    * This ensures that the grid spacing will be the same as shown in the designer.
    * @param cols an array of column indices in the first row where fill components should be added.
    * @param rows an array of row indices in the first column where fill components should be added.
    */
void addFillComponents(Container panel, int[] cols, int[] rows) {
    Dimension filler = new Dimension(10, 10);
    boolean filled_cell_11 = false;
    CellConstraints cc = new CellConstraints();
    if (cols.length > 0 && rows.length > 0) {
        if (cols[0] == 1 && rows[0] == 1) {
            /** add a rigid area  */
            panel.add(Box.createRigidArea(filler), cc.xy(1, 1));
            filled_cell_11 = true;
        }
    }
    for (int index = 0; index < cols.length; index++) {
        if (cols[index] == 1 && filled_cell_11) {
            continue;
        }
        panel.add(Box.createRigidArea(filler), cc.xy(cols[index], 1));
    }
    for (int index = 0; index < rows.length; index++) {
        if (rows[index] == 1 && filled_cell_11) {
            continue;
        }
        panel.add(Box.createRigidArea(filler), cc.xy(1, rows[index]));
    }
}
Also used : Dimension(java.awt.Dimension) CellConstraints(com.jgoodies.forms.layout.CellConstraints)

Example 73 with CellConstraints

use of com.jgoodies.forms.layout.CellConstraints in project chipKIT32-MAX by chipKIT32.

the class JreForm method createPanel.

public JPanel createPanel() {
    JPanel jpanel1 = new JPanel();
    FormLayout formlayout1 = new FormLayout("FILL:7DLU:NONE,RIGHT:MAX(65DLU;DEFAULT):NONE,FILL:3DLU:NONE,FILL:60DLU:NONE,FILL:3DLU:NONE,FILL:DEFAULT:NONE,FILL:7DLU:NONE,FILL:60DLU:NONE,FILL:3DLU:NONE,FILL:DEFAULT:GROW(1.0),FILL:7DLU:NONE", "CENTER:9DLU:NONE,CENTER:DEFAULT:NONE,CENTER:3DLU:NONE,CENTER:DEFAULT:NONE,CENTER:3DLU:NONE,CENTER:DEFAULT:NONE,CENTER:3DLU:NONE,CENTER:DEFAULT:NONE,CENTER:3DLU:NONE,CENTER:DEFAULT:NONE,CENTER:3DLU:NONE,FILL:50DLU:GROW(1.0),CENTER:3DLU:NONE,CENTER:DEFAULT:NONE,CENTER:9DLU:NONE");
    CellConstraints cc = new CellConstraints();
    jpanel1.setLayout(formlayout1);
    _jrePathLabel.setName("jrePathLabel");
    _jrePathLabel.setText(Messages.getString("jrePath"));
    jpanel1.add(_jrePathLabel, cc.xy(2, 2));
    _jreMinLabel.setName("jreMinLabel");
    _jreMinLabel.setText(Messages.getString("jreMin"));
    jpanel1.add(_jreMinLabel, cc.xy(2, 4));
    _jreMaxLabel.setName("jreMaxLabel");
    _jreMaxLabel.setText(Messages.getString("jreMax"));
    jpanel1.add(_jreMaxLabel, cc.xy(2, 6));
    _jvmOptionsTextLabel.setName("jvmOptionsTextLabel");
    _jvmOptionsTextLabel.setText(Messages.getString("jvmOptions"));
    jpanel1.add(_jvmOptionsTextLabel, new CellConstraints(2, 12, 1, 1, CellConstraints.DEFAULT, CellConstraints.TOP));
    _jrePathField.setName("jrePathField");
    _jrePathField.setToolTipText(Messages.getString("jrePathTip"));
    jpanel1.add(_jrePathField, cc.xywh(4, 2, 7, 1));
    _jreMinField.setName("jreMinField");
    jpanel1.add(_jreMinField, cc.xy(4, 4));
    _jreMaxField.setName("jreMaxField");
    jpanel1.add(_jreMaxField, cc.xy(4, 6));
    _jvmOptionsTextArea.setName("jvmOptionsTextArea");
    _jvmOptionsTextArea.setToolTipText(Messages.getString("jvmOptionsTip"));
    JScrollPane jscrollpane1 = new JScrollPane();
    jscrollpane1.setViewportView(_jvmOptionsTextArea);
    jscrollpane1.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
    jscrollpane1.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
    jpanel1.add(jscrollpane1, cc.xywh(4, 12, 7, 1));
    _initialHeapSizeLabel.setName("initialHeapSizeLabel");
    _initialHeapSizeLabel.setText(Messages.getString("initialHeapSize"));
    jpanel1.add(_initialHeapSizeLabel, cc.xy(2, 8));
    _maxHeapSizeLabel.setName("maxHeapSizeLabel");
    _maxHeapSizeLabel.setText(Messages.getString("maxHeapSize"));
    jpanel1.add(_maxHeapSizeLabel, cc.xy(2, 10));
    JLabel jlabel1 = new JLabel();
    jlabel1.setText("MB");
    jpanel1.add(jlabel1, cc.xy(6, 8));
    JLabel jlabel2 = new JLabel();
    jlabel2.setText("MB");
    jpanel1.add(jlabel2, cc.xy(6, 10));
    _initialHeapSizeField.setName("initialHeapSizeField");
    jpanel1.add(_initialHeapSizeField, cc.xy(4, 8));
    _maxHeapSizeField.setName("maxHeapSizeField");
    jpanel1.add(_maxHeapSizeField, cc.xy(4, 10));
    jpanel1.add(createPanel1(), cc.xywh(2, 14, 9, 1));
    _maxHeapPercentField.setName("maxHeapPercentField");
    jpanel1.add(_maxHeapPercentField, cc.xy(8, 10));
    _initialHeapPercentField.setName("initialHeapPercentField");
    jpanel1.add(_initialHeapPercentField, cc.xy(8, 8));
    _jdkPreferenceCombo.setName("jdkPreferenceCombo");
    jpanel1.add(_jdkPreferenceCombo, cc.xywh(8, 4, 3, 1));
    JLabel jlabel3 = new JLabel();
    jlabel3.setText(Messages.getString("freeMemory"));
    jpanel1.add(jlabel3, cc.xy(10, 8));
    JLabel jlabel4 = new JLabel();
    jlabel4.setText(Messages.getString("freeMemory"));
    jpanel1.add(jlabel4, cc.xy(10, 10));
    addFillComponents(jpanel1, new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 }, new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 });
    return jpanel1;
}
Also used : FormLayout(com.jgoodies.forms.layout.FormLayout) JScrollPane(javax.swing.JScrollPane) JPanel(javax.swing.JPanel) JLabel(javax.swing.JLabel) CellConstraints(com.jgoodies.forms.layout.CellConstraints)

Example 74 with CellConstraints

use of com.jgoodies.forms.layout.CellConstraints in project chipKIT32-MAX by chipKIT32.

the class JreForm method createPanel1.

public JPanel createPanel1() {
    JPanel jpanel1 = new JPanel();
    FormLayout formlayout1 = new FormLayout("RIGHT:MAX(65DLU;DEFAULT):NONE,FILL:3DLU:NONE,FILL:DEFAULT:GROW(1.0),FILL:3DLU:NONE,FILL:DEFAULT:NONE,FILL:3DLU:NONE,FILL:DEFAULT:NONE", "CENTER:DEFAULT:NONE,CENTER:3DLU:NONE,CENTER:DEFAULT:NONE");
    CellConstraints cc = new CellConstraints();
    jpanel1.setLayout(formlayout1);
    _varCombo.setName("varCombo");
    jpanel1.add(_varCombo, cc.xy(3, 1));
    _propertyButton.setActionCommand("Add");
    _propertyButton.setIcon(loadImage("images/edit_add16.png"));
    _propertyButton.setName("propertyButton");
    _propertyButton.setText(Messages.getString("property"));
    _propertyButton.setToolTipText(Messages.getString("propertyTip"));
    jpanel1.add(_propertyButton, cc.xy(5, 1));
    _optionButton.setActionCommand("Add");
    _optionButton.setIcon(loadImage("images/edit_add16.png"));
    _optionButton.setName("optionButton");
    _optionButton.setText(Messages.getString("option"));
    _optionButton.setToolTipText(Messages.getString("optionTip"));
    jpanel1.add(_optionButton, cc.xy(7, 1));
    _envPropertyButton.setActionCommand("Add");
    _envPropertyButton.setIcon(loadImage("images/edit_add16.png"));
    _envPropertyButton.setName("envPropertyButton");
    _envPropertyButton.setText(Messages.getString("property"));
    _envPropertyButton.setToolTipText(Messages.getString("propertyTip"));
    jpanel1.add(_envPropertyButton, cc.xy(5, 3));
    JLabel jlabel1 = new JLabel();
    jlabel1.setText(Messages.getString("varsAndRegistry"));
    jpanel1.add(jlabel1, cc.xy(1, 1));
    JLabel jlabel2 = new JLabel();
    jlabel2.setIcon(loadImage("images/asterix.gif"));
    jlabel2.setText(Messages.getString("envVar"));
    jpanel1.add(jlabel2, cc.xy(1, 3));
    _envOptionButton.setActionCommand("Add");
    _envOptionButton.setIcon(loadImage("images/edit_add16.png"));
    _envOptionButton.setName("envOptionButton");
    _envOptionButton.setText(Messages.getString("option"));
    _envOptionButton.setToolTipText(Messages.getString("optionTip"));
    jpanel1.add(_envOptionButton, cc.xy(7, 3));
    _envVarField.setName("envVarField");
    jpanel1.add(_envVarField, cc.xy(3, 3));
    addFillComponents(jpanel1, new int[] { 2, 4, 6 }, new int[] { 2 });
    return jpanel1;
}
Also used : FormLayout(com.jgoodies.forms.layout.FormLayout) JPanel(javax.swing.JPanel) JLabel(javax.swing.JLabel) CellConstraints(com.jgoodies.forms.layout.CellConstraints)

Example 75 with CellConstraints

use of com.jgoodies.forms.layout.CellConstraints in project chipKIT32-MAX by chipKIT32.

the class SplashForm method addFillComponents.

/**
    * Adds fill components to empty cells in the first row and first column of the grid.
    * This ensures that the grid spacing will be the same as shown in the designer.
    * @param cols an array of column indices in the first row where fill components should be added.
    * @param rows an array of row indices in the first column where fill components should be added.
    */
void addFillComponents(Container panel, int[] cols, int[] rows) {
    Dimension filler = new Dimension(10, 10);
    boolean filled_cell_11 = false;
    CellConstraints cc = new CellConstraints();
    if (cols.length > 0 && rows.length > 0) {
        if (cols[0] == 1 && rows[0] == 1) {
            /** add a rigid area  */
            panel.add(Box.createRigidArea(filler), cc.xy(1, 1));
            filled_cell_11 = true;
        }
    }
    for (int index = 0; index < cols.length; index++) {
        if (cols[index] == 1 && filled_cell_11) {
            continue;
        }
        panel.add(Box.createRigidArea(filler), cc.xy(cols[index], 1));
    }
    for (int index = 0; index < rows.length; index++) {
        if (rows[index] == 1 && filled_cell_11) {
            continue;
        }
        panel.add(Box.createRigidArea(filler), cc.xy(1, rows[index]));
    }
}
Also used : Dimension(java.awt.Dimension) CellConstraints(com.jgoodies.forms.layout.CellConstraints)

Aggregations

CellConstraints (com.jgoodies.forms.layout.CellConstraints)142 FormLayout (com.jgoodies.forms.layout.FormLayout)97 JPanel (javax.swing.JPanel)65 Dimension (java.awt.Dimension)42 JLabel (javax.swing.JLabel)30 JScrollPane (javax.swing.JScrollPane)29 PanelBuilder (com.jgoodies.forms.builder.PanelBuilder)18 BorderLayout (java.awt.BorderLayout)12 JButton (javax.swing.JButton)7 TitledSeparator (com.jeta.forms.components.separator.TitledSeparator)6 JRadioButton (javax.swing.JRadioButton)6 DatePanel (jgnash.ui.components.DatePanel)5 TextAdapter (org.apache.cayenne.modeler.util.TextAdapter)5 FlowLayout (java.awt.FlowLayout)4 JSpinner (javax.swing.JSpinner)4 JTextField (javax.swing.JTextField)4 SpinnerNumberModel (javax.swing.SpinnerNumberModel)4 GridConstraints (com.intellij.uiDesigner.core.GridConstraints)3 DefaultFormBuilder (com.jgoodies.forms.builder.DefaultFormBuilder)3 JCayenneCheckBox (org.apache.cayenne.swing.components.JCayenneCheckBox)3