Demonstrates a pure use of the FormLayout : FormLayout « Swing Components « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Swing Components » FormLayoutScreenshots 
Demonstrates a pure use of the FormLayout
Demonstrates a pure use of the FormLayout

/*
 * 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 java.awt.Component;

import javax.swing.*;

import com.jgoodies.forms.factories.Borders;
import com.jgoodies.forms.factories.DefaultComponentFactory;
import com.jgoodies.forms.layout.CellConstraints;
import com.jgoodies.forms.layout.FormLayout;

/**
 * Demonstrates a <i>pure</i> use of the FormLayout.
 * Columns and rows are specified before the panel is filled with
 * components. And the panel is filled without a builder.<p>
 
 * This panel building style is simple but not recommended. Other panel
 * building styles use a builder to fill the panel and/or create
 * form rows dynamically. See the {@link PanelBuilderExample} for 
 * a slightly better panel building style that can use the builder
 * to create text labels and separators. 
 *
 @author Karsten Lentzsch
 @version $Revision: 1.8 $
 
 @see     PanelBuilderExample
 @see  RowCounterExample
 @see  DynamicRowsExample
 @see  DefaultFormBuilderExample
 */

public class PlainExample {

    private JTextField companyNameField;
    private JTextField contactPersonField;
    private JTextField orderNoField;
    private JTextField inspectorField;
    private JTextField referenceNoField;
    private JComboBox  approvalStatusComboBox;
    private JTextField shipYardField;
    private JTextField registerNoField;
    private JTextField hullNumbersField;
    private JComboBox  projectTypeComboBox;

 
    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 :: Plain Building");
        frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
        JComponent panel = new PlainExample().buildPanel();
        frame.getContentPane().add(panel);
        frame.pack();
        frame.setVisible(true);
    }
    

    // Component Creation and Initialization **********************************

    /**
     *  Creates and intializes the UI components.
     */
    private void initComponents() {
        companyNameField       = new JTextField();
        contactPersonField     = new JTextField();
        orderNoField           = new JTextField();
        inspectorField         = new JTextField();
        referenceNoField       = new JTextField();
        approvalStatusComboBox = createApprovalStatusComboBox();
        shipYardField          = new JTextField();
        registerNoField        = new JTextField();
        hullNumbersField       = new JTextField();
        projectTypeComboBox    = createProjectTypeComboBox();
    }

    /**
     * Creates and returns a combo box for the approval states.
     
     @return a combo box for the approval status
     */
    private JComboBox createApprovalStatusComboBox() {
        return new JComboBox(
            new String[] { "In Progress""Finished""Released" });
    }

    /**
     * Creates and returns a combo box for the project types.
     
     @return a combo box for the project type
     */
    private JComboBox createProjectTypeComboBox() {
        return new JComboBox(
            new String[] { "New Building""Conversion""Repair" });
    }


    // Building *************************************************************

    /**
     * Builds the pane.
     
     @return the built panel
     */
    public JComponent buildPanel() {
        initComponents();

        FormLayout layout = new FormLayout(
                "right:max(40dlu;pref), 3dlu, 70dlu, 7dlu, "
              "right:max(40dlu;pref), 3dlu, 70dlu",
                "p, 3dlu, p, 3dlu, p, 3dlu, p, 9dlu, " +
                "p, 3dlu, p, 3dlu, p, 3dlu, p, 9dlu, " +
                "p, 3dlu, p, 3dlu, p, 3dlu, p");
                
        JPanel panel = new JPanel(layout);
        panel.setBorder(Borders.DIALOG_BORDER);

        // Fill the table with labels and components.
        CellConstraints cc = new CellConstraints();
        panel.add(createSeparator("Manufacturer"),  cc.xyw(1,  17));
        panel.add(new JLabel("Company"),            cc.xy (1,  3));
        panel.add(companyNameField,                 cc.xyw(3,  35));
        panel.add(new JLabel("Contact"),            cc.xy (1,  5));
        panel.add(contactPersonField,               cc.xyw(3,  55));
        panel.add(new JLabel("Order No"),           cc.xy (17));
        panel.add(orderNoField,                     cc.xy (37));

        panel.add(createSeparator("Inspector"),     cc.xyw(197));
        panel.add(new JLabel("Name"),               cc.xy (111));
        panel.add(inspectorField,                   cc.xyw(3115));
        panel.add(new JLabel("Reference No"),       cc.xy (113));
        panel.add(referenceNoField,                 cc.xy (313));
        panel.add(new JLabel("Status"),             cc.xy (115));
        panel.add(approvalStatusComboBox,           cc.xy (315));
        
        panel.add(createSeparator("Ship"),          cc.xyw(1177));
        panel.add(new JLabel("Shipyard"),           cc.xy (119));
        panel.add(shipYardField,                    cc.xyw(3195));
        panel.add(new JLabel("Register No"),        cc.xy (121));
        panel.add(registerNoField,                  cc.xy (321));
        panel.add(new JLabel("Hull No"),            cc.xy (521));
        panel.add(hullNumbersField,                 cc.xy (721));
        panel.add(new JLabel("Project Type"),       cc.xy (123));
        panel.add(projectTypeComboBox,              cc.xy (323));
        
        return panel;
    }
    
    /**
     * Creates and answer a separator with a label in the left hand side.
     
     @param text   the label's text
     @return a separator with label in the left hand side
     */
    private Component createSeparator(String text) {
        return DefaultComponentFactory.getInstance().createSeparator(text);
    }

}

           
       
forms.zip( 197 k)
Related examples in the same category
1. FormLayout: Default Alignment Example 2FormLayout: Default Alignment Example 2
2. FormLayout: Explicit Alignment Example 3FormLayout: Explicit Alignment Example 3
3. Demonstrates the different FormLayout alignmentsDemonstrates the different FormLayout alignments
4. The different sizing units provided by the FormLayoutThe different sizing units provided by the FormLayout
5. FormLayout: Size Specification Example 4FormLayout: Size Specification Example 4
6. Demonstrates sizes: constant, minimum, preferredDemonstrates sizes: constant, minimum, preferred
7. Demonstrates the basic FormLayout sizes: constant, minimum, preferredDemonstrates the basic FormLayout sizes: constant, minimum, preferred
8. Three FormLayout component sizes: minimum, default and preferredThree FormLayout component sizes: minimum, default and   preferred
9. FormLayout: Spacing Example 5FormLayout: Spacing Example 5
10. Panel Builder Example 1Panel Builder Example 1
11. Panel Builder Example 2Panel Builder Example 2
12. Columns and rows are specified before the panel is filled with componentsColumns and rows are specified before the panel is filled with components
13. Build a panel with a leading indent column using the DefaultFormBuilderBuild a panel with a leading  indent column using the DefaultFormBuilder
14. FormLayout: Growable Example 8FormLayout: Growable Example 8
15. FormLayout: No Grouping Example 9FormLayout: No Grouping Example 9
16. FormLayout: Grouping Example 10FormLayout: Grouping Example 10
17. Columns and rows are specified before the panel is filled with components 1Columns and rows are specified before the panel is filled with components 1
18. How columns and rows can be grouped in FormLayoutHow columns and rows can be grouped in FormLayout
19. FormLayout growing options: none, default, weightedFormLayout growing options: none, default, weighted
20. FormLayout: Default Form Builder Example 1FormLayout: Default Form Builder Example 1
21. Uses the FormLayout and the DefaultFormBuilderUses the FormLayout and the DefaultFormBuilder
22. The use of Factories as provided by the Forms frameworkThe use of Factories as provided by the Forms framework
23. Demonstrates how to find bugs in the layout usingDemonstrates how to find bugs in the layout using
24. Build panels component orientation: left-to-right vs. right-to-leftBuild panels component orientation: left-to-right vs. right-to-left
25. Demonstrates a frequent pitfall when specifying a growing rowDemonstrates a frequent pitfall when specifying a growing row
26. Demonstrates how a JTextArea's preferred size grows with the container if no columns and rows are setDemonstrates how a JTextArea's preferred size grows with the container  if no columns and rows are set
27. FormLayout: Button Bar Builder ExampleFormLayout: Button Bar Builder Example
28. FormLayout: Button Bar Builder Example 2FormLayout: Button Bar Builder Example 2
29. FormLayout: Button Bar Builder Example 3FormLayout: Button Bar Builder Example 3
30. FormLayout: Button Stack Builder Example 1FormLayout: Button Stack Builder Example 1
31. Build button stacks using the ButtonStackBuilderBuild button stacks using the ButtonStackBuilder
32. Demonstrates how to build button bars using a ButtonBarBuilderDemonstrates how to build button bars using a ButtonBarBuilder
33. Demonstrates how to build button bars with a fixed button orderDemonstrates how to build button bars with a fixed button order
34. FormLayout: Basic Example 1FormLayout: Basic Example 1
35. FormLayout: Bounds Example 6FormLayout: Bounds Example 6
36. Create and configure a layout, create a builder, add componentsCreate and configure a layout, create a builder, add components
37. Compares approaches how to append a custom area at the end of a panel built with the DefaultFormBuilderCompares approaches how to append a custom area at the end of  a panel built with the DefaultFormBuilder
38. Shows three approaches how to add custom rows to a form that is built using a DefaultFormBuilderShows three approaches how to add custom rows to a form that is built  using a DefaultFormBuilder
39. How FormLayout applies the default column andHow FormLayout applies the default column and
40. FormLayout: Spanning Example 7FormLayout: Spanning Example 7
41. How components can span multiple columns and rowsHow components can span multiple columns and rows
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.