/*
* Copyright (c) 2002-2004 JGoodies Karsten Lentzsch. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* o Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* o Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* o Neither the name of JGoodies Karsten Lentzsch nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
import javax.swing.*;
import com.jgoodies.forms.builder.PanelBuilder;
import com.jgoodies.forms.layout.CellConstraints;
import com.jgoodies.forms.layout.FormLayout;
/**
* Demonstrates the basic FormLayout sizes: constant, minimum, preferred.
*
* @author Karsten Lentzsch
* @version $Revision: 1.10 $
*/
public class BoundedSizesExample {
public static void main(String[] args) {
try {
UIManager.setLookAndFeel("com.jgoodies.plaf.plastic.PlasticXPLookAndFeel");
} catch (Exception e) {
// Likely PlasticXP is not in the class path; ignore.
}
JFrame frame = new JFrame();
frame.setTitle("Forms Tutorial :: Bounded Sizes");
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
JComponent panel = new BoundedSizesExample().buildPanel();
frame.getContentPane().add(panel);
frame.pack();
frame.setVisible(true);
}
public JComponent buildPanel() {
JTabbedPane tabbedPane = new JTabbedPane();
tabbedPane.putClientProperty("jgoodies.noContentBorder", Boolean.TRUE);
tabbedPane.add("Jumping 1", buildJumping1Panel());
tabbedPane.add("Jumping 2", buildJumping2Panel());
tabbedPane.add("Stable 1", buildStable1Panel());
tabbedPane.add("Stable 2", buildStable2Panel());
return tabbedPane;
}
private JComponent buildJumping1Panel() {
FormLayout layout = new FormLayout(
"right:pref, 4dlu, max(35dlu;min), 2dlu, min, 2dlu, min, 2dlu, min, ",
EDITOR_ROW_SPEC);
return buildEditorGeneralPanel(layout);
}
private JComponent buildJumping2Panel() {
FormLayout layout = new FormLayout(
"right:pref, 4dlu, max(35dlu;min), 2dlu, min, 2dlu, min, 2dlu, min, ",
EDITOR_ROW_SPEC);
return buildEditorTransportPanel(layout);
}
private JComponent buildStable1Panel() {
FormLayout layout = new FormLayout(
"right:max(50dlu;pref), 4dlu, max(35dlu;min), 2dlu, min, 2dlu, min, 2dlu, min, ",
EDITOR_ROW_SPEC);
return buildEditorGeneralPanel(layout);
}
private JComponent buildStable2Panel() {
FormLayout layout = new FormLayout(
"right:max(50dlu;pref), 4dlu, max(35dlu;min), 2dlu, min, 2dlu, min, 2dlu, min, ",
EDITOR_ROW_SPEC);
return buildEditorTransportPanel(layout);
}
private static final String EDITOR_ROW_SPEC =
"p, 3dlu, p, 3dlu, p, 3dlu, p";
/**
* Builds and answer the editor's general tab for the given layout.
*
* @param layout the layout to be used
* @return the editor's general panel
*/
private JComponent buildEditorGeneralPanel(FormLayout layout) {
layout.setColumnGroups(new int[][] { { 3, 5, 7, 9 } });
PanelBuilder builder = new PanelBuilder(layout);
builder.setDefaultDialogBorder();
CellConstraints cc = new CellConstraints();
builder.addLabel("File number:", cc.xy (1, 1));
builder.add(new JTextField(), cc.xyw(3, 1, 7));
builder.addLabel("RFQ number:", cc.xy (1, 3));
builder.add(new JTextField(), cc.xyw(3, 3, 7));
builder.addLabel("Entry date:", cc.xy (1, 5));
builder.add(new JTextField(), cc.xy (3, 5));
builder.addLabel("Sales Person:", cc.xy (1, 7));
builder.add(new JTextField(), cc.xyw(3, 7, 7));
return builder.getPanel();
}
/**
* Builds and answer the editor's transport tab for the given layout.
*
* @param layout the layout to be used
* @return the editor's transport panel
*/
private JComponent buildEditorTransportPanel(FormLayout layout) {
layout.setColumnGroups(new int[][] { { 3, 5, 7, 9 } });
PanelBuilder builder = new PanelBuilder(layout);
builder.setDefaultDialogBorder();
CellConstraints cc = new CellConstraints();
builder.addLabel("Shipper:", cc.xy (1, 1));
builder.add(new JTextField(), cc.xy (3, 1));
builder.add(new JTextField(), cc.xyw(5, 1, 5));
builder.addLabel("Consignee:", cc.xy (1, 3));
builder.add(new JTextField(), cc.xy (3, 3));
builder.add(new JTextField(), cc.xyw(5, 3, 5));
builder.addLabel("Departure:", cc.xy (1, 5));
builder.add(new JTextField(), cc.xy (3, 5));
builder.add(new JTextField(), cc.xyw(5, 5, 5));
builder.addLabel("Destination:", cc.xy (1, 7));
builder.add(new JTextField(), cc.xy (3, 7));
builder.add(new JTextField(), cc.xyw(5, 7, 5));
return builder.getPanel();
}
}
|