Lines Matching refs:gc

245         Graphics2D gc = image.createGraphics();  in drawRectangleShadow()  local
247 drawRectangleShadow(gc, x, y, width, height); in drawRectangleShadow()
249 gc.dispose(); in drawRectangleShadow()
266 Graphics2D gc = image.createGraphics(); in drawSmallRectangleShadow() local
268 drawSmallRectangleShadow(gc, x, y, width, height); in drawSmallRectangleShadow()
270 gc.dispose(); in drawSmallRectangleShadow()
297 public static void drawRectangleShadow(Graphics2D gc, int x, int y, int width, int height) { in drawRectangleShadow() argument
311 gc.drawImage(ShadowBottomLeft, x - ShadowBottomLeft.getWidth(null), y + height, null); in drawRectangleShadow()
312 gc.drawImage(ShadowBottomRight, x + width, y + height, null); in drawRectangleShadow()
313 gc.drawImage(ShadowTopRight, x + width, y, null); in drawRectangleShadow()
314 gc.drawImage(ShadowTopLeft, x - ShadowTopLeft.getWidth(null), y, null); in drawRectangleShadow()
315 gc.drawImage(ShadowBottom, in drawRectangleShadow()
318 gc.drawImage(ShadowRight, in drawRectangleShadow()
321 gc.drawImage(ShadowLeft, in drawRectangleShadow()
338 public static void drawSmallRectangleShadow(Graphics2D gc, int x, int y, int width, in drawSmallRectangleShadow() argument
354 gc.drawImage(Shadow2BottomLeft, x - Shadow2BottomLeft.getWidth(null), y + height, null); in drawSmallRectangleShadow()
355 gc.drawImage(Shadow2BottomRight, x + width, y + height, null); in drawSmallRectangleShadow()
356 gc.drawImage(Shadow2TopRight, x + width, y, null); in drawSmallRectangleShadow()
357 gc.drawImage(Shadow2TopLeft, x - Shadow2TopLeft.getWidth(null), y, null); in drawSmallRectangleShadow()
358 gc.drawImage(Shadow2Bottom, in drawSmallRectangleShadow()
361 gc.drawImage(Shadow2Right, in drawSmallRectangleShadow()
364 gc.drawImage(Shadow2Left, in drawSmallRectangleShadow()