Package org.xhtmlrenderer.extend
Interface OutputDevice
-
- All Known Implementing Classes:
AbstractOutputDevice,Java2DOutputDevice
public interface OutputDevice
-
-
Method Summary
-
-
-
Method Detail
-
drawText
void drawText(RenderingContext c, InlineText inlineText)
-
drawSelection
void drawSelection(RenderingContext c, InlineText inlineText)
-
drawTextDecoration
void drawTextDecoration(RenderingContext c, LineBox lineBox)
-
drawTextDecoration
void drawTextDecoration(RenderingContext c, InlineLayoutBox iB, TextDecoration decoration)
-
paintBorder
void paintBorder(RenderingContext c, Box box)
-
paintBorder
void paintBorder(RenderingContext c, CalculatedStyle style, Rectangle edge, int sides)
-
paintCollapsedBorder
void paintCollapsedBorder(RenderingContext c, BorderPropertySet border, Rectangle bounds, int side)
-
paintBackground
void paintBackground(RenderingContext c, Box box)
-
paintBackground
void paintBackground(RenderingContext c, CalculatedStyle style, Rectangle bounds, Rectangle bgImageContainer, BorderPropertySet border)
-
paintReplacedElement
void paintReplacedElement(RenderingContext c, BlockBox box)
-
drawDebugOutline
void drawDebugOutline(RenderingContext c, Box box, FSColor color)
-
setFont
void setFont(FSFont font)
-
setColor
void setColor(FSColor color)
-
drawRect
void drawRect(int x, int y, int width, int height)
-
drawOval
void drawOval(int x, int y, int width, int height)
-
drawBorderLine
void drawBorderLine(Shape bounds, int side, int width, boolean solid)
-
drawImage
void drawImage(FSImage image, int x, int y)
-
draw
void draw(Shape s)
-
fill
void fill(Shape s)
-
fillRect
void fillRect(int x, int y, int width, int height)
-
fillOval
void fillOval(int x, int y, int width, int height)
-
clip
void clip(Shape s)
-
getClip
Shape getClip()
-
setClip
void setClip(Shape s)
-
translate
void translate(double tx, double ty)
-
setStroke
void setStroke(Stroke s)
-
getStroke
Stroke getStroke()
-
getRenderingHint
Object getRenderingHint(RenderingHints.Key key)
-
setRenderingHint
void setRenderingHint(RenderingHints.Key key, Object value)
-
isSupportsSelection
boolean isSupportsSelection()
-
isSupportsCMYKColors
boolean isSupportsCMYKColors()
-
-