Package | Description |
---|---|
org.xhtmlrenderer.simple |
Includes those classes you need to render XHTML documents
quickly, right out of the box, and with no special setup needed; start here! All the classes
in this package are oriented towards ease-of-use.
|
org.xhtmlrenderer.swing |
Modifier and Type | Class and Description |
---|---|
class |
XHTMLPanel
XHTMLPanel is a simple Swing component that renders valid XHTML content in a
Java program.
|
Modifier and Type | Class and Description |
---|---|
class |
ScalableXHTMLPanel
ScalableXHTMLPanel extends
XHTMLPanel to allow zoom on output. |
Modifier and Type | Method and Description |
---|---|
void |
LinkListener.linkClicked(BasicPanel panel,
java.lang.String uri)
Utility method to request the panel navigate to the given URI.
|
void |
DefaultFSMouseListener.onMouseDragged(BasicPanel panel,
java.awt.event.MouseEvent e) |
void |
FSMouseListener.onMouseDragged(BasicPanel panel,
java.awt.event.MouseEvent e)
Sent when the mouse button is held and the mouse is moved.
|
void |
HoverListener.onMouseOut(BasicPanel panel,
Box box)
Sent when the mouse leaves a Box in the render tree after entering it.
|
void |
DefaultFSMouseListener.onMouseOut(BasicPanel panel,
Box box) |
void |
FSMouseListener.onMouseOut(BasicPanel panel,
Box box)
Sent when the mouse leaves a Box in the render tree after entering it.
|
void |
HoverListener.onMouseOver(BasicPanel panel,
Box box)
Sent when the mouse moves over a Box in the render tree.
|
void |
CursorListener.onMouseOver(BasicPanel panel,
Box box)
Sent when the mouse moves over a Box in the render tree.
|
void |
DefaultFSMouseListener.onMouseOver(BasicPanel panel,
Box box) |
void |
FSMouseListener.onMouseOver(BasicPanel panel,
Box box)
Sent when the mouse moves over a Box in the render tree.
|
void |
DefaultFSMouseListener.onMousePressed(BasicPanel panel,
java.awt.event.MouseEvent e) |
void |
FSMouseListener.onMousePressed(BasicPanel panel,
java.awt.event.MouseEvent e)
Sent when the mouse button is pressed.
|
void |
LinkListener.onMouseUp(BasicPanel panel,
Box box)
Triggers the click on a box.
|
void |
DefaultFSMouseListener.onMouseUp(BasicPanel panel,
Box box) |
void |
FSMouseListener.onMouseUp(BasicPanel panel,
Box box)
Sent when the mouse button is released while hovering over a Box in the render tree.
|
Constructor and Description |
---|
MouseTracker(BasicPanel panel)
Instantiates a MouseTracker to listen to mouse events for the given panel.
|