| java.lang.Object com.jgoodies.forms.builder.AbstractFormBuilder com.jgoodies.forms.builder.PanelBuilder
All known Subclasses: com.jgoodies.forms.builder.ButtonBarBuilder, com.jgoodies.forms.builder.ButtonStackBuilder, com.jgoodies.forms.builder.AbstractI15dPanelBuilder,
PanelBuilder | public class PanelBuilder extends AbstractFormBuilder (Code) | | An general purpose panel builder that uses the
FormLayout
to lay out JPanel s. It provides convenience methods
to set a default border and to add labels, titles and titled separators.
The PanelBuilder is the working horse for layouts when more specialized
builders like the
ButtonBarBuilder or
DefaultFormBuilder
are inappropriate.
The Forms tutorial includes several examples that present and compare
different style to build with the PanelBuilder: static row numbers
vs. row variable, explicit CellConstraints vs. builder cursor,
static rows vs. dynamically added rows. Also, you may check out the
Tips & Tricks section of the Forms HTML documentation.
The text arguments passed to the methods #addLabel ,
#addTitle , and #addSeparator can contain
an optional mnemonic marker. The mnemonic and mnemonic index
are indicated by a single ampersand (&). For example
"&Save", or "Save &as".
To use the ampersand itself duplicate it, for example
"Look&&Feel".
Example:
This example creates a panel with 3 columns and 3 rows.
FormLayout layout = new FormLayout(
"right:pref, 6dlu, 50dlu, 4dlu, default", // columns
"pref, 3dlu, pref, 3dlu, pref"); // rows
PanelBuilder builder = new PanelBuilder(layout);
CellConstraints cc = new CellConstraints();
builder.addLabel("&Title", cc.xy (1, 1));
builder.add(new JTextField(), cc.xywh(3, 1, 3, 1));
builder.addLabel("&Price", cc.xy (1, 3));
builder.add(new JTextField(), cc.xy (3, 3));
builder.addLabel("&Author", cc.xy (1, 5));
builder.add(new JTextField(), cc.xy (3, 5));
builder.add(new JButton("..."), cc.xy (5, 5));
return builder.getPanel();
author: Karsten Lentzsch version: $Revision: 1.5 $ See Also: com.jgoodies.forms.factories.ComponentFactory See Also: I15dPanelBuilder See Also: DefaultFormBuilder |
Method Summary | |
final public JLabel | add(JLabel label, CellConstraints labelConstraints, Component component, CellConstraints componentConstraints) Adds a label and component to the panel using the given cell constraints.
Sets the given label as the component label using
JLabel.setLabelFor(java.awt.Component) .
Note: The
CellConstraints objects for the label
and the component must be different. | final public JLabel | addLabel(String textWithMnemonic) | final public JLabel | addLabel(String textWithMnemonic, CellConstraints constraints) | final public JLabel | addLabel(String textWithMnemonic, String encodedConstraints) | final public JLabel | addLabel(String textWithMnemonic, CellConstraints labelConstraints, Component component, CellConstraints componentConstraints) Adds a label and component to the panel using the given cell constraints.
Sets the given label as the component label using
JLabel.setLabelFor(java.awt.Component) .
Note: The
CellConstraints objects for the label
and the component must be different. | final public JComponent | addSeparator(String textWithMnemonic) | final public JComponent | addSeparator(String textWithMnemonic, CellConstraints constraints) | final public JComponent | addSeparator(String textWithMnemonic, String encodedConstraints) | final public JComponent | addSeparator(String textWithMnemonic, int columnSpan) | final public JLabel | addTitle(String textWithMnemonic) | final public JLabel | addTitle(String textWithMnemonic, CellConstraints constraints) | final public JLabel | addTitle(String textWithMnemonic, String encodedConstraints) | final public ComponentFactory | getComponentFactory() Returns the builder's component factory. | final public JPanel | getPanel() Returns the panel used to build the form. | final public void | setBackground(Color background) Sets the panel's background color. | final public void | setBorder(Border border) Sets the panel's border. | final public void | setComponentFactory(ComponentFactory newFactory) Sets a new component factory. | final public void | setDefaultDialogBorder() Sets the default dialog border. | final public void | setOpaque(boolean b) Sets the panel's opaque state. |
PanelBuilder | public PanelBuilder(FormLayout layout)(Code) | | Constructs a PanelBuilder for the given
layout. Uses an instance of JPanel as layout container
with the given layout as layout manager.
Parameters: layout - the FormLayout to use |
PanelBuilder | public PanelBuilder(FormLayout layout, JPanel panel)(Code) | | Constructs a PanelBuilder for the given
FormLayout and layout container.
Parameters: layout - the FormLayout to use Parameters: panel - the layout container to build on |
add | final public JLabel add(JLabel label, CellConstraints labelConstraints, Component component, CellConstraints componentConstraints)(Code) | | Adds a label and component to the panel using the given cell constraints.
Sets the given label as the component label using
JLabel.setLabelFor(java.awt.Component) .
Note: The
CellConstraints objects for the label
and the component must be different. Cell constraints are implicitly
cloned by the FormLayout when added to the container.
However, in this case you may be tempted to reuse a
CellConstraints object in the same way as with many other
builder methods that require a single CellConstraints
parameter.
The pitfall is that the methods CellConstraints.xy*(...)
just set the coordinates but do not create a new instance.
And so the second invocation of xy*(...) overrides
the settings performed in the first invocation before the object
is cloned by the FormLayout .
Wrong:
CellConstraints cc = new CellConstraints();
builder.add(
nameLabel,
cc.xy(1, 7), // will be modified by the code below
nameField,
cc.xy(3, 7) // sets the single instance to (3, 7)
);
Correct:
// Using a single CellConstraints instance and cloning
CellConstraints cc = new CellConstraints();
builder.add(
nameLabel,
(CellConstraints) cc.xy(1, 7).clone(), // cloned before the next modification
nameField,
cc.xy(3, 7) // sets this instance to (3, 7)
);
// Using two CellConstraints instances
CellConstraints cc1 = new CellConstraints();
CellConstraints cc2 = new CellConstraints();
builder.add(
nameLabel,
cc1.xy(1, 7), // sets instance 1 to (1, 7)
nameField,
cc2.xy(3, 7) // sets instance 2 to (3, 7)
);
Parameters: label - the label to add Parameters: labelConstraints - the label's cell constraints Parameters: component - the component to add Parameters: componentConstraints - the component's cell constraints the added label throws: IllegalArgumentException - if the same cell constraints instanceis used for the label and the component See Also: JLabel.setLabelFor(java.awt.Component) See Also: DefaultFormBuilder |
addLabel | final public JLabel addLabel(String textWithMnemonic)(Code) | | Adds a textual label to the form using the default constraints.
addLabel("Name"); // No Mnemonic
addLabel("N&ame"); // Mnemonic is 'a'
addLabel("Save &as"); // Mnemonic is the second 'a'
addLabel("Look&&Feel"); // No mnemonic, text is "look&feel"
Parameters: textWithMnemonic - the label's text - may contain an ampersand (&) to mark a mnemonic the new label See Also: ComponentFactory |
addLabel | final public JLabel addLabel(String textWithMnemonic, CellConstraints constraints)(Code) | | Adds a textual label to the form using the specified constraints.
addLabel("Name", cc.xy(1, 1)); // No Mnemonic
addLabel("N&ame", cc.xy(1, 1)); // Mnemonic is 'a'
addLabel("Save &as", cc.xy(1, 1)); // Mnemonic is the second 'a'
addLabel("Look&&Feel", cc.xy(1, 1)); // No mnemonic, text is "look&feel"
Parameters: textWithMnemonic - the label's text - may contain an ampersand (&) to mark a mnemonic Parameters: constraints - the label's cell constraints the new label See Also: ComponentFactory |
addLabel | final public JLabel addLabel(String textWithMnemonic, String encodedConstraints)(Code) | | Adds a textual label to the form using the specified constraints.
addLabel("Name", "1, 1"); // No Mnemonic
addLabel("N&ame", "1, 1"); // Mnemonic is 'a'
addLabel("Save &as", "1, 1"); // Mnemonic is the second 'a'
addLabel("Look&&Feel", "1, 1"); // No mnemonic, text is "look&feel"
Parameters: textWithMnemonic - the label's text - may contain an ampersand (&) to mark a mnemonic Parameters: encodedConstraints - a string representation for the constraints the new label See Also: ComponentFactory |
addLabel | final public JLabel addLabel(String textWithMnemonic, CellConstraints labelConstraints, Component component, CellConstraints componentConstraints)(Code) | | Adds a label and component to the panel using the given cell constraints.
Sets the given label as the component label using
JLabel.setLabelFor(java.awt.Component) .
Note: The
CellConstraints objects for the label
and the component must be different. Cell constraints are implicitly
cloned by the FormLayout when added to the container.
However, in this case you may be tempted to reuse a
CellConstraints object in the same way as with many other
builder methods that require a single CellConstraints
parameter.
The pitfall is that the methods CellConstraints.xy*(...)
just set the coordinates but do not create a new instance.
And so the second invocation of xy*(...) overrides
the settings performed in the first invocation before the object
is cloned by the FormLayout .
Wrong:
builder.addLabel(
"&Name:", // Mnemonic is 'N'
cc.xy(1, 7), // will be modified by the code below
nameField,
cc.xy(3, 7) // sets the single instance to (3, 7)
);
Correct:
// Using a single CellConstraints instance and cloning
CellConstraints cc = new CellConstraints();
builder.addLabel(
"&Name:",
(CellConstraints) cc.xy(1, 7).clone(), // cloned before the next modification
nameField,
cc.xy(3, 7) // sets this instance to (3, 7)
);
// Using two CellConstraints instances
CellConstraints cc1 = new CellConstraints();
CellConstraints cc2 = new CellConstraints();
builder.addLabel(
"&Name:", // Mnemonic is 'N'
cc1.xy(1, 7), // sets instance 1 to (1, 7)
nameField,
cc2.xy(3, 7) // sets instance 2 to (3, 7)
);
Parameters: textWithMnemonic - the label's text - may contain an ampersand (&) to mark a mnemonic Parameters: labelConstraints - the label's cell constraints Parameters: component - the component to add Parameters: componentConstraints - the component's cell constraints the added label throws: IllegalArgumentException - if the same cell constraints instanceis used for the label and the component See Also: JLabel.setLabelFor(java.awt.Component) See Also: ComponentFactory See Also: DefaultFormBuilder |
addSeparator | final public JComponent addSeparator(String textWithMnemonic)(Code) | | Adds a titled separator to the form that spans all columns.
addSeparator("Name"); // No Mnemonic
addSeparator("N&ame"); // Mnemonic is 'a'
addSeparator("Save &as"); // Mnemonic is the second 'a'
addSeparator("Look&&Feel"); // No mnemonic, text is "look&feel"
Parameters: textWithMnemonic - the separator label's text - may contain an ampersand (&) to mark a mnemonic the added separator |
addSeparator | final public JComponent addSeparator(String textWithMnemonic, CellConstraints constraints)(Code) | | Adds a titled separator to the form using the specified constraints.
addSeparator("Name", cc.xy(1, 1)); // No Mnemonic
addSeparator("N&ame", cc.xy(1, 1)); // Mnemonic is 'a'
addSeparator("Save &as", cc.xy(1, 1)); // Mnemonic is the second 'a'
addSeparator("Look&&Feel", cc.xy(1, 1)); // No mnemonic, text is "look&feel"
Parameters: textWithMnemonic - the separator label's text - may contain an ampersand (&) to mark a mnemonic Parameters: constraints - the separator's cell constraints the added separator |
addSeparator | final public JComponent addSeparator(String textWithMnemonic, String encodedConstraints)(Code) | | Adds a titled separator to the form using the specified constraints.
addSeparator("Name", "1, 1"); // No Mnemonic
addSeparator("N&ame", "1, 1"); // Mnemonic is 'a'
addSeparator("Save &as", "1, 1"); // Mnemonic is the second 'a'
addSeparator("Look&&Feel", "1, 1"); // No mnemonic, text is "look&feel"
Parameters: textWithMnemonic - the separator label's text - may contain an ampersand (&) to mark a mnemonic Parameters: encodedConstraints - a string representation for the constraints the added separator |
addSeparator | final public JComponent addSeparator(String textWithMnemonic, int columnSpan)(Code) | | Adds a titled separator to the form that spans the specified columns.
addSeparator("Name", 3); // No Mnemonic
addSeparator("N&ame", 3); // Mnemonic is 'a'
addSeparator("Save &as", 3); // Mnemonic is the second 'a'
addSeparator("Look&&Feel", 3); // No mnemonic, text is "look&feel"
Parameters: textWithMnemonic - the separator label's text - may contain an ampersand (&) to mark a mnemonic Parameters: columnSpan - the number of columns the separator spans the added separator |
addTitle | final public JLabel addTitle(String textWithMnemonic)(Code) | | Adds a title label to the form using the default constraints.
addTitle("Name"); // No mnemonic
addTitle("N&ame"); // Mnemonic is 'a'
addTitle("Save &as"); // Mnemonic is the second 'a'
addTitle("Look&&Feel"); // No mnemonic, text is Look&Feel
Parameters: textWithMnemonic - the title label's text - may contain an ampersand (&) to mark a mnemonic the added title label See Also: ComponentFactory |
addTitle | final public JLabel addTitle(String textWithMnemonic, CellConstraints constraints)(Code) | | Adds a title label to the form using the specified constraints.
addTitle("Name", cc.xy(1, 1)); // No mnemonic
addTitle("N&ame", cc.xy(1, 1)); // Mnemonic is 'a'
addTitle("Save &as", cc.xy(1, 1)); // Mnemonic is the second 'a'
addTitle("Look&&Feel", cc.xy(1, 1)); // No mnemonic, text is Look&Feel
Parameters: textWithMnemonic - the title label's text - may contain an ampersand (&) to mark a mnemonic Parameters: constraints - the separator's cell constraints the added title label See Also: ComponentFactory |
addTitle | final public JLabel addTitle(String textWithMnemonic, String encodedConstraints)(Code) | | Adds a title label to the form using the specified constraints.
addTitle("Name", "1, 1"); // No mnemonic
addTitle("N&ame", "1, 1"); // Mnemonic is 'a'
addTitle("Save &as", "1, 1"); // Mnemonic is the second 'a'
addTitle("Look&&Feel", "1, 1"); // No mnemonic, text is Look&Feel
Parameters: textWithMnemonic - the title label's text - may contain an ampersand (&) to mark a mnemonic Parameters: encodedConstraints - a string representation for the constraints the added title label See Also: ComponentFactory |
getPanel | final public JPanel getPanel()(Code) | | Returns the panel used to build the form.
the panel used by this builder to build the form |
setBackground | final public void setBackground(Color background)(Code) | | Sets the panel's background color.
Parameters: background - the color to set as new background See Also: JComponent.setBackground(Color) since: 1.1 |
setDefaultDialogBorder | final public void setDefaultDialogBorder()(Code) | | Sets the default dialog border.
See Also: Borders |
setOpaque | final public void setOpaque(boolean b)(Code) | | Sets the panel's opaque state.
Parameters: b - true for opaque, false for non-opaque See Also: JComponent.setOpaque(boolean) since: 1.1 |
|
|