FileDocCategorySizeDatePackage
CharacterDisplayCanvas.javaAPI DocExample1289Sun Mar 14 11:28:30 GMT 2004javathreads.examples.ch11

CharacterDisplayCanvas

public class CharacterDisplayCanvas extends JComponent implements CharacterListener

Fields Summary
protected FontMetrics
fm
protected char[]
tmpChar
protected int
fontHeight
Constructors Summary
public CharacterDisplayCanvas(CharacterSource cs)


       
        setFont(new Font("Monospaced", Font.BOLD, 18));
        fm = Toolkit.getDefaultToolkit().getFontMetrics(getFont());
        fontHeight = fm.getHeight();
        cs.addCharacterListener(this);
    
Methods Summary
public voidnewCharacter(CharacterEvent ce)

        tmpChar[0] = (char) ce.character;
        repaint();
    
protected voidpaintComponent(java.awt.Graphics gc)

        if (tmpChar[0] == 0)
            return;
        Dimension d = getSize();
        int charWidth = fm.charWidth((int) tmpChar[0]);
        gc.clearRect(0, 0, d.width, d.height);
        gc.drawChars(tmpChar, 0, 1,
                     (d.width - charWidth) / 2, fontHeight);
    
public java.awt.DimensionpreferredSize()

        return new Dimension(fm.getMaxAscent() + 10,
                             fm.getMaxAdvance() + 10);
    
public voidsetCharacterListener(CharacterSource cs)

        cs.addCharacterListener(this);