Lines Matching refs:mGraphics

68     Graphics2D mGraphics;
80 mGraphics = graphics;
89 return mGraphics;
97 mGraphics = graphics;
121 return new ProxyGraphics2D((Graphics2D) mGraphics.create(),
138 mGraphics.translate(x, y);
153 mGraphics.translate(tx, ty);
171 mGraphics.rotate(theta);
190 mGraphics.rotate(theta, x, y);
205 mGraphics.scale(sx, sy);
224 mGraphics.shear(shx, shy);
235 return mGraphics.getColor();
248 mGraphics.setColor(c);
260 mGraphics.setPaintMode();
280 mGraphics.setXORMode(c1);
291 return mGraphics.getFont();
306 mGraphics.setFont(font);
319 return mGraphics.getFontMetrics(f);
327 return mGraphics.getFontRenderContext();
342 return mGraphics.getClipBounds();
361 mGraphics.clipRect(x, y, width, height);
378 mGraphics.setClip(x, y, width, height);
392 return mGraphics.getClip();
410 mGraphics.setClip(clip);
436 mGraphics.copyArea(x, y, width, height, dx, dy);
450 mGraphics.drawLine(x1, y1, x2, y2);
475 mGraphics.fillRect(x, y, width, height);
499 mGraphics.clearRect(x, y, width, height);
521 mGraphics.drawRoundRect(x, y, width, height, arcWidth, arcHeight);
543 mGraphics.fillRoundRect(x, y, width, height, arcWidth, arcHeight);
565 mGraphics.drawOval(x, y, width, height);
581 mGraphics.fillOval(x, y, width, height);
616 mGraphics.drawArc(x, y, width, height, startAngle, arcAngle);
650 mGraphics.fillArc(x, y, width, height, startAngle, arcAngle);
667 mGraphics.drawPolyline(xPoints, yPoints, nPoints);
692 mGraphics.drawPolygon(xPoints, yPoints, nPoints);
718 mGraphics.fillPolygon(xPoints, yPoints, nPoints);
734 mGraphics.drawString(str, x, y);
759 mGraphics.drawString(iterator, x, y);
784 mGraphics.drawString(iterator, x, y);
815 return mGraphics.drawImage(img, x, y, observer);
856 return mGraphics.drawImage(img, x, y, width, height, observer);
902 result = mGraphics.drawImage(imageCopy, x, y, null);
904 result = mGraphics.drawImage(img, x, y, bgcolor, observer);
962 result = mGraphics.drawImage(imageCopy, x, y, width, height, null);
964 result = mGraphics.drawImage(img, x, y, width, height,
1022 return mGraphics.drawImage(img, dx1, dy1, dx2, dy2,
1093 result = mGraphics.drawImage(imageCopy,
1098 result = mGraphics.drawImage(img,
1202 mGraphics.drawRenderedImage(img, xform);
1261 mGraphics.dispose();
1288 mGraphics.draw(s);
1315 return mGraphics.drawImage(img, xform, obs);
1340 mGraphics.drawImage(img, op, x, y);
1362 mGraphics.drawString(str, x, y);
1383 mGraphics.drawGlyphVector(g, x, y);
1399 mGraphics.fill(s);
1424 return mGraphics.hit(rect, s, onStroke);
1438 mGraphics.setComposite(comp);
1451 mGraphics.setPaint(paint);
1461 mGraphics.setStroke(s);
1474 mGraphics.setRenderingHint(hintCategory, hintValue);
1484 return mGraphics.getRenderingHint(hintCategory);
1495 mGraphics.setRenderingHints(hints);
1506 mGraphics.addRenderingHints(hints);
1516 return mGraphics.getRenderingHints();
1538 mGraphics.transform(Tx);
1549 mGraphics.setTransform(Tx);
1558 return mGraphics.getTransform();
1567 return mGraphics.getPaint();
1575 return mGraphics.getComposite();
1591 mGraphics.setBackground(color);
1599 return mGraphics.getBackground();
1607 return mGraphics.getStroke();
1620 mGraphics.clip(s);