Lines Matching refs:width

847                     boolean hitClip = g.hitClip(cr.x, cr.y, cr.width,
854 int width = cr.width;
858 clipBounds.width, clipBounds.height, cr);
860 if(getObscuredState(i, cr.x, cr.y, cr.width,
866 cr.width = width;
869 Graphics cg = sg.create(cr.x, cr.y, cr.width,
1016 clipW = clipRect.width;
1090 rm.paint(this, this, g, clip.x, clip.y, clip.width, clip.height);
2556 public int getBaseline(int width, int height) {
2558 super.getBaseline(width, height);
2560 return ui.getBaseline(this, width, height);
2645 parent.repaint(r.x, r.y, r.width, r.height);
4202 * @param w the new width
4237 * Stores the width/height of this component into "return value"
4305 * Returns the current width of this component.
4307 * <code>component.getBounds().width</code>, or
4308 * <code>component.getSize().width</code> because it doesn't cause any
4311 * @return the current width of this component
4382 * @param width width of specified rectangle
4386 boolean rectangleIsObscured(int x,int y,int width,int height)
4399 if (x >= cx && (x + width) <= (cx + cw) &&
4438 visibleRect.setBounds(0, 0, bounds.width, bounds.height);
4443 SwingUtilities.computeIntersection(0,0,bounds.width,bounds.height,visibleRect);
4786 * @param width the width of the dirty region
4792 public void repaint(long tm, int x, int y, int width, int height) {
4793 RepaintManager.currentManager(this).addDirtyRegion(this, x, y, width, height);
4808 repaint(0,r.x,r.y,r.width,r.height);
4942 * @param w the width of the region to be painted
4959 paintingOigin.paintImmediately(rectangle.x, rectangle.y, rectangle.width, rectangle.height);
4990 paintImmediately(r.x,r.y,r.width,r.height);
5037 paintImmediatelyClip.width = w;
5047 if (paintImmediatelyClip.width == 0) {
5083 paintImmediatelyClip.width,
5134 // If the clip width or height is negative, don't bother painting
5136 paintImmediatelyClip.width <= 0 ||
5170 paintImmediatelyClip.width,
5177 paintImmediatelyClip.width, paintImmediatelyClip.height);
5243 private int getObscuredState(int compIndex, int x, int y, int width,
5267 if (opaque && x >= siblingRect.x && (x + width) <=
5268 (siblingRect.x + siblingRect.width) &&
5275 !((x + width <= siblingRect.x) ||
5277 (x >= siblingRect.x + siblingRect.width) ||
5577 parent.repaint(r.x, r.y, r.width, r.height);