Lines Matching refs:g
159 public void paintChildren (Graphics g) in paintChildren() argument
161 synchronized (g) in paintChildren()
163 super.paintChildren (g); in paintChildren()
174 PaintAllStates ((Graphics2D)g, aWidgetArea); in paintChildren()
178 private void PaintAllStates (Graphics2D g, Rectangle aWidgetArea) in PaintAllStates() argument
180 Color aTextColor = g.getColor(); in PaintAllStates()
182 g.setRenderingHint ( in PaintAllStates()
192 AffineTransform aTransform = g.getTransform (); in PaintAllStates()
193 g.setColor (aTextColor); in PaintAllStates()
209 g.setTransform (aTransform); in PaintAllStates()
210 g.translate (x,y); in PaintAllStates()
213 g.setColor (Color.GREEN); in PaintAllStates()
214 g.fill (aCheckBox); in PaintAllStates()
215 g.setColor (aTextColor); in PaintAllStates()
217 g.draw (aCheckBox); in PaintAllStates()
218 g.rotate (nTextRotation); in PaintAllStates()
219 g.scale (nScale, nScale); in PaintAllStates()
220 g.translate (2,-2); in PaintAllStates()
221 g.drawString (sStateName, 0,0); in PaintAllStates()