Documentation Archive Developer
Search

New Control Styles available within J2SE 5.0 on Mac OS X 10.5

J2SE 5.0 on Mac OS X 10.5 gives Java applications access to a wide range of native control styles. These new runtime client properties allow your Java application to look and feel more like Cocoa applications than ever, while still enjoying the portability benefits of a pure Java codebase.

What are Swing Client Properties?

Swing Client Properties enable you to set component specific properties on any JComponent descended object. Client properties are implemented by two methods on javax.swing.JComponent, putClientProperty(java.lang.Object, java.lang.Object) and getClientProperty(java.lang.Object).

Conceptually, client properties are key-value pairs that are associated with a particular JComponent. These properties can be used for many different purposes, as it is not required for a JComponent to have any knowledge of what any particular property means. As of J2SE 5.0 on Mac OS X 10.5, a number of client properties let you use Cocoa-style controls without adopting Apple specific classes, or writing other code that interferes with your application's behavior on other platforms.

Back to Top 

Using Client Properties

Small and Mini controls

You can use the JComponent.sizeVariant property to hint that the given JComponent should take on a Small or Miniature appearance. Listing 1 demonstrates how to set the the Size variant.

Listing 1: Setting the Size Variant

public static void setSizeSmall(JComponent component) {
  component.putClientProperty("JComponent.sizeVariant", "small");
}

public static void setSizeMini(JComponent component) {
  component.putClientProperty("JComponent.sizeVariant", "mini");
}

Note: It is also possible to explicitly request that your controls be Regular sized, and to do so you simply pass "regular" as the client property value. For more information see the reference for JComponent.sizeVariant.

The results of this for some common controls are shown in Table 1.

Table 1: Examples of JComponent.sizeVariant.

JComponent.sizeVariant"regular""small""mini"
Push Button
Checkbox
Radio Button

Note: Table 1 only shows a small sample of the controls that support size variants. As of Mac OS X 10.5, JLabel, JButton, JToggleButton, JCheckBox, JRadioButton, JComboBox, JProgressBar, JSlider, JTextField, and JSpinner support this property. For more information see the reference for JComponent.sizeVariant

Back to Top 

Button styles

Through client properties you can create standard push buttons in the various styles available in Mac OS X 10.5. Table 2 shows how to create each of these button styles and what they look like.

Table 2: What they look like

Property ChangeButton Appearance
button.putClientProperty("JButton.buttonType", "square")
button.putClientProperty("JButton.buttonType", "gradient")
button.putClientProperty("JButton.buttonType", "bevel")
button.putClientProperty("JButton.buttonType", "textured")
button.putClientProperty("JButton.buttonType", "roundRect")
button.putClientProperty("JButton.buttonType", "recessed")
button.putClientProperty("JButton.buttonType", "help")

For more information see JButton.buttonType. For examples of making segmented buttons, see Segmented button styles.

Back to Top 

Segmented button styles

Creating segmented buttons through client properties allows you to treat them exactly as you would standard Java buttons. In order to get the full Mac OS X appearance these buttons will need to be laid out such that they abut each other. If you also want radio button-like behavior then the buttons should also be placed in a ButtonGroup. Listing 2 shows how you can create each of these button styles and Table 3 shows what they look like.

Listing 2: Creating Segmented Buttons

// Create a Layout component that will ensure the buttons abut each other
public static JComponent createLayoutComponent(List<JButton> segmentButtons) {
  Box layoutBox = Box.createHorizontalBox();
  for(JButton button : segmentButtons) {
    layoutBox.add(button);
  }
  return layoutBox;
}

public static JButton createSegmentButton(String style, String position, ButtonGroup buttonGrp) {
  JButton button = new JButton();
  button.putClientProperty("JButton.buttonType", style);
  button.putClientProperty("JButton.segmentPosition", position);
  buttonGrp.add(button);
  return button;
}

// Bottleneck for creating the buttons for the button group
pubic static List<JButton> createSegmentButtonsWithStyle(int numButtons, ButtonGroup buttonGrp, String style){
  // Allocate a list of JButtons
  List<JButton> buttons = new ArrayList<JButton>();
  if(numButtons == 1) {
    // If 1 button is requested, then it gets the "only" segment position
    buttons.add(createSegmentButton(style, "only", buttonGrp));
  } else {
    // If more than 1 button is requested, then
    // the first one gets "first" the last one gets "last" and the rest get "middle"
    buttons.add(createSegmentButton(style, "first", buttonGrp));
    for(int i = 0; i < buttons.size() - 2; ++i) {
      buttons.add(createSegmentButton(style, "middle", buttonGrp));
    }
    buttons.add(createSegmentButton(style, "last", buttonGrp));
  }
  return buttons;
}

// Convenience methods that pass in the correct button style for each segmented button style
public static List<JButton> createSegmentedButtons(int numButtons, ButtonGroup buttonGroup) {
  return createSegmentButtonsWithStyle(numButtons, buttonGroup, "segmented");
}

public static List<JButton> createSegmentedRoundRectButtons(int numButtons, ButtonGroup buttonGroup) {
  return createSegmentButtonsWithStyle(numButtons, buttonGroup, "segmentedRoundRect");
}

public static List<JButton> createSegmentedCapsuleButtons(int numButtons, ButtonGroup buttonGroup) {
  return createSegmentButtonsWithStyle(numButtons, buttonGroup, "segmentedCapsule");
}

public static List<JButton> createSegmentedTexturedButtons(int numButtons, ButtonGroup buttonGroup) {
  return createSegmentButtonsWithStyle(numButtons, buttonGroup, "segmentedTextured");
}

Table 3: What they look like

Creation Routinefirstmiddlelastonly
createSegmentedButton()
createSegmentedRoundRectButton()
createSegmentedCapsuleButton()
createSegmentedTexturedButton()

Back to Top 

Simple Touches

You can easily make a standard JTextField appear as a Mac OS X Search box by using the JTextField.variant property. You can further adorn the JTextField to include a menu and action listeners. For more information on these properties, see JTextField.Search.FindPopup, JTextField.Search.FindAction and JTextField.Search.CancelAction. Table 4 shows what the search box looks like.

You can create a circular indeterminate JProgressBar by using the JProgressBar.style property. Table 4 shows how you can create this style and what it looks like.

JComboBoxes can be modified to have squared off edges using the JComboBox.isSquare property, and can take on the appearance of a Mac OS X pop-down menu via the JComboBox.isPopDown property. Table 4 shows how you can create this style and what it looks like.

Table 4: What they look like

Property ChangeAppearance
textField.putClientProperty("JTextField.variant", "search")
progressBar.setIndeterminate(true)
progressBar.putClientProperty("JProgressBar.style", "circular")
comboBox.putClientProperty("JComboBox.isSquare", Boolean.TRUE)
comboBox.putClientProperty("JComboBox.isPopDown", Boolean.TRUE)

Back to Top 

Window styles and features

Using client properties you can customize your Java windows much like native Mac OS X applications can. Some of these properties and their effects are demonstrated below.

WARNING: Many of these properties require a heavyweight peer to have been created, and as such do not apply to JInternalFrames or Applets. Setting these client properties on instances of a JRootPane that does not have a heavy weight peer set will result in those changes being ignored

Given a variable "jRootPane" the Table 5 demonstrates the effects of various property changes on the corresponding window.

Table 5: What they do

Property ChangeEffect
Default Appearance
jRootPane.putClientProperty("Window.alpha", new Float(0.75))
jRootPane.putClientProperty("Window.alpha", new Float(0.50))
jRootPane.putClientProperty("Window.alpha", new Float(0.25))
jRootPane.putClientProperty("Window.documentFile", new File("/Developer/Examples/Java/JFC/SwingSet2/SwingSet2.java"))
jRootPane.putClientProperty("Window.documentFile", new File("/tmp"))
jRootPane.putClientProperty("Window.documentModified", Boolean.TRUE)

Other properties must be set before the heavyweight peer is created. The heavyweight peer is created once addNotify() has been called for the component, and after which changes to these properties have no further effect. Table 6 demonstrates these properties.

Table 6: What they do

Property ChangeEffect
Default Appearance
jRootPane.putClientProperty("Window.style", "small")
jRootPane.putClientProperty("Window.shadow", Boolean.FALSE)

Note: A window with the "Window.style" property set to "small" looks like a floating window, but to make it float above all others you must additionally call setAlwaysOnTop(true)

Back to Top 

Available Properties

The following properties are available as of J2SE 5.0 on Mac OS X 10.5. All properties are safely ignored by earlier versions of Java and earlier versions of Mac OS X.

IMPORTANT: The typical behavior of the corresponding JComponent should be expected for entries where a default value is not specified.

JComponent.sizeVariant

Type: String

Allowed Values: "regular", "small", "mini"

Default Value: "regular"

Applies to: JLabel, JButton, JToggleButton, JCheckBox, JRadioButton, JComboBox, JProgressBar, JSlider, JTextField, JSpinner

This property alters the components font size and appearance to provide a small or miniature variant of the control.

Back to Top 

JButton.buttonType

Type: String

Allowed Values: "square", "gradient", "bevel", "textured", "roundRect", "recessed", "help", "segmented", "segmentedRoundRect", "segmentedCapsule", "segmentedTextured", "segmentedGradient"

Applies to: JButton and subclasses

This property alters the visual style of the button.

WARNING: The "help" style is not designed to accommodate text or icons. Specifying this style produces the standard Mac OS X help button.

IMPORTANT: Segmented styles must be accompanied by the appropriate JButton.segmentPosition client property in order to get the correct visual appearance.

Back to Top 

JButton.segmentPosition

Type: String

Allowed Values: "first", "middle", "last", "only"

Applies to: JButton and subclasses where the JButton.buttonType property has been set to "segmented", "segmentedRoundRect", "segmentedCapsule", or "segmentedTextured".

This property determines the orientation of a segmented button as it should appear as part of a single contiguous control. Buttons with a segmented type should be added to the same ButtonGroup if radio-button like behavior is desired, and should be placed in a LayoutManager that ensures that their edges will abut each other horizontally to get the correct final apperance.

Back to Top 

JComboBox.isPopDown

Type: Boolean

Allowed Values: Boolean.TRUE, Boolean.FALSE

Applies to: JComboBox

This property alters the JComboBox's style to specify if it is intended to be a pop-down or a pop-up control. Pop-downs should be used when the user is expected to choose an action from the pop-down menu. Pop-ups should be used when the user is expected to make a choice from the pop-up menu that does not cause an action like a button would. Pop-up menus always appear over the pop-up control, whereas pop-down menus always appear below the pop-down control.

Back to Top 

JComboBox.isSquare

Type: Boolean

Allowed Values: Boolean.TRUE, Boolean.FALSE

Applies to: JComboBox

This property changes the appearance of a JComboBox to have squared off edges.

Back to Top 

JProgressBar.style

Type: String

Allowed Values: "circular"

Applies to: JProgressBar

This proper changes any indeterminate JProgressBar into a small circular spinning indeterminate progress indicator.

Back to Top 

JTableHeader.selectedColumn

Type: Number

Applies to: JTableHeader

This property allows you to highlight the currently selected column of a JTable. The value should be set to the index of the column in the data model that you wish to be selected.

Back to Top 

JTableHeader.sortDirection

Type: String

Allowed Values: "ascending", "decending", null

Default Value: null

This property will put a small triangular sort indicator point up (decending) or down (ascending) in the selected column. Setting this property to null will clear the sort indicator. This property has no effect if JTableHeader.selectedColumn has not been specified.

Note: The incorrect spelling "decending" for this properties allowed values is correct. Using the correctly spelled "descending" will have no effect in J2SE 5.0 on Mac OS X 10.5.0

Back to Top 

JTextField.variant

Type: String

Allowed Values: "search"

Applies to: JTextField

This property changes the text field into a search field. For additional functionality see the optional JTextField.Search.FindPopup, JTextField.Search.FindAction and JTextField.Search.CancelAction properties.

Back to Top 

JTextField.Search.FindPopup

Type: JPopupMenu

Allowed Values: Any JPopupMenu

Applies to: JTextField with the JTextField.variant property set to "search"

Setting this property attaches the provided JPopupMenu to the search control, and alters the icon to represent that there is a popup menu. Requires the JTextField.variant to be set to "search".

Back to Top 

JTextField.Search.FindAction

Type: ActionListener

Allowed Values: Any ActionListener

Applies to: JTextField with the JTextField.variant property set to "search"

Setting this property will trigger the provided ActionListener when the "find icon" in the search field is clicked. Requires the JTextField.variant to be set to "search".

Back to Top 

JTextField.Search.CancelAction

Type: ActionListener

Allowed Values: Any ActionListener

Applies to: JTextField with the JTextField.variant property set to "search"

Setting this property will trigger the provided ActionListener when the "cancel icon" in the search field is clicked. Requires the JTextField.variant to be set to "search".

Note: The cancel icon is only present when there is text in the search field.

Back to Top 

Window.documentModified

Type: Boolean

Allowed Values: Boolean.TRUE, Boolean.FALSE

Default Value: Boolean.FALSE

Applies to: JRootPane, JInternalFrame

This property adds the document dirty mark in the close button of the window. This is used to indicate that the document window has unsaved content, and attempts to close the window will request that the user save the document or discard changes.

Back to Top 

Window.documentFile

Type: java.io.File

Allowed Values: Any

Applies to: JRootPane

This property adds a document proxy icon to the title bar of the window. This icon is the effective representation of the document that can be dragged and dropped into the Finder or the Dock. Command-clicking on the title will present the full path to the document in a popup. The proxy icon in the title bar will have the icon of document as presented by LaunchServices in the Finder or Open and Save dialog boxes. This property can be changed at anytime throughout the lifetime of the window. Using this property from an untrusted applet or WebStart application will result in a security exception as these types of applications do not have access to the file system.

WARNING: This property only applies to JRootPanes that have a heavyweight peer.

Back to Top 

Window.style

Type: String

Allowed Values: "small"

Applies to: JRootPane

This property determines if the window has a Utility-style title bar. In order to make this window style also float above all others you must additionally call setAlwaysOnTop(true). Windows that have both the "small" style and are set to always be on top will automatically hide themselves when your application is no longer frontmost. This is similar to how native applications behave.

WARNING: This property must be set before the heavyweight peer for the Window is created. Once addNotify() has been called on the component, causing creation of the heavyweight peer, changing this property has no effect.

Back to Top 

Window.alpha

Type: Float

Allowed Values: Any value from 0.0 to 1.0 inclusive

Default Value: 1.0

Applies to: JRootPane

This property sets the opacity for the whole window and can be changed throughout the lifetime of the window.

WARNING: This property only applies to JRootPanes that have a heavyweight peer.

Back to Top 

Window.shadow

Type: Boolean

Allowed Values: Boolean.TRUE, Boolean.FALSE

Default Value: Boolean.TRUE

Applies to: JRootPane

This property determines if the window has a shadow.

WARNING: This property must be set before the heavyweight peer for the Window is created. Once addNotify() has been called on the component, causing creation of the heavyweight peer, changing this property has no effect.

Back to Top 

apple.awt.windowShadow.revalidateNow

Type: Object

Allowed Values: Any

Applies to JRootPane

Changing the value of this property causes the window's shadow to be recomputed based on the current window shape. The values used are inconsequential, as long as the new value is different from the current value. This property uses equals() to compare the equality of the two objects involved.

WARNING: This property only applies to JRootPanes that have a heavyweight peer.

IMPORTANT: This property requires the Window.shadow property to be explicitly set to Boolean.TRUE

Back to Top 

apple.awt.brushMetalLook

Type: Boolean

Allowed Values: Boolean.TRUE, Boolean.FALSE

Default Value: Undefined

Applies to: JRootPane

This property determines if the window should use the Brushed Metal texture. This client property overrides the corresponding system property, which determines its default value.

WARNING: This property must be set before the heavyweight peer for the Window is created. Once addNotify() has been called on the component, causing creation of the heavyweight peer, changing this property has no effect.

Back to Top 

apple.awt.draggableWindowBackground

Type: Boolean

Allowed Values: Boolean.TRUE, Boolean.FALSE

Default Value: Boolean.FALSE

Applies to: JRootPane

Setting this property to Boolean.TRUE allows dragging of the Window via mouse-down on any part of the window that is not a heavyweight control. This client property overrides the system property.

WARNING: This property must be set before the heavyweight peer for the Window is created. Once addNotify() has been called on the component, causing creation of the heavyweight peer, changing this property has no effect.

Back to Top 

apple.awt.delayWindowOrdering

Type: Boolean

Allowed Values: Boolean.TRUE, Boolean.FALSE

Default Value: Boolean.FALSE

Applies to: JRootPane

This property determines if the window comes to front immediately during a drag and drop operation. If set to true, drag operations do not bring the window forward. The default value causes the window to be brought forward immediately.

WARNING: This property must be set before the heavyweight peer for the Window is created. Once addNotify() has been called on the component, causing creation of the heavyweight peer, changing this property has no effect.

Back to Top 

Properties available by component

Table 7: Properties available by component.

JComponent subclassClient PropertyNotes
JButtonJComponent.sizeVariant 
 JButton.buttonType 
 JButton.segmentPositionRequires segmented JButton.buttonType.
JCheckBoxJComponent.sizeVariant 
JComboBoxJComponent.sizeVariant 
 JComboBox.isPopDown 
 JComboBox.isSquare 
JInternalFrameWindow.documentModified 
JLabelJComponent.sizeVariant 
JProgressBarJComponent.sizeVariant 
 JProgressBar.style 
JRadioButtonJComponent.sizeVariant 
JRootPaneWindow.alphaRequires heavyweight peer.
 Window.documentFileRequires heavyweight peer.
 Window.documentModified 
 Window.styleMust be set before the heavyweight peer is created.
 Window.shadowMust be set before the heavyweight peer is created.
 apple.awt.brushMetalLookMust be set before the heavyweight peer is created.
 apple.awt.delayWindowOrderingMust be set before the heavyweight peer is created.
 apple.awt.draggableWindowBackgroundMust be set before the heavyweight peer is created.
 apple.awt.windowShadow.revalidateNowRequires heavyweight peer.
JSliderJComponent.sizeVariant 
JSpinnerJComponent.sizeVariant 
JTableHeaderJTableHeader.selectedColumn 
 JTableHeader.sortDirectionRequires JTableHeader.selectedColumn to be specified.
JTextFieldJComponent.sizeVariant 
 JTextField.Search.CancelActionRequires "search" JTextField.variant.
 JTextField.Search.FindActionRequires "search" JTextField.variant.
 JTextField.Search.FindPopupRequires "search" JTextField.variant.
 JTextField.variant 
JToggleButtonJComponent.sizeVariant 

Back to Top 

Document Revision History

DateNotes
2007-11-02First Version