AbstractRegionPainter
protected static class AbstractRegionPainter.PaintContext extends Object
Modifier and Type | Class | Description |
---|---|---|
protected static enum |
AbstractRegionPainter.PaintContext.CacheMode |
Cache mode. |
Constructor | Description |
---|---|
PaintContext |
Creates a new PaintContext which does not attempt to cache or scale any cached images. |
PaintContext |
Creates a new PaintContext. |
public PaintContext(Insets insets, Dimension canvasSize, boolean inverted)
insets
- The stretching insets. May be null. If null, then assumed to be 0, 0, 0, 0.canvasSize
- The size of the canvas used when encoding the various x/y values. May be null. If null, then it is assumed that there are no encoded values, and any calls to one of the "decode" methods will return the passed in value.inverted
- Whether to "invert" the meaning of the 9-square grid and stretching insetspublic PaintContext(Insets insets, Dimension canvasSize, boolean inverted, AbstractRegionPainter.PaintContext.CacheMode cacheMode, double maxH, double maxV)
insets
- The stretching insets. May be null. If null, then assumed to be 0, 0, 0, 0.canvasSize
- The size of the canvas used when encoding the various x/y values. May be null. If null, then it is assumed that there are no encoded values, and any calls to one of the "decode" methods will return the passed in value.inverted
- Whether to "invert" the meaning of the 9-square grid and stretching insetscacheMode
- A hint as to which caching mode to use. If null, then set to no caching.maxH
- The maximum scale in the horizontal direction to use before punting and redrawing from scratch. For example, if maxH is 2, then we will attempt to scale any cached images up to 2x the canvas width before redrawing from scratch. Reasonable maxH values may improve painting performance. If set too high, then you may get poor looking graphics at higher zoom levels. Must be >= 1.maxV
- The maximum scale in the vertical direction to use before punting and redrawing from scratch. For example, if maxV is 2, then we will attempt to scale any cached images up to 2x the canvas height before redrawing from scratch. Reasonable maxV values may improve painting performance. If set too high, then you may get poor looking graphics at higher zoom levels. Must be >= 1.
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.desktop/javax/swing/plaf/nimbus/AbstractRegionPainter.PaintContext.html