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

/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DAbstractRegionPainter.java75 The same logic goes for topHeight, centerHeight, and bottomHeight.
90 private float topHeight; field in class:AbstractRegionPainter
256 return y * topHeight;
258 return ((y-1) * centerHeight) + topHeight;
260 return ((y-2) * bottomHeight) + topHeight + centerHeight;
585 topHeight = centerHeight = bottomHeight = 0f;
602 topHeight = availableSpace * ctx.cPercent;
608 topHeight = ctx.c * f;
610 centerHeight = h - topHeight - bottomHeight;
616 topScale = ctx.c == 0f ? 0f : topHeight / ct
[all...]

Completed in 96 milliseconds