Home | History | Annotate | Download | only in swing

Lines Matching refs:gg

24 		Graphics2D gg = (Graphics2D) g.create();
26 int titleW = gg.getFontMetrics().stringWidth(title) + 20;
27 int titleDescent = gg.getFontMetrics().getDescent();
29 gg.setColor(c.getBackground());
34 gg.fillPolygon(xs, ys, 4);
35 gg.fillRect(0, titleHeight, width, height);
36 gg.setColor(c.getForeground());
37 gg.drawString(title, 10, titleHeight - titleDescent);
39 gg.fillRect(0, 0, width, height);
42 gg.dispose();