Lines Matching refs:height

151      * is specified by the <code>width</code> and <code>height</code>
158 * @param height the height of the clipping rectangle.
163 public Graphics create(int x, int y, int width, int height) {
167 g.clipRect(0, 0, width, height);
305 * @param height the height of the rectangle to intersect the clip with
309 public abstract void clipRect(int x, int y, int width, int height);
320 * @param height the height of the new clip rectangle.
326 public abstract void setClip(int x, int y, int width, int height);
379 * @param height the height of the source rectangle.
383 public abstract void copyArea(int x, int y, int width, int height,
402 * <code>y</code> and <code>y&nbsp;+&nbsp;height&nbsp;-&nbsp;1</code>.
405 * <code>height</code> pixels tall.
412 * @param height the height of the rectangle to be filled.
416 public abstract void fillRect(int x, int y, int width, int height);
423 * <code>y</code> and <code>y&nbsp;+&nbsp;height</code>.
430 * @param height the height of the rectangle to be drawn.
434 public void drawRect(int x, int y, int width, int height) {
435 if ((width < 0) || (height < 0)) {
439 if (height == 0 || width == 0) {
440 drawLine(x, y, x + width, y + height);
443 drawLine(x + width, y, x + width, y + height - 1);
444 drawLine(x + width, y + height, x + 1, y + height);
445 drawLine(x, y + height, x, y + 1);
461 * @param height the height of the rectangle to clear.
468 public abstract void clearRect(int x, int y, int width, int height);
475 * <code>y</code> and <code>y&nbsp;+&nbsp;height</code>.
479 * @param height the height of the rectangle to be drawn.
486 public abstract void drawRoundRect(int x, int y, int width, int height,
494 * <code>y</code> and <code>y&nbsp;+&nbsp;height&nbsp;-&nbsp;1</code>.
498 * @param height the height of the rectangle to be filled.
505 public abstract void fillRoundRect(int x, int y, int width, int height,
517 * by <code>height&nbsp;+&nbsp;1</code> pixels tall.
521 * @param height the height of the rectangle to be drawn.
527 public void draw3DRect(int x, int y, int width, int height,
534 drawLine(x, y, x, y + height);
537 drawLine(x + 1, y + height, x + width, y + height);
538 drawLine(x + width, y, x + width, y + height - 1);
551 * @param height the height of the rectangle to be filled.
557 public void fill3DRect(int x, int y, int width, int height,
566 fillRect(x+1, y+1, width-2, height-2);
568 drawLine(x, y, x, y + height - 1);
571 drawLine(x + 1, y + height - 1, x + width - 1, y + height - 1);
572 drawLine(x + width - 1, y, x + width - 1, y + height - 2);
580 * <code>width</code>, and <code>height</code> arguments.
584 * and <code>height&nbsp;+&nbsp;1</code> pixels tall.
590 * @param height the height of the oval to be drawn.
593 public abstract void drawOval(int x, int y, int width, int height);
603 * @param height the height of the oval to be filled.
606 public abstract void fillOval(int x, int y, int width, int height);
621 * <code>width</code> and <code>height</code> arguments.
625 * by <code>height&nbsp;+&nbsp;1</code> pixels tall.
639 * @param height the height of the arc to be drawn.
645 public abstract void drawArc(int x, int y, int width, int height,
660 * <code>width</code> and <code>height</code> arguments.
664 * by <code>height&nbsp;+&nbsp;1</code> pixels tall.
678 * @param height the height of the arc to be filled.
684 public abstract void fillArc(int x, int y, int width, int height,
912 * @param height the height of the rectangle.
922 int width, int height,
933 * width and height of the specified image with the given color and then
976 * width and height of the specified image with the given color and then
997 * @param height the height of the rectangle.
1009 int width, int height,
1075 * width and height of the specified image with the given color and then
1209 * @param height the height of the rectangle to test against the clip
1214 public boolean hitClip(int x, int y, int width, int height) {
1222 return clipRect.intersects(x, y, width, height);
1250 r.height = clipRect.height;