Searched defs:bandHeight (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWEmbeddedFrame.java45 private int bandHeight = 0; field in class:WEmbeddedFrame
132 bandHeight = Math.min(MAX_BAND_SIZE/bandWidth, frameHeight);
135 imgHgt = (int)(bandHeight * yscale);
149 for (int bandTop = 0; bandTop < frameHeight; bandTop += bandHeight) {
150 clearGraphics.fillRect(0, 0, bandWidth, bandHeight);
154 int currBandHeight = bandHeight;
156 if ((bandTop+bandHeight) > frameHeight) {
168 g2d.translate(0, -bandHeight);

Completed in 31 milliseconds