public class VolatileImageBackgroundPainterStrategy extends ImageBackgroundPainterStrategy
RTextAreaBase
as an image. The image is always stretched to completely fill the
RTextAreaBase
.
A java.awt.image.VolatileImage
is used for rendering;
theoretically, this should be the best image format for performance.
You can set the scaling hint used when stretching/skewing the image
to fit in the RTextAreaBase
's background via the
setScalingHint
method, but keep in mind the more
accurate the scaling hint, the less responsive your application will
be when stretching the window (as that's the only time the image's
size is recalculated).
ImageBackgroundPainterStrategy
,
BufferedImageBackgroundPainterStrategy
tracker
构造器和说明 |
---|
VolatileImageBackgroundPainterStrategy(com.fr.design.gui.syntax.ui.rtextarea.RTextAreaBase ta)
Constructor.
|
限定符和类型 | 方法和说明 |
---|---|
protected void |
paintImage(java.awt.Graphics g,
int x,
int y)
Paints the image at the specified location.
|
protected void |
rescaleImage(int width,
int height,
int hint)
Rescales the displayed image to be the specified size.
|
getMasterImage, getRTextAreaBase, getScalingHint, paint, setImage, setImage, setScalingHint
public VolatileImageBackgroundPainterStrategy(com.fr.design.gui.syntax.ui.rtextarea.RTextAreaBase ta)
ta
- The text area whose background we'll be painting.protected void paintImage(java.awt.Graphics g, int x, int y)
paintImage
在类中 ImageBackgroundPainterStrategy
g
- The graphics context.x
- The x-coordinate at which to paint.y
- The y-coordinate at which to paint.protected void rescaleImage(int width, int height, int hint)
rescaleImage
在类中 ImageBackgroundPainterStrategy
width
- The new width of the image.height
- The new height of the image.hint
- The scaling hint to use.