A Frame is a top-level window with a title and a border. The size of the frame includes any area designated for the border. The dimensions of the border area may be obtained using the getInsets
method. Since the border area is included in the overall size of the frame, the border effectively obscures a portion of the frame, constraining the area available for rendering and/or displaying subcomponents to the rectangle which has an upper-left corner location of (insets.left
, insets.top)
, and has a size of width - (insets.left + insets.right)
by height - (insets.top + insets.bottom)
.
A frame, implemented as an instance of the JFrame
class, is a window that has decorations such as a border, a title, and supports button components that close or iconify the window. Applications with a GUI usually include at least one frame. Applets sometimes use frames, as well.
To make a window that is dependent on another window — disappearing when the other window is iconified, for example — use a dialog
instead of frame.
. To make a window that appears within another window, use an internal frame.
Here is a picture of the extremely plain window created by the FrameDemo
demonstration application. You can find the source code in FrameDemo.java
. You can run FrameDemo ( download JDK 7 or later).
The following FrameDemo
code shows how to create and set up a frame.
//1. Create the frame. JFrame frame = new JFrame("FrameDemo"); //2. Optional: What happens when the frame closes? frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //3. Create components and put them in the frame. //...create emptyLabel... frame.getContentPane().add(emptyLabel, BorderLayout.CENTER); //4. Size the frame. frame.pack(); //5. Show it. frame.setVisible(true);
Here are some details about the code:
JFrame
constructor is the no-argument constructor.EXIT_ON_CLOSE
operation exits the program when your user closes the frame. This behavior is appropriate for this program because the program has only one frame, and closing the frame makes the program useless.
See Responding to Window-Closing Events for more information.
For frames that have menus, you'd typically add the menu bar to the frame here using the setJMenuBar
method. See How to Use Menus for details.
pack
method sizes the frame so that all its contents are at or above their preferred sizes. An alternative to pack
is to establish a frame size explicitly by calling setSize
or setBounds
(which also sets the frame location). In general, using pack
is preferable to calling setSize
, since pack
leaves the frame layout manager in charge of the frame size, and layout managers are good at adjusting to platform dependencies and other factors that affect component size.
This example does not set the frame location, but it is easy to do so using either the setLocationRelativeTo
or setLocation
method. For example, the following code centers a frame onscreen:
frame.setLocationRelativeTo(null);
setVisible(true)
makes the frame appear onscreen. Sometimes you might see the show
method used instead. The two usages are equivalent, but we use setVisible(true)
for consistency's sake.By default, window decorations are supplied by the native window system. However, you can request that the look-and-feel provide the decorations for a frame. You can also specify that the frame have no window decorations at all, a feature that can be used on its own, or to provide your own decorations, or with full-screen exclusive mode.
Besides specifying who provides the window decorations, you can also specify which icon is used to represent the window. Exactly how this icon is used depends on the window system or look and feel that provides the window decorations. If the window system supports minimization, then the icon is used to represent the minimized window. Most window systems or look and feels also display the icon in the window decorations. A typical icon size is 16x16 pixels, but some window systems use other sizes.
The following snapshots show three frames that are identical except for their window decorations. As you can tell by the appearance of the button in each frame, all three use the Java look and feel. The first uses decorations provided by the window system, which happen to be Microsoft Windows, but could as easily be any other system running the Java platform.The second and third use window decorations provided by the Java look and feel. The third frame uses Java look and feel window decorations, but has a custom icon.
Here is an example of creating a frame with a custom icon and with window decorations provided by the look and feel:
//Ask for window decorations provided by the look and feel. JFrame.setDefaultLookAndFeelDecorated(true); //Create the frame. JFrame frame = new JFrame("A window"); //Set the frame icon to an image loaded from a file. frame.setIconImage(new ImageIcon(imgURL).getImage());
As the preceding code snippet implies, you must invoke the setDefaultLookAndFeelDecorated
method before creating the frame whose decorations you wish to affect. The value you set with setDefaultLookAndFeelDecorated
is used for all subsequently created JFrame
s. You can switch back to using window system decorations by invoking JFrame.setDefaultLookAndFeelDecorated(false)
. Some look and feels might not support window decorations; in this case, the window system decorations are used.
The full source code for the application that creates the frames pictured above is in FrameDemo2.java
. Besides showing how to choose window decorations, FrameDemo2 also shows how to disable all window decorations and gives an example of positioning windows. It includes two methods that create the Image
objects used as icons — one is loaded from a file, and the other is painted from scratch.
By default, when the user closes a frame onscreen, the frame is hidden. Although invisible, the frame still exists and the program can make it visible again. If you want different behavior, then you need to either register a window listener that handles window-closing events, or you need to specify default close behavior using the setDefaultCloseOperation
method. You can even do both.
The argument to setDefaultCloseOperation
must be one of the following values, the first three of which are defined in the WindowConstants
interface (implemented by JFrame
, JInternalPane
, and JDialog
):
DO_NOTHING_ON_CLOSE
windowClosing
method.
HIDE_ON_CLOSE
(the default for JDialog
and JFrame
)
DISPOSE_ON_CLOSE
(the default for JInternalFrame
)
EXIT_ON_CLOSE
(defined in the JFrame
class)
System.exit(0)
. This is recommended for applications only. If used within an applet, a SecurityException
may be thrown.
DISPOSE_ON_CLOSE
can have results similar to EXIT_ON_CLOSE
if only one window is onscreen. More precisely, when the last displayable window within the Java virtual machine (VM) is disposed of, the VM may terminate. See AWT Threading Issues for details.
The default close operation is executed after any window listeners handle the window-closing event. So, for example, assume that you specify that the default close operation is to dispose of a frame. You also implement a window listener that tests whether the frame is the last one visible and, if so, saves some data and exits the application. Under these conditions, when the user closes a frame, the window listener will be called first. If it does not exit the application, then the default close operation — disposing of the frame — will then be performed.
For more information about handling window-closing events, see How to Write Window Listeners. Besides handling window-closing events, window listeners can also react to other window state changes, such as iconification and activation.
The Frame APIThe following tables list the commonly used JFrame
constructors and methods. Other methods you might want to call are defined by the java.awt.Frame
, java.awt.Window
, and java.awt.Component
classes, from which JFrame
descends.
Because each JFrame
object has a root pane, frames have support for interposing input and painting behavior in front of the frame children, placing children on different "layers", and for Swing menu bars. These topics are introduced in Using Top-Level Containers and explained in detail in How to Use Root Panes.
The API for using frames falls into these categories:
Window
) Size the window so that all its contents are at or above their preferred sizes. void setSize(int, int)
Component
) Set or get the total size of the window. The integer arguments to setSize
specify the width and height, respectively. void setBounds(int, int, int, int)
Component
) Set or get the size and position of the window. For the integer version of setBounds
, the window upper left corner is at the x, y location specified by the first two arguments, and has the width and height specified by the last two arguments. void setLocation(int, int)
Component
) Set or get the location of the upper left corner of the window. The parameters are the x and y values, respectively. void setLocationRelativeTo(Component)
Window
) Position the window so that it is centered over the specified component. If the argument is null
, the window is centered onscreen. To properly center the window, you should invoke this method after the window size has been set. Examples that Use Frames
All of the standalone applications in this trail use JFrame
. The following table lists a few and tells you where each is discussed.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4