Package | Description |
---|---|
net.java.balloontip | |
net.java.balloontip.positioners | |
net.java.balloontip.utils |
Modifier and Type | Class and Description |
---|---|
class |
CustomBalloonTip
Provides the same functionality as a BalloonTip, but you can add a certain offset to its position (, which can come in handy if attached to custom components)
|
class |
ListItemBalloonTip
A balloon tip that can attach itself to an item in a JList
|
class |
TableCellBalloonTip
Provides similar functionality as a CustomBalloonTip, but attaches itself to a cell in a JTable
|
class |
TreeNodeBalloonTip
A balloon tip that can attach itself to a node in a JTree
|
Modifier and Type | Field and Description |
---|---|
protected BalloonTip |
BalloonTipPositioner.balloonTip |
Modifier and Type | Method and Description |
---|---|
BalloonTip |
BalloonTipPositioner.getBalloonTip()
Retrieve the balloon tip that uses this positioner
|
Modifier and Type | Method and Description |
---|---|
void |
BalloonTipPositioner.setBalloonTip(BalloonTip balloonTip)
This method is meant only to be used by BalloonTip!
|
Modifier and Type | Method and Description |
---|---|
static void |
ToolTipUtils.balloonToToolTip(BalloonTip bT,
int initialDelay,
int showDelay)
Turns a balloon tip into a tooltip
This is done by adding a mouse listener to the attached component.
|
static void |
FadingUtils.fadeInBalloon(BalloonTip balloon,
ActionListener onStop,
int time,
int refreshRate)
Execute a fade-in effect on a balloon tip
|
static void |
FadingUtils.fadeOutBalloon(BalloonTip balloon,
ActionListener onStop,
int time,
int refreshRate)
Execute a fade-in effect on a balloon tip
|
static void |
TimingUtils.showTimedBalloon(BalloonTip balloon,
int time)
Displays a balloon tip for a certain time, then close it.
|
static void |
TimingUtils.showTimedBalloon(BalloonTip balloon,
int time,
ActionListener onTimeout)
Displays a balloon tip for a certain time
|
static void |
ToolTipUtils.toolTipToBalloon(BalloonTip bT)
Turns a balloon tooltip back into a regular balloon tip
|