Home | History | Annotate | Download | only in impl

Lines Matching defs:lineHeight

63     private transient int lineHeight;
535 lineHeight = lineAscent + fm.getDescent() + lineLeading;
539 for (int i = 0; i < lineCount; y += lineHeight, ++i) {
548 lastHeight = y + yInset - lineHeight + yInset;
566 g.fillRect(line, activePoint.y, 1, lineHeight);
580 Math.max(1,endPoint.x-startPoint.x), lineHeight);
583 (mySize.width-xInset)-startPoint.x, lineHeight);
584 if (startPoint.y + lineHeight < endPoint.y)
585 paintRect(g, xInset, startPoint.y + lineHeight,
586 (mySize.width-xInset)-xInset, endPoint.y - startPoint.y - lineHeight);
587 paintRect(g, xInset, endPoint.y, endPoint.x-xInset, lineHeight);
594 g.fillRect(line, caretPoint.y, 1, lineHeight);
595 int w = lineHeight/12 + 1;
598 g.fillRect(braces, caretPoint.y + lineHeight - 1, w, 1);
614 p.y = lineHeight * line + yInset;
642 int line = (p.y - yInset)/lineHeight;