Using Swing Components |
Creating a tool tip for anyJComponent
is easy. You just use thesetToolTipText
method to set up a tool tip for the component. For example, to add tool tips to three buttons, you add only three lines of code:When the user of the program pauses with the cursor over any of the program's buttons, the tool tip for the button comes up. You can see this by running theb1.setToolTipText("Click this button to disable the middle button."); b2.setToolTipText("This middle button does nothing when you click it."); b3.setToolTipText("Click this button to enable the middle button.");ButtonDemo
example, which is explained in How to Use Buttons, Check Boxes, and Radio Buttons. Here's a picture of the tool tip that appears when the cursor pauses over the left button inButtonDemo
: [Please imagine a cursor over the left button. Thank you.]
Most of the API you need to set up tool tips is in theJComponent
, and thus is inherited by every Swing component (except for top-level containers). This API is covered a table later in this section.More tool-tip API is in individual classes such as
JTabbedPane
. Each component's page has information on its tool-tip API, if any.If you want to bypass or customize the default handling of tool tips, then you'll probably need to deal directly with
JToolTip
orToolTipManager
. [PENDING: should I say more?]
Tool Tip API in JComponent
Method Purpose setToolTipText(String)
(inJComponent
)If the specified string is non-null, then this method registers the component as having a tool tip and makes the tool tip (when displayed) have the specified text. If the argument is null, then this method turns off tool tips for this component. String getToolTipText()
(inJComponent
)Returns the string that was previously specified with setToolTipText
.String getToolTipText(MouseEvent)
(inJComponent
)By default, returns the same value returned by getToolTipText()
. Multi-part components such asJTabbedPane
,JTable
, andJTree
override this method to return a string associated with the mouse event location. For example, each tab in a tabbed pane can have different tool-tip text.setToolTipLocation(Point)
Point getToolTipLocation()
(inJComponent
)Set or get the location (in the receiving component's coordinate system) where the upper left corner of the component's tool tip will appear. The default value is null, which tells the Swing system to choose a location.
This table shows the examples that use tool tips and where those examples are described.
Example Where Described Notes ButtonDemo.java
This page and How to Use Buttons, Check Boxes, and Radio Buttons Uses a tool tip to provide instructions for a button. IconDemoApplet.java
How to Use Icons Uses a tool tip to provide name and size information on an image. TabbedPaneDemo.java
How to Use Tabbed Panes Specifies tool tip text for each tab. TableRenderDemo.java
How to Use Tables Adds tool tips using custom renderers and editors. ActionDemo.java
How to Use Actions Adds tool tips to buttons created using Actions. [PENDING: tree? list? anything else?]
Using Swing Components |