Lines Matching refs:height

97      * is specified by the <code>width</code> and <code>height</code>
104 * @param height the height of the clipping rectangle.
109 public Graphics create(int x, int y, int width, int height) {
110 return new ProxyGraphics(g.create(x, y, width, height));
265 * @param height the height of the rectangle to intersect the clip with
269 public void clipRect(int x, int y, int width, int height) {
270 g.clipRect(x, y, width, height);
282 * @param height the height of the new clip rectangle.
287 public void setClip(int x, int y, int width, int height) {
288 g.setClip(x, y, width, height);
346 * @param height the height of the source rectangle.
350 public void copyArea(int x, int y, int width, int height,
352 g.copyArea(x, y, width, height, dx, dy);
373 * <code>y</code> and <code>y&nbsp;+&nbsp;height&nbsp;-&nbsp;1</code>.
376 * <code>height</code> pixels tall.
383 * @param height the height of the rectangle to be filled.
387 public void fillRect(int x, int y, int width, int height) {
388 g.fillRect(x, y, width, height);
396 * <code>y</code> and <code>y&nbsp;+&nbsp;height</code>.
403 * @param height the height of the rectangle to be drawn.
407 public void drawRect(int x, int y, int width, int height) {
408 g.drawRect(x, y, width, height);
423 * @param height the height of the rectangle to clear.
430 public void clearRect(int x, int y, int width, int height) {
431 g.clearRect(x, y, width, height);
439 * <code>y</code> and <code>y&nbsp;+&nbsp;height</code>.
443 * @param height the height of the rectangle to be drawn.
450 public void drawRoundRect(int x, int y, int width, int height,
452 g.drawRoundRect(x, y, width, height, arcWidth, arcHeight);
460 * <code>y</code> and <code>y&nbsp;+&nbsp;height&nbsp;-&nbsp;1</code>.
464 * @param height the height of the rectangle to be filled.
471 public void fillRoundRect(int x, int y, int width, int height,
473 g.fillRoundRect(x, y, width, height, arcWidth, arcHeight);
485 * by <code>height&nbsp;+&nbsp;1</code> pixels tall.
489 * @param height the height of the rectangle to be drawn.
495 public void draw3DRect(int x, int y, int width, int height,
497 g.draw3DRect(x, y, width, height, raised);
509 * @param height the height of the rectangle to be filled.
515 public void fill3DRect(int x, int y, int width, int height,
517 g.fill3DRect(x, y, width, height, raised);
524 * <code>width</code>, and <code>height</code> arguments.
528 * and <code>height&nbsp;+&nbsp;1</code> pixels tall.
534 * @param height the height of the oval to be drawn.
537 public void drawOval(int x, int y, int width, int height) {
538 g.drawOval(x, y, width, height);
549 * @param height the height of the oval to be filled.
552 public void fillOval(int x, int y, int width, int height) {
553 g.fillOval(x, y, width, height);
569 * <code>width</code> and <code>height</code> arguments.
573 * by <code>height&nbsp;+&nbsp;1</code> pixels tall.
587 * @param height the height of the arc to be drawn.
593 public void drawArc(int x, int y, int width, int height,
595 g.drawArc(x, y, width, height, startAngle, arcAngle);
610 * <code>width</code> and <code>height</code> arguments.
614 * by <code>height&nbsp;+&nbsp;1</code> pixels tall.
628 * @param height the height of the arc to be filled.
634 public void fillArc(int x, int y, int width, int height,
637 g.fillArc(x, y, width, height, startAngle, arcAngle);
851 * @param height the height of the rectangle.
859 int width, int height,
861 return g.drawImage(img, x, y, width, height, observer);
872 * width and height of the specified image with the given color and then
909 * width and height of the specified image with the given color and then
929 * @param height the height of the rectangle.
939 int width, int height,
943 return g.drawImage(img, x, y, width, height, bgcolor, observer);
1010 * width and height of the specified image with the given color and then
1132 * @param height the height of the rectangle to test against the clip
1134 public boolean hitClip(int x, int y, int width, int height) {
1135 return g.hitClip(x, y, width, height);