The JavaTM Tutorial
Previous Page Lesson Contents Next Page Start of Tutorial > Start of Trail > Start of Lesson Search
Feedback Form

Trail: Creating a GUI with JFC/Swing
Lesson: Using Swing Components

How to Use Tool Bars

A JToolBar (in the API reference documentation) is a container that groups several components — usually buttons with icons — into a row or column. Often, tool bars provide easy access to functionality that is also in menus. How to Use Actions describes how to provide the same functionality in menu items and tool bar buttons.

The following pictures show an application named ToolBarDemo that contains a tool bar above a text area. You can run ToolBarDemo using JavaTM Web Start (in the Creating a GUI with JFC/Swing trail). Or to compile and run it yourself, consult the example index.

ToolBarDemo, with the tool bar in an initial north position

By default, the user can drag the tool bar to a different edge of its container or out into a window of its own. The next figure shows how the application looks after the user has dragged the tool bar to the right edge of its container.

ToolBarDemo, after the tool bar is dragged to the east

[PENDING: This figure will be updated.]

For the drag-out behavior to work correctly, the tool bar must be in a container that uses BorderLayout (in the Creating a GUI with JFC/Swing trail). The component that the tool bar affects is generally in the center of the container. The tool bar must be the only other component in the container, and it must not be in the center.

The next figure shows how the application looks after the user has dragged the tool bar outside its window.

ToolBarDemo, after the tool bar is dragged out into its own window

[PENDING: This figure will be updated.]

The following code creates the tool bar and adds it to a container. You can find the entire program in ToolBarDemo.java (in a .java source file).

public class ToolBarDemo extends JPanel
                         implements ActionListener {
    ...
    public ToolBarDemo() {
        super(new BorderLayout());
        ...
        JToolBar toolBar = new JToolBar("Still draggable");
        addButtons(toolBar);
        ...
        setPreferredSize(new Dimension(450, 130));
        add(toolBar, BorderLayout.PAGE_START);
        add(scrollPane, BorderLayout.CENTER);
    }
    ...
}
The code positions the tool bar above the scroll pane by placing both components in a panel controlled by a border layout, with the tool bar in the PAGE_START position and the scroll pane in the CENTER position. Because the scroll pane is in the center and no other components except the tool bar are in the container, the tool bar is automatically draggable to other edges of the container. The tool bar can also be dragged out into its own window, in which case the window has the title "Still draggable", as specified with the JToolBar constructor.

Note: The tool bar's window is a JDialog. This demo uses JDialog.setDefaultLookAndFeelDecorated(true) to make the window's decorations be painted by the look and feel, which by default is the Java look and feel. Unfortunately, bug # 4820659 (outside of the tutorial) prevents the user from using the mouse to close dialogs decorated by the Java look and feel. You might consider not using dialog decorations from the Java look and feel until the fix for this bug is released.

Another bug to keep an eye on is # 4793741 (outside of the tutorial), which proposes that the tool bar's window get the defaultLookAndFeelDecorated setting from JFrame.


Creating Tool Bar Buttons

The buttons in the tool bar are ordinary JButtons that use images from the Java look and feel Graphics Repository. We encourage you to consider using images from the repository if your tool bar uses the Java look and feel.

Each image in the repository comes in 16x16 and 24x24 versions, provided in a file named jlfgr-1_0.jar. You can download this JAR file from the Java look and feel Graphics Repository page (outside of the tutorial). That page shows all the images and has links to pages that describe each image, including its intended use and location within the JAR file.

Here is the code that creates the buttons and adds them to the tool bar.

protected void addButtons(JToolBar toolBar) {
    JButton button = null;

    //first button
    button = makeNavigationButton("Back24", PREVIOUS,
                                  "Back to previous something-or-other",
                                  "Previous");
    toolBar.add(button);

    //second button
    button = makeNavigationButton("Up24", UP,
                                  "Up to something-or-other",
                                  "Up");
    toolBar.add(button);

    ...//similar code for creating and adding the third button...
}

protected JButton makeNavigationButton(String imageName,
                                       String actionCommand,
                                       String toolTipText,
                                       String altText) {
    //Look for the image.
    String imgLocation = "toolbarButtonGraphics/navigation/"
                         + imageName
                         + ".gif";
    URL imageURL = ToolBarDemo.class.getResource(imgLocation);

    //Create and initialize the button.
    JButton button = new JButton();
    button.setActionCommand(actionCommand);
    button.setToolTipText(toolTipText);
    button.addActionListener(this);

    if (imageURL != null) {                      //image found
        button.setIcon(new ImageIcon(imageURL, altText));
    } else {                                     //no image found
        button.setText(altText);
        System.err.println("Resource not found: " + imgLocation);
    }

    return button;
}
The first call to makeNavigationButton creates the image for the first button, using the 24x24 "Back" navigation image in the graphics repository. We found the image by looking at the Java look and feel Graphics Repository page (outside of the tutorial), which shows the navigation images (among others) and has a link to the navigation graphics page (outside of the tutorial). That page describes the navigation images and informs us that the 24x24 Back image is located at toolbarButtonGraphics/navigation/Back24.gif. The makeNavigationButton method gets the image from the repository's JAR file (assuming the JAR file is in the example's code base) using the getResource method.

Besides finding the image for the button, the makeNavigationButton method also creates the button, sets the strings for its action command and tool tip text, and adds the action listener for the button. If the image is missing, the method prints an error message and puts text on the button, so that the button is still usable.


Note: If any buttons in your tool bar duplicate functionality of other components, such as menu items, you should probably create and add the tool bar buttons as described in How to Use Actions (in the Creating a GUI with JFC/Swing trail).

Customizing Tool Bars

By adding a few lines of code to the preceding example, we can demonstrate some more tool bar features:

Here is a picture of the new UI. You can run ToolBarDemo2 using Java Web Start (in the Creating a GUI with JFC/Swing trail). Or to compile and run it yourself, consult the example index. You can find the code in ToolBarDemo2.java (in a .java source file).

ToolBarDemo2 shows a tool bar with a variety of components

[PENDING: This figure will be updated. The cursor should be over the fourth button, showing that the button under the cursor has an outline.]

Because the tool bar can no longer be dragged, it no longer has bumps at its left edge. Here's the code that turns off dragging:

toolBar.setFloatable(false);

The tool bar is in rollover mode, so only the button under the cursor has a border. Here's the code that sets rollover mode:

toolBar.setRollover(true);

Another visible difference is that the tool bar contains two new components, which are preceded by a blank space — a separator. Here is the code that adds the separator:

toolBar.addSeparator();
Here is the code that adds the new components:
//fourth button
button = new JButton("Another button");
...
toolBar.add(button);

//fifth component is NOT a button!
JTextField textField = new JTextField("A text field");
...
toolBar.add(textField);
You can easily make the components in a tool bar be aligned along their tops or bottoms, instead of centered, by invoking the setAlignmentY method. For example, to align the tops of all the components in a tool bar, invoke setAlignmentY(TOP_ALIGNMENT) on each component. Similarly, you can use the setAlignmentX method to specify the alignment of components when the tool bar is vertical. This flexibility of layout is possible because tool bars use BoxLayout to position their components. For more information, see How to Use BoxLayout (in the Creating a GUI with JFC/Swing trail).

The Tool Bar API

The following table lists the commonly used JToolBar (in the API reference documentation) constructors and methods. Other methods you might call are listed in the API tables in The JComponent Class.

Method or Constructor Purpose
JToolBar()
JToolBar(int)
JToolBar(String)
JToolBar(String, int)
Create a tool bar. The optional int parameter lets you specify the orientation; the default is HORIZONTAL. The optional String parameter, introduced in 1.3, allows you to specify the title displayed for the undocked tool bar's window.
Component add(Component) Add a component to the tool bar.

Version note:  Before 1.3, the only way to associate an Action with a tool bar button was to use JToolBar's add(Action) method to create the button and add it to the tool bar. As of 1.3, that method is no longer recommended. You can instead associate a button with an Action using the setAction(Action) method defined by AbstractButton.

void addSeparator() Add a separator to the end of the tool bar.
void setFloatable(boolean)
boolean isFloatable()
The floatable property is true by default, to indicate that the user can drag the tool bar out into a separate window. To turn off tool bar dragging, use toolBar.setFloatable(false). Some look and feels might ignore this property.
void setRollover(boolean)
boolean isRollover()
The rollover property is false by default. Set it to true to request that every button in the tool bar have no borders until the user passes the cursor over the button. Some look and feels might ignore this property. Introduced in 1.4.

Examples that Use Tool Bars

This table lists examples that use JToolBar and where those examples are described.

Example Where Described Notes
ToolBarDemo This page A basic tool bar with icon-only buttons.
ToolBarDemo2 This page Demonstrates a non-floatable tool bar in rollover mode that contains a separator and a non-button component.
ActionDemo How to Use Actions (in the Creating a GUI with JFC/Swing trail) Implements a tool bar using Action objects.


Previous Page Lesson Contents Next Page Start of Tutorial > Start of Trail > Start of Lesson Search
Feedback Form

Copyright 1995-2005 Sun Microsystems, Inc. All rights reserved.