Searched defs:gfx (Results 1 - 5 of 5) sorted by relevance
/openjdk7/jdk/src/share/classes/java/beans/ |
H A D | PropertyEditor.java | 101 * @param gfx Graphics object to paint into. 104 void paintValue(java.awt.Graphics gfx, java.awt.Rectangle box); argument
|
H A D | PropertyEditorSupport.java | 129 * @param gfx Graphics object to paint into. 132 public void paintValue(java.awt.Graphics gfx, java.awt.Rectangle box) { argument
|
/openjdk7/jdk/src/share/classes/com/sun/beans/editors/ |
H A D | EnumEditor.java | 121 public void paintValue( Graphics gfx, Rectangle box ) { argument
|
H A D | ColorEditor.java | 158 public void paintValue(java.awt.Graphics gfx, java.awt.Rectangle box) { argument 159 Color oldColor = gfx.getColor(); 160 gfx.setColor(Color.black); 161 gfx.drawRect(box.x, box.y, box.width-3, box.height-3); 162 gfx.setColor(color); 163 gfx.fillRect(box.x+1, box.y+1, box.width-4, box.height-4); 164 gfx.setColor(oldColor);
|
H A D | FontEditor.java | 146 public void paintValue(java.awt.Graphics gfx, java.awt.Rectangle box) { argument 148 Font oldFont = gfx.getFont(); 149 gfx.setFont(font); 150 FontMetrics fm = gfx.getFontMetrics(); 152 gfx.drawString(sampleText, 0, box.height-vpad); 153 gfx.setFont(oldFont);
|
Completed in 36 milliseconds