FileDocCategorySizeDatePackage
EventTester.javaAPI DocExample5075Thu Apr 04 21:33:02 BST 1996None

EventTester

public class EventTester extends Applet

Fields Summary
Constructors Summary
Methods Summary
private java.lang.Stringfunction_key_name(int key)

        switch(key) {
            case Event.HOME: return "Home";
            case Event.END: return "End";
            case Event.PGUP: return "Page Up";
            case Event.PGDN: return "Page Down";
            case Event.UP: return "Up Arrow";
            case Event.DOWN: return "Down Arrow";
            case Event.LEFT: return "Left Arrow";
            case Event.RIGHT: return "Right Arrow";
            case Event.F1: return "F1";    case Event.F2: return "F2";
            case Event.F3: return "F3";    case Event.F4: return "F4";
            case Event.F5: return "F5";    case Event.F6: return "F6";
            case Event.F7: return "F7";    case Event.F8: return "F8";
            case Event.F9: return "F9";    case Event.F10: return "F10";
            case Event.F11: return "F11";    case Event.F12: return "F12";
        }
        return "Unknown Function Key";
    
public booleangotFocus(java.awt.Event e, java.lang.Object what)

        showStatus("Got Focus");
        return true;
    
public booleankeyDown(java.awt.Event e, int key)

        int flags = e.modifiers;
        if (e.id == Event.KEY_PRESS)            // a regular key
            showStatus("Key Down: " 
                   + modifier_key_names(flags) 
                   + key_name(e));
        else if (e.id == Event.KEY_ACTION)      // a function key
            showStatus("Function Key Down: "
                   + modifier_key_names(flags)
                   + function_key_name(key));
        return true;
    
public booleankeyUp(java.awt.Event e, int key)

        int flags = e.modifiers;
        if (e.id == Event.KEY_RELEASE)             // a regular key
            showStatus("Key Up: " 
                   + modifier_key_names(flags)
                   + key_name(e));
        else if (e.id == Event.KEY_ACTION_RELEASE) // a function key
            showStatus("Function Key Up: "
                   + modifier_key_names(flags)
                   + function_key_name(key));
        return true;
    
private java.lang.Stringkey_name(java.awt.Event e)

        char c = (char) e.key;
        
        // If CTRL flag is set, handle ASCII control characters.
        if (e.controlDown()) {
            if (c < ' ") {
                c += '@";
                return "^" + c;
            }
        }
        else {
            // If CTRL flag is not set, then certain ASCII
            // control characters have special meaning.
            switch (c) {
                case '\n": return "Return";
                case '\t": return "Tab";
                case '\033": return "Escape";
                case '\010": return "Backspace";
            }
        }

        // Handle the remaining possibilities.
        if (c == '\177") return "Delete";
        else if (c == ' ") return "Space";
        else return String.valueOf(c);
    
public booleanlostFocus(java.awt.Event e, java.lang.Object what)

        showStatus("Lost Focus");
        return true;
    
private java.lang.Stringmodifier_key_names(int flags)

        String s = "[ ";
        if (flags == 0) return "";
        if ((flags & Event.SHIFT_MASK) != 0) s += "Shift ";
        if ((flags & Event.CTRL_MASK) != 0) s += "Control ";
        if ((flags & Event.META_MASK) != 0) s += "Meta ";
        if ((flags & Event.ALT_MASK) != 0) s += "Alt ";
        s += "] ";
        return s;
    
public booleanmouseDown(java.awt.Event e, int x, int y)

        showStatus(modifier_key_names(e.modifiers) + 
               "Mouse Down: [" + x + "," + y + "]");
        return true;
    
public booleanmouseDrag(java.awt.Event e, int x, int y)

        showStatus(modifier_key_names(e.modifiers) + 
               "Mouse Drag: [" + x + "," + y + "]");
        return true;
    
public booleanmouseEnter(java.awt.Event e, int x, int y)

        showStatus("Mouse Enter: [" + x + "," + y + "]");
        return true;
    
public booleanmouseExit(java.awt.Event e, int x, int y)

        showStatus("Mouse Exit: [" + x + "," + y + "]");
        return true;
    
public booleanmouseUp(java.awt.Event e, int x, int y)

        showStatus(modifier_key_names(e.modifiers) + 
               "Mouse Up: [" + x + "," + y + "]");
        return true;
    
public voidpaint(java.awt.Graphics g)

 
        g.drawString("Click, drag, and type in this window.", 10, 20);