Demonstrates the different FormLayout alignments : FormLayout « Swing Components « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Collections Data Structure
8. Database SQL JDBC
9. Design Pattern
10. Development Class
11. Email
12. Event
13. File Input Output
14. Game
15. Hibernate
16. J2EE
17. J2ME
18. JDK 6
19. JSP
20. JSTL
21. Language Basics
22. Network Protocol
23. PDF RTF
24. Regular Expressions
25. Security
26. Servlets
27. Spring
28. Swing Components
29. Swing JFC
30. SWT JFace Eclipse
31. Threads
32. Tiny Application
33. Velocity
34. Web Services SOA
35. XML
Microsoft Office Word 2007 Tutorial
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Java » Swing Components » FormLayoutScreenshots 
Demonstrates the different FormLayout alignments
Demonstrates the different FormLayout alignments


/*
 * 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.factories.Borders;
import com.jgoodies.forms.layout.CellConstraints;
import com.jgoodies.forms.layout.FormLayout;

/**
 * Demonstrates the different FormLayout alignments.
 *
 @author  Karsten Lentzsch
 @version $Revision: 1.9 $
 */
public class AlignmentExample {

    
    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 :: Alignments");
        frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
        JComponent panel = new AlignmentExample().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("Horizontal", buildHorizontalButtons());
        tabbedPane.add("Vertical",   buildVerticalButtons());
        return tabbedPane;
    }
    
    
    private JComponent buildHorizontalButtons() {
        FormLayout layout = new FormLayout(
            "left:pref, 15px, center:pref, 15px, right:pref, 15px, fill:pref, 15px, pref",   
            "pref, 12px, pref, 4px, pref, 4px, pref, 4px, pref, 4px, pref")
            
        // Create a panel that uses the layout.
        JPanel panel = new JPanel(layout);

        // Set a default border.
        panel.setBorder(Borders.DIALOG_BORDER);
        
        // Create a reusable CellConstraints instance.
        CellConstraints cc = new CellConstraints();

        // Add components to the panel.
        panel.add(new JLabel("Left"),     cc.xy(1,  1));
        panel.add(new JButton("Name"),    cc.xy(1,  3));
        panel.add(new JButton("Phone"),   cc.xy(1,  5));
        panel.add(new JButton("Fax"),     cc.xy(1,  7));
        panel.add(new JButton("Email"),   cc.xy(1,  9));
        panel.add(new JButton("Address"), cc.xy(111));

        panel.add(new JLabel("Center"),   cc.xy(3,  1));
        panel.add(new JButton("Name"),    cc.xy(3,  3));
        panel.add(new JButton("Phone"),   cc.xy(3,  5));
        panel.add(new JButton("Fax"),     cc.xy(3,  7));
        panel.add(new JButton("Email"),   cc.xy(3,  9));
        panel.add(new JButton("Address"), cc.xy(311));

        panel.add(new JLabel("Right"),    cc.xy(5,  1));
        panel.add(new JButton("Name"),    cc.xy(5,  3));
        panel.add(new JButton("Phone"),   cc.xy(5,  5));
        panel.add(new JButton("Fax"),     cc.xy(5,  7));
        panel.add(new JButton("Email"),   cc.xy(5,  9));
        panel.add(new JButton("Address"), cc.xy(511));

        panel.add(new JLabel("Fill"),     cc.xy(7,  1"center, center"));
        panel.add(new JButton("Name"),    cc.xy(7,  3));
        panel.add(new JButton("Phone"),   cc.xy(7,  5));
        panel.add(new JButton("Fax"),     cc.xy(7,  7));
        panel.add(new JButton("Email"),   cc.xy(7,  9));
        panel.add(new JButton("Address"), cc.xy(711));

        panel.add(new JLabel("Default"),  cc.xy(9,  1"center, center"));
        panel.add(new JButton("Name"),    cc.xy(9,  3));
        panel.add(new JButton("Phone"),   cc.xy(9,  5));
        panel.add(new JButton("Fax"),     cc.xy(9,  7));
        panel.add(new JButton("Email"),   cc.xy(9,  9));
        panel.add(new JButton("Address"), cc.xy(911));

        return panel;
    }
    
    
    private JComponent buildVerticalButtons() {
        FormLayout layout = new FormLayout(
            "pref, 8dlu, pref, 4dlu, pref",   
            "top:pref, 9dlu, center:pref, 9dlu, bottom:pref, 9dlu, fill:pref, 9dlu, pref")
            
        // Create a panel that uses the layout.
        JPanel panel = new JPanel(layout);

        // Set a default border.
        panel.setBorder(Borders.DIALOG_BORDER);
        
        // Create a reusable CellConstraints instance.
        CellConstraints cc = new CellConstraints();

        // Add components to the panel.
        panel.add(new JLabel("Top"),      cc.xy(1,  1));
        panel.add(createSmallButton(),    cc.xy(3,  1));
        panel.add(createMediumButton(),   cc.xy(5,  1));

        panel.add(new JLabel("Center"),   cc.xy(1,  3));
        panel.add(createSmallButton(),    cc.xy(3,  3));
        panel.add(createMediumButton(),   cc.xy(5,  3));

        panel.add(new JLabel("Bottom"),   cc.xy(1,  5));
        panel.add(createSmallButton(),    cc.xy(3,  5));
        panel.add(createMediumButton(),   cc.xy(5,  5));

        panel.add(new JLabel("Fill"),     cc.xy(1,  7));
        panel.add(createSmallButton(),    cc.xy(3,  7));
        panel.add(createMediumButton(),   cc.xy(5,  7));

        panel.add(new JLabel("Default"),  cc.xy(1,  9));
        panel.add(createSmallButton(),    cc.xy(3,  9));
        panel.add(createMediumButton(),   cc.xy(5,  9));

        return panel;
    }
    
    private JButton createSmallButton() {
        return new JButton("<html>One</html>");
    }
    
    private JButton createMediumButton() {
        return new JButton("<html>One<br>Two</html>");
    }
    
    
}


           
       
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. The different sizing units provided by the FormLayoutThe different sizing units provided by the FormLayout
4. FormLayout: Size Specification Example 4FormLayout: Size Specification Example 4
5. Demonstrates sizes: constant, minimum, preferredDemonstrates sizes: constant, minimum, preferred
6. Demonstrates the basic FormLayout sizes: constant, minimum, preferredDemonstrates the basic FormLayout sizes: constant, minimum, preferred
7. Three FormLayout component sizes: minimum, default and preferredThree FormLayout component sizes: minimum, default and 
 preferred
8. FormLayout: Spacing Example 5FormLayout: Spacing Example 5
9. Panel Builder Example 1Panel Builder Example 1
10. Panel Builder Example 2Panel Builder Example 2
11. Columns and rows are specified before the panel is filled with componentsColumns and rows are specified before the panel is filled with components
12. Build a panel with a leading indent column using the DefaultFormBuilderBuild a panel with a leading
 indent column using the DefaultFormBuilder
13. FormLayout: Growable Example 8FormLayout: Growable Example 8
14. FormLayout: No Grouping Example 9FormLayout: No Grouping Example 9
15. FormLayout: Grouping Example 10FormLayout: Grouping Example 10
16. Demonstrates a pure use of the FormLayoutDemonstrates a pure use of the FormLayout
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
w_w___w___.j_a__v___a___2s___.co___m___ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.