Package | Description |
---|---|
net.java.balloontip | |
net.java.balloontip.examples.complete | |
net.java.balloontip.examples.positioner | |
net.java.balloontip.positioners |
Modifier and Type | Field and Description |
---|---|
protected BalloonTipPositioner |
BalloonTip.positioner |
Modifier and Type | Method and Description |
---|---|
BalloonTipPositioner |
BalloonTip.getPositioner()
Retrieve the BalloonTipPositioner that is used by this balloon tip
|
protected BalloonTipPositioner |
BalloonTip.setupPositioner(BalloonTip.Orientation orientation,
BalloonTip.AttachLocation attachLocation,
int horizontalOffset,
int verticalOffset) |
Modifier and Type | Method and Description |
---|---|
void |
BalloonTip.setPositioner(BalloonTipPositioner positioner)
Set a new BalloonTipPositioner, repsonsible for the balloon tip's positioning
(Calling this method will fire a "positioner" property change event.)
|
protected void |
BalloonTip.setup(JComponent attachedComponent,
JComponent contents,
BalloonTipStyle style,
BalloonTipPositioner positioner,
JButton closeButton) |
Constructor and Description |
---|
BalloonTip(JComponent attachedComponent,
JComponent contents,
BalloonTipStyle style,
BalloonTipPositioner positioner,
JButton closeButton)
Constructor - the most customizable balloon tip constructor
|
CustomBalloonTip(JComponent attachedComponent,
JComponent component,
Rectangle offset,
BalloonTipStyle style,
BalloonTipPositioner positioner,
JButton closeButton) |
ListItemBalloonTip(JList<?> list,
JComponent component,
int index,
BalloonTipStyle style,
BalloonTipPositioner positioner,
JButton closeButton) |
TableCellBalloonTip(JTable table,
JComponent component,
int row,
int column,
BalloonTipStyle style,
BalloonTipPositioner positioner,
JButton closeButton) |
TreeNodeBalloonTip(JTree tree,
JComponent component,
TreePath path,
BalloonTipStyle style,
BalloonTipPositioner positioner,
JButton closeButton) |
Modifier and Type | Method and Description |
---|---|
static BalloonTipPositioner |
Utils.createBalloonTipPositioner()
Retrieve an instance of the balloon tip positioner to be used throughout the application
|
Modifier and Type | Class and Description |
---|---|
class |
SimpleTipPositioner
A sample implementation of a BalloonTipPositioner
|
Modifier and Type | Class and Description |
---|---|
class |
BasicBalloonTipPositioner
Provides common functionality for the positioner classes
LeftAbovePositioner, LeftBelowPositioner, RightAbovePositioner and RightBelowPositioner
|
class |
CenteredPositioner
A positioner that horizontally centers a balloon tip relative to its attached component
|
class |
LeftAbovePositioner
This class positions a balloon tip above the component it's attached to, with the tip on the left
|
class |
LeftBelowPositioner
This class positions a balloon tip below the component it's attached to, with the tip on the left
|
class |
RightAbovePositioner
This class positions a balloon tip above the component it's attached to, with the tip on the right
|
class |
RightBelowPositioner
This class positions a balloon tip below the component it's attached to, with the tip on the right
|